survey-creator-angular 1.12.2 → 1.12.3

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 (56) hide show
  1. package/angular-ui.d.ts +11 -9
  2. package/angular-ui.module.d.ts +64 -62
  3. package/bundles/survey-creator-angular.umd.js +74 -25
  4. package/bundles/survey-creator-angular.umd.js.map +1 -1
  5. package/custom-questions/boolean-switch.component.d.ts +7 -0
  6. package/esm2015/adorners/question-dropdown.component.js +2 -2
  7. package/esm2015/adorners/question-image.component.js +2 -2
  8. package/esm2015/adorners/question-rating.component.js +2 -2
  9. package/esm2015/angular-ui.js +12 -10
  10. package/esm2015/angular-ui.module.js +23 -17
  11. package/esm2015/custom-questions/boolean-switch.component.js +19 -0
  12. package/esm2015/panel.component.js +2 -2
  13. package/esm2015/property-panel/object-selector.component.js +23 -23
  14. package/esm2015/property-panel/property-grid.component.js +28 -28
  15. package/esm2015/property-panel/search.component.js +24 -24
  16. package/esm2015/question.component.js +2 -2
  17. package/esm2015/side-bar/object-selector.component.js +24 -0
  18. package/esm2015/side-bar/property-grid-placeholder.component.js +22 -0
  19. package/esm2015/side-bar/property-grid.component.js +29 -0
  20. package/esm2015/side-bar/search.component.js +25 -0
  21. package/esm2015/side-bar/side-bar-default-header.component.js +24 -0
  22. package/esm2015/side-bar/side-bar-header.component.js +23 -0
  23. package/esm2015/side-bar/side-bar-property-grid-header.component.js +28 -0
  24. package/esm2015/side-bar/side-bar.component.js +4 -4
  25. package/esm2015/side-bar/tab-button.component.js +23 -0
  26. package/esm2015/side-bar/tab-control.component.js +24 -0
  27. package/esm2015/side-bar/tabs.component.js +23 -0
  28. package/esm2015/tab-control/property-grid-placeholder-header.component.js +21 -21
  29. package/esm2015/tab-control/property-grid-placeholder.component.js +21 -21
  30. package/esm2015/tab-control/side-bar-property-grid-header.component.js +27 -27
  31. package/esm2015/tab-control/tab-button.component.js +22 -22
  32. package/esm2015/tab-control/tab-control.component.js +23 -23
  33. package/esm2015/tab-control/tabs.component.js +22 -22
  34. package/esm2015/toolbox/adaptive-toolbox.component.js +1 -1
  35. package/fesm2015/survey-creator-angular.js +58 -21
  36. package/fesm2015/survey-creator-angular.js.map +1 -1
  37. package/package.json +4 -4
  38. package/property-panel/object-selector.component.d.ts +9 -9
  39. package/property-panel/property-grid.component.d.ts +10 -10
  40. package/property-panel/search.component.d.ts +9 -9
  41. package/side-bar/object-selector.component.d.ts +9 -0
  42. package/side-bar/property-grid-placeholder.component.d.ts +7 -0
  43. package/side-bar/property-grid.component.d.ts +10 -0
  44. package/side-bar/search.component.d.ts +9 -0
  45. package/side-bar/side-bar-default-header.component.d.ts +9 -0
  46. package/side-bar/side-bar-header.component.d.ts +9 -0
  47. package/side-bar/side-bar-property-grid-header.component.d.ts +10 -0
  48. package/side-bar/tab-button.component.d.ts +9 -0
  49. package/side-bar/tab-control.component.d.ts +9 -0
  50. package/side-bar/tabs.component.d.ts +10 -0
  51. package/tab-control/property-grid-placeholder-header.component.d.ts +9 -9
  52. package/tab-control/property-grid-placeholder.component.d.ts +7 -7
  53. package/tab-control/side-bar-property-grid-header.component.d.ts +10 -10
  54. package/tab-control/tab-button.component.d.ts +9 -9
  55. package/tab-control/tab-control.component.d.ts +9 -9
  56. package/tab-control/tabs.component.d.ts +10 -10
package/angular-ui.d.ts CHANGED
@@ -7,15 +7,16 @@ export * from "./tabbed-menu/tabbed-menu/tabbed-menu.component";
7
7
  export * from "./tabbed-menu/tabbed-menu/tabbed-menu-item-wrapper.component";
8
8
  export * from "./side-bar/side-bar.component";
9
9
  export * from "./side-bar/side-bar-page.component";
10
- export * from "./tab-control/tab-button.component";
11
- export * from "./tab-control/tabs.component";
12
- export * from "./tab-control/tab-control.component";
13
- export * from "./tab-control/side-bar-property-grid-header.component";
14
- export * from "./tab-control/property-grid-placeholder.component";
15
- export * from "./tab-control/property-grid-placeholder-header.component";
16
- export * from "./property-panel/object-selector.component";
17
- export * from "./property-panel/property-grid.component";
18
- export * from "./property-panel/search.component";
10
+ export * from "./side-bar/side-bar-default-header.component";
11
+ export * from "./side-bar/tab-button.component";
12
+ export * from "./side-bar/tabs.component";
13
+ export * from "./side-bar/tab-control.component";
14
+ export * from "./side-bar/side-bar-property-grid-header.component";
15
+ export * from "./side-bar/property-grid-placeholder.component";
16
+ export * from "./side-bar/side-bar-header.component";
17
+ export * from "./side-bar/object-selector.component";
18
+ export * from "./side-bar/property-grid.component";
19
+ export * from "./side-bar/search.component";
19
20
  export * from "./tabs/json/json-editor-textarea.component";
20
21
  export * from "./tabs/json/json-editor-ace.component";
21
22
  export * from "./tabs/logic/logic.component";
@@ -70,4 +71,5 @@ export * from "./custom-questions/color-item.component";
70
71
  export * from "./custom-questions/color.component";
71
72
  export * from "./custom-questions/file.component";
72
73
  export * from "./custom-questions/text-with-reset.component";
74
+ export * from "./custom-questions/boolean-switch.component";
73
75
  export * from "./question-banner.component";
@@ -9,72 +9,74 @@ import * as i7 from "./tabbed-menu/tabbed-menu/tabbed-menu-item.component";
9
9
  import * as i8 from "./tabbed-menu/tabbed-menu/tabbed-menu-item-wrapper.component";
10
10
  import * as i9 from "./side-bar/side-bar.component";
11
11
  import * as i10 from "./side-bar/side-bar-page.component";
12
- import * as i11 from "./property-panel/object-selector.component";
13
- import * as i12 from "./tab-control/side-bar-property-grid-header.component";
14
- import * as i13 from "./tab-control/property-grid-placeholder.component";
15
- import * as i14 from "./tab-control/property-grid-placeholder-header.component";
16
- import * as i15 from "./tab-control/tab-control.component";
17
- import * as i16 from "./tab-control/tabs.component";
18
- import * as i17 from "./tab-control/tab-button.component";
19
- import * as i18 from "./property-panel/property-grid.component";
20
- import * as i19 from "./property-panel/search.component";
21
- import * as i20 from "./tabs/json/json-editor-textarea.component";
22
- import * as i21 from "./tabs/json/json-editor-ace.component";
23
- import * as i22 from "./tabs/logic/logic.component";
24
- import * as i23 from "./tabs/logic/logic-add-btn.component";
25
- import * as i24 from "./components/action-button.component";
26
- import * as i25 from "./components/question-error.component";
27
- import * as i26 from "./components/switcher.component";
28
- import * as i27 from "./questions/question-link-value.component";
29
- import * as i28 from "./questions/question-embedded-survey.component";
30
- import * as i29 from "./tabs/translation/translation.component";
31
- import * as i30 from "./tabs/translation/translation-line-skeleton.component";
32
- import * as i31 from "./tabs/preview/simulator.component";
33
- import * as i32 from "./tabs/preview/test.component";
34
- import * as i33 from "./tabs/preview/test-again.component";
35
- import * as i34 from "./tabs/preview/survey-results.component";
36
- import * as i35 from "./tabs/preview/survey-results-row.component";
37
- import * as i36 from "./tabs/theme/theme.component";
38
- import * as i37 from "./toolbox/adaptive-toolbox.component";
39
- import * as i38 from "./toolbox/toolbox-tool.component";
40
- import * as i39 from "./toolbox/toolbox-item.component";
41
- import * as i40 from "./toolbox/toolbox-item-group.component";
42
- import * as i41 from "./toolbox/toolbox-list.component";
43
- import * as i42 from "./toolbox/toolbox-category.component";
44
- import * as i43 from "./string-editor.component";
45
- import * as i44 from "./page-navigator/page-navigator.component";
46
- import * as i45 from "./page-navigator/page-navigator-item.component";
47
- import * as i46 from "./adorners/question-dropdown.component";
48
- import * as i47 from "./adorners/question-image.component";
49
- import * as i48 from "./adorners/item-value.component";
50
- import * as i49 from "./adorners/image-item-value.component";
51
- import * as i50 from "./questions/logic-operator.component";
52
- import * as i51 from "./adorners/matrix-cell.component";
53
- import * as i52 from "./question-editor.component";
54
- import * as i53 from "./adorners/cell-question-dropdown.component";
55
- import * as i54 from "./row.component";
56
- import * as i55 from "./tabs/designer/designer-pages.component";
57
- import * as i56 from "./tabs/designer/designer-survey.component";
58
- import * as i57 from "./adorners/cell-question.component";
59
- import * as i58 from "./question-widget.component";
60
- import * as i59 from "./toolbox/toolbox.component";
61
- import * as i60 from "./header/logo-image.component";
62
- import * as i61 from "./adorners/question-rating.component";
63
- import * as i62 from "./custom-questions/spin-editor.component";
64
- import * as i63 from "./custom-questions/color-item.component";
65
- import * as i64 from "./custom-questions/color.component";
66
- import * as i65 from "./custom-questions/file.component";
67
- import * as i66 from "./add-question.component";
68
- import * as i67 from "./add-question-type-selector.component";
12
+ import * as i11 from "./side-bar/side-bar-default-header.component";
13
+ import * as i12 from "./side-bar/object-selector.component";
14
+ import * as i13 from "./side-bar/side-bar-property-grid-header.component";
15
+ import * as i14 from "./side-bar/property-grid-placeholder.component";
16
+ import * as i15 from "./side-bar/side-bar-header.component";
17
+ import * as i16 from "./side-bar/tab-control.component";
18
+ import * as i17 from "./side-bar/tabs.component";
19
+ import * as i18 from "./side-bar/tab-button.component";
20
+ import * as i19 from "./side-bar/property-grid.component";
21
+ import * as i20 from "./side-bar/search.component";
22
+ import * as i21 from "./tabs/json/json-editor-textarea.component";
23
+ import * as i22 from "./tabs/json/json-editor-ace.component";
24
+ import * as i23 from "./tabs/logic/logic.component";
25
+ import * as i24 from "./tabs/logic/logic-add-btn.component";
26
+ import * as i25 from "./components/action-button.component";
27
+ import * as i26 from "./components/question-error.component";
28
+ import * as i27 from "./components/switcher.component";
29
+ import * as i28 from "./questions/question-link-value.component";
30
+ import * as i29 from "./questions/question-embedded-survey.component";
31
+ import * as i30 from "./tabs/translation/translation.component";
32
+ import * as i31 from "./tabs/translation/translation-line-skeleton.component";
33
+ import * as i32 from "./tabs/preview/simulator.component";
34
+ import * as i33 from "./tabs/preview/test.component";
35
+ import * as i34 from "./tabs/preview/test-again.component";
36
+ import * as i35 from "./tabs/preview/survey-results.component";
37
+ import * as i36 from "./tabs/preview/survey-results-row.component";
38
+ import * as i37 from "./tabs/theme/theme.component";
39
+ import * as i38 from "./toolbox/adaptive-toolbox.component";
40
+ import * as i39 from "./toolbox/toolbox-tool.component";
41
+ import * as i40 from "./toolbox/toolbox-item.component";
42
+ import * as i41 from "./toolbox/toolbox-item-group.component";
43
+ import * as i42 from "./toolbox/toolbox-list.component";
44
+ import * as i43 from "./toolbox/toolbox-category.component";
45
+ import * as i44 from "./string-editor.component";
46
+ import * as i45 from "./page-navigator/page-navigator.component";
47
+ import * as i46 from "./page-navigator/page-navigator-item.component";
48
+ import * as i47 from "./adorners/question-dropdown.component";
49
+ import * as i48 from "./adorners/question-image.component";
50
+ import * as i49 from "./adorners/item-value.component";
51
+ import * as i50 from "./adorners/image-item-value.component";
52
+ import * as i51 from "./questions/logic-operator.component";
53
+ import * as i52 from "./adorners/matrix-cell.component";
54
+ import * as i53 from "./question-editor.component";
55
+ import * as i54 from "./adorners/cell-question-dropdown.component";
56
+ import * as i55 from "./row.component";
57
+ import * as i56 from "./tabs/designer/designer-pages.component";
58
+ import * as i57 from "./tabs/designer/designer-survey.component";
59
+ import * as i58 from "./adorners/cell-question.component";
60
+ import * as i59 from "./question-widget.component";
61
+ import * as i60 from "./toolbox/toolbox.component";
62
+ import * as i61 from "./header/logo-image.component";
63
+ import * as i62 from "./adorners/question-rating.component";
64
+ import * as i63 from "./custom-questions/spin-editor.component";
65
+ import * as i64 from "./custom-questions/color-item.component";
66
+ import * as i65 from "./custom-questions/color.component";
67
+ import * as i66 from "./custom-questions/file.component";
68
+ import * as i67 from "./add-question.component";
69
69
  import * as i68 from "./question-banner.component";
70
70
  import * as i69 from "./tabs/json/json-error-item.component";
71
71
  import * as i70 from "./custom-questions/text-with-reset.component";
72
- import * as i71 from "./tabs/translation/translate-from-action.component";
73
- import * as i72 from "@angular/common";
74
- import * as i73 from "@angular/forms";
75
- import * as i74 from "survey-angular-ui";
72
+ import * as i71 from "./custom-questions/boolean-switch.component";
73
+ import * as i72 from "./tabs/translation/translate-from-action.component";
74
+ import * as i73 from "./add-question-type-selector.component";
75
+ import * as i74 from "@angular/common";
76
+ import * as i75 from "@angular/forms";
77
+ import * as i76 from "survey-angular-ui";
76
78
  export declare class SurveyCreatorModule {
77
79
  static ɵfac: i0.ɵɵFactoryDeclaration<SurveyCreatorModule, never>;
78
- static ɵmod: i0.ɵɵNgModuleDeclaration<SurveyCreatorModule, [typeof i1.CreatorComponent, typeof i2.DesignerTabComponent, typeof i3.PageDesignerComponent, typeof i4.QuestionDesignerComponent, typeof i5.PanelDesignerComponent, typeof i6.TabbledMenuComponent, typeof i7.TabbedMenuItemComponent, typeof i8.TabbedMenuItemWrapperComponent, typeof i9.SidebarComponent, typeof i10.SidebarPageComponent, typeof i11.ObjectSelectorComponent, typeof i12.SidebarPropertyGridHeaderComponent, typeof i13.PropertyGridPlaceholderComponent, typeof i14.SidebarPropertyGridPlaceholderHeaderComponent, typeof i15.TabControlComponent, typeof i16.TabsComponent, typeof i17.TabButtonComponent, typeof i18.PropertyGridComponent, typeof i19.SearchComponent, typeof i20.TextareaJsonEditorComponent, typeof i21.AceJsonEditorComponent, typeof i22.LogicTabComponent, typeof i23.LogicAddButtonComponent, typeof i24.ActionButtonComponent, typeof i25.QuestionPgErrorComponent, typeof i26.SwitcherComponent, typeof i27.LinkValueQuestionComponent, typeof i28.EmbeddedSurveyQuestionComponent, typeof i29.TranslationTabComponent, typeof i30.TranslationSkeletonComponent, typeof i31.SimulatorComponent, typeof i32.TestTabComponent, typeof i33.TestAgainActionComponent, typeof i34.SurveyResultsComponent, typeof i35.SurveyResultsTableRowComponent, typeof i36.ThemeTabComponent, typeof i37.AdaptiveToolboxComponent, typeof i38.ToolboxToolComponent, typeof i39.ToolboxItemComponent, typeof i40.ToolboxItemGroupComponent, typeof i41.ToolboxListComponent, typeof i42.ToolboxCategoryComponent, typeof i43.StringEditorComponent, typeof i44.PageNavigatorComponent, typeof i45.PageNavigatorItemComponent, typeof i46.QuestionDropdownDesignerComponent, typeof i46.QuestionDropdownAdornerDesignerComponent, typeof i47.QuestionImageDesignerComponent, typeof i47.QuestionImageAdornerDesignerComponent, typeof i48.ItemValueDesignerComponent, typeof i49.ImageItemValueDesignerComponent, typeof i50.LogicOperatorComponent, typeof i51.MatrixCellComponent, typeof i52.QuestionEditorComponent, typeof i53.CellQuestionDropdownComponent, typeof i54.CreatorRowComponent, typeof i55.DesignerPagesComponent, typeof i56.DesignerSurveyComponent, typeof i57.CellQuestionComponent, typeof i58.QuestionWidgetDesignerComponent, typeof i59.ToolboxComponent, typeof i60.CreatorLogoImageComponent, typeof i61.QuestionRatingAdornerDesignerComponent, typeof i61.QuestionRatingDesignerComponent, typeof i62.QuestionSpinEditorComponent, typeof i63.ColorItemComponent, typeof i64.QuestionColorComponent, typeof i65.QuestionFileEditorComponent, typeof i66.AddQuestionButtonComponent, typeof i67.AddQuestionTypeSelectorComponent, typeof i68.QuestionBannerComponent, typeof i69.JsonErrorItemComponent, typeof i70.QuestionTextWithResetComponent, typeof i71.TranslateFromAction], [typeof i72.CommonModule, typeof i73.FormsModule, typeof i74.SurveyModule], [typeof i1.CreatorComponent, typeof i2.DesignerTabComponent, typeof i3.PageDesignerComponent, typeof i4.QuestionDesignerComponent, typeof i5.PanelDesignerComponent, typeof i6.TabbledMenuComponent, typeof i7.TabbedMenuItemComponent, typeof i8.TabbedMenuItemWrapperComponent, typeof i9.SidebarComponent, typeof i10.SidebarPageComponent, typeof i12.SidebarPropertyGridHeaderComponent, typeof i13.PropertyGridPlaceholderComponent, typeof i14.SidebarPropertyGridPlaceholderHeaderComponent, typeof i15.TabControlComponent, typeof i16.TabsComponent, typeof i17.TabButtonComponent, typeof i11.ObjectSelectorComponent, typeof i18.PropertyGridComponent, typeof i19.SearchComponent, typeof i20.TextareaJsonEditorComponent, typeof i21.AceJsonEditorComponent, typeof i22.LogicTabComponent, typeof i23.LogicAddButtonComponent, typeof i24.ActionButtonComponent, typeof i25.QuestionPgErrorComponent, typeof i26.SwitcherComponent, typeof i27.LinkValueQuestionComponent, typeof i28.EmbeddedSurveyQuestionComponent, typeof i29.TranslationTabComponent, typeof i30.TranslationSkeletonComponent, typeof i31.SimulatorComponent, typeof i32.TestTabComponent, typeof i33.TestAgainActionComponent, typeof i34.SurveyResultsComponent, typeof i35.SurveyResultsTableRowComponent, typeof i36.ThemeTabComponent, typeof i37.AdaptiveToolboxComponent, typeof i38.ToolboxToolComponent, typeof i39.ToolboxItemComponent, typeof i40.ToolboxItemGroupComponent, typeof i41.ToolboxListComponent, typeof i42.ToolboxCategoryComponent, typeof i43.StringEditorComponent, typeof i44.PageNavigatorComponent, typeof i45.PageNavigatorItemComponent, typeof i46.QuestionDropdownDesignerComponent, typeof i46.QuestionDropdownAdornerDesignerComponent, typeof i47.QuestionImageDesignerComponent, typeof i47.QuestionImageAdornerDesignerComponent, typeof i48.ItemValueDesignerComponent, typeof i49.ImageItemValueDesignerComponent, typeof i50.LogicOperatorComponent, typeof i51.MatrixCellComponent, typeof i52.QuestionEditorComponent, typeof i53.CellQuestionDropdownComponent, typeof i54.CreatorRowComponent, typeof i55.DesignerPagesComponent, typeof i56.DesignerSurveyComponent, typeof i57.CellQuestionComponent, typeof i58.QuestionWidgetDesignerComponent, typeof i59.ToolboxComponent, typeof i60.CreatorLogoImageComponent, typeof i61.QuestionRatingAdornerDesignerComponent, typeof i61.QuestionRatingDesignerComponent, typeof i62.QuestionSpinEditorComponent, typeof i63.ColorItemComponent, typeof i64.QuestionColorComponent, typeof i65.QuestionFileEditorComponent, typeof i66.AddQuestionButtonComponent, typeof i67.AddQuestionTypeSelectorComponent, typeof i68.QuestionBannerComponent, typeof i69.JsonErrorItemComponent, typeof i70.QuestionTextWithResetComponent, typeof i71.TranslateFromAction]>;
80
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SurveyCreatorModule, [typeof i1.CreatorComponent, typeof i2.DesignerTabComponent, typeof i3.PageDesignerComponent, typeof i4.QuestionDesignerComponent, typeof i5.PanelDesignerComponent, typeof i6.TabbledMenuComponent, typeof i7.TabbedMenuItemComponent, typeof i8.TabbedMenuItemWrapperComponent, typeof i9.SidebarComponent, typeof i10.SidebarPageComponent, typeof i11.SidebarDefaultHeaderComponent, typeof i12.ObjectSelectorComponent, typeof i13.SidebarPropertyGridHeaderComponent, typeof i14.PropertyGridPlaceholderComponent, typeof i15.SidebarHeaderComponent, typeof i16.TabControlComponent, typeof i17.TabsComponent, typeof i18.TabButtonComponent, typeof i19.PropertyGridComponent, typeof i20.SearchComponent, typeof i21.TextareaJsonEditorComponent, typeof i22.AceJsonEditorComponent, typeof i23.LogicTabComponent, typeof i24.LogicAddButtonComponent, typeof i25.ActionButtonComponent, typeof i26.QuestionPgErrorComponent, typeof i27.SwitcherComponent, typeof i28.LinkValueQuestionComponent, typeof i29.EmbeddedSurveyQuestionComponent, typeof i30.TranslationTabComponent, typeof i31.TranslationSkeletonComponent, typeof i32.SimulatorComponent, typeof i33.TestTabComponent, typeof i34.TestAgainActionComponent, typeof i35.SurveyResultsComponent, typeof i36.SurveyResultsTableRowComponent, typeof i37.ThemeTabComponent, typeof i38.AdaptiveToolboxComponent, typeof i39.ToolboxToolComponent, typeof i40.ToolboxItemComponent, typeof i41.ToolboxItemGroupComponent, typeof i42.ToolboxListComponent, typeof i43.ToolboxCategoryComponent, typeof i44.StringEditorComponent, typeof i45.PageNavigatorComponent, typeof i46.PageNavigatorItemComponent, typeof i47.QuestionDropdownDesignerComponent, typeof i47.QuestionDropdownAdornerDesignerComponent, typeof i48.QuestionImageDesignerComponent, typeof i48.QuestionImageAdornerDesignerComponent, typeof i49.ItemValueDesignerComponent, typeof i50.ImageItemValueDesignerComponent, typeof i51.LogicOperatorComponent, typeof i52.MatrixCellComponent, typeof i53.QuestionEditorComponent, typeof i54.CellQuestionDropdownComponent, typeof i55.CreatorRowComponent, typeof i56.DesignerPagesComponent, typeof i57.DesignerSurveyComponent, typeof i58.CellQuestionComponent, typeof i59.QuestionWidgetDesignerComponent, typeof i60.ToolboxComponent, typeof i61.CreatorLogoImageComponent, typeof i62.QuestionRatingAdornerDesignerComponent, typeof i62.QuestionRatingDesignerComponent, typeof i63.QuestionSpinEditorComponent, typeof i64.ColorItemComponent, typeof i65.QuestionColorComponent, typeof i66.QuestionFileEditorComponent, typeof i67.AddQuestionButtonComponent, typeof i68.QuestionBannerComponent, typeof i69.JsonErrorItemComponent, typeof i70.QuestionTextWithResetComponent, typeof i71.BooleanSwitchComponent, typeof i72.TranslateFromAction, typeof i73.AddQuestionTypeSelectorComponent], [typeof i74.CommonModule, typeof i75.FormsModule, typeof i76.SurveyModule], [typeof i1.CreatorComponent, typeof i2.DesignerTabComponent, typeof i3.PageDesignerComponent, typeof i4.QuestionDesignerComponent, typeof i5.PanelDesignerComponent, typeof i6.TabbledMenuComponent, typeof i7.TabbedMenuItemComponent, typeof i8.TabbedMenuItemWrapperComponent, typeof i9.SidebarComponent, typeof i10.SidebarPageComponent, typeof i11.SidebarDefaultHeaderComponent, typeof i13.SidebarPropertyGridHeaderComponent, typeof i14.PropertyGridPlaceholderComponent, typeof i15.SidebarHeaderComponent, typeof i16.TabControlComponent, typeof i17.TabsComponent, typeof i18.TabButtonComponent, typeof i12.ObjectSelectorComponent, typeof i19.PropertyGridComponent, typeof i20.SearchComponent, typeof i21.TextareaJsonEditorComponent, typeof i22.AceJsonEditorComponent, typeof i23.LogicTabComponent, typeof i24.LogicAddButtonComponent, typeof i25.ActionButtonComponent, typeof i26.QuestionPgErrorComponent, typeof i27.SwitcherComponent, typeof i28.LinkValueQuestionComponent, typeof i29.EmbeddedSurveyQuestionComponent, typeof i30.TranslationTabComponent, typeof i31.TranslationSkeletonComponent, typeof i32.SimulatorComponent, typeof i33.TestTabComponent, typeof i34.TestAgainActionComponent, typeof i35.SurveyResultsComponent, typeof i36.SurveyResultsTableRowComponent, typeof i37.ThemeTabComponent, typeof i38.AdaptiveToolboxComponent, typeof i39.ToolboxToolComponent, typeof i40.ToolboxItemComponent, typeof i41.ToolboxItemGroupComponent, typeof i42.ToolboxListComponent, typeof i43.ToolboxCategoryComponent, typeof i44.StringEditorComponent, typeof i45.PageNavigatorComponent, typeof i46.PageNavigatorItemComponent, typeof i47.QuestionDropdownDesignerComponent, typeof i47.QuestionDropdownAdornerDesignerComponent, typeof i48.QuestionImageDesignerComponent, typeof i48.QuestionImageAdornerDesignerComponent, typeof i49.ItemValueDesignerComponent, typeof i50.ImageItemValueDesignerComponent, typeof i51.LogicOperatorComponent, typeof i52.MatrixCellComponent, typeof i53.QuestionEditorComponent, typeof i54.CellQuestionDropdownComponent, typeof i55.CreatorRowComponent, typeof i56.DesignerPagesComponent, typeof i57.DesignerSurveyComponent, typeof i58.CellQuestionComponent, typeof i59.QuestionWidgetDesignerComponent, typeof i60.ToolboxComponent, typeof i61.CreatorLogoImageComponent, typeof i62.QuestionRatingAdornerDesignerComponent, typeof i62.QuestionRatingDesignerComponent, typeof i63.QuestionSpinEditorComponent, typeof i64.ColorItemComponent, typeof i65.QuestionColorComponent, typeof i66.QuestionFileEditorComponent, typeof i67.AddQuestionButtonComponent, typeof i68.QuestionBannerComponent, typeof i69.JsonErrorItemComponent, typeof i70.QuestionTextWithResetComponent, typeof i71.BooleanSwitchComponent, typeof i72.TranslateFromAction, typeof i73.AddQuestionTypeSelectorComponent]>;
79
81
  static ɵinj: i0.ɵɵInjectorDeclaration<SurveyCreatorModule>;
80
82
  }
@@ -610,7 +610,7 @@
610
610
  return SidebarComponent;
611
611
  }(i1.BaseAngular));
612
612
  SidebarComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SidebarComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
613
- SidebarComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SidebarComponent, selector: "svc-side-bar", inputs: { model: "model" }, viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true }], usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div class=\"svc-side-bar\" [class.svc-flyout-side-bar]=\"model.flyoutPanelMode\" [visible]=\"model.hasVisiblePages\">\n <div class=\"svc-side-bar__shadow\" (click)=\"model.collapseSidebar()\"></div>\n <div class=\"svc-flex-row svc-side-bar__wrapper\">\n <div class=\"svc-side-bar__container\" [visible]=\"model.renderedIsVisible\" #container>\n <ng-container *ngIf=\"model.headerComponentName\">\n <ng-template\n [component]=\"{ name: model.headerComponentName, data: { model: model.headerComponentData } }\"></ng-template>\n </ng-container>\n <ng-container *ngIf=\"!model.headerComponentName\">\n <div class=\"svc-side-bar__container-header\">\n <div class=\"svc-side-bar__container-actions\">\n <sv-action-bar [model]=\"model.toolbar\"></sv-action-bar>\n </div>\n <div *ngIf=\"!!model.headerText\" class=\"svc-side-bar__container-title\">{{model.headerText}}</div>\n </div>\n </ng-container>\n <div class=\"svc-side-bar__container-content\">\n <ng-container *ngFor=\"let page of model.pages\">\n <svc-side-bar-page [model]=\"page\"></svc-side-bar-page>\n </ng-container>\n </div>\n </div>\n <ng-container *ngIf=\"model.sideAreaComponentName\">\n <ng-template\n [component]=\"{ name: model.sideAreaComponentName, data: { model: model.sideAreaComponentData } }\"></ng-template>\n </ng-container>\n </div>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: i1__namespace.ActionBarComponent, selector: "sv-action-bar, sv-ng-action-bar", inputs: ["model", "handleClick"] }, { type: SidebarPageComponent, selector: "svc-side-bar-page", inputs: ["model"] }], directives: [{ type: i1__namespace.VisibleDirective, selector: "[visible]", inputs: ["visible"] }, { type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.DynamicComponentDirective, selector: "[component]", inputs: ["component"] }, { type: i2__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
613
+ SidebarComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SidebarComponent, selector: "svc-side-bar", inputs: { model: "model" }, viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true }], usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div class=\"svc-side-bar\" [class.svc-flyout-side-bar]=\"model.flyoutPanelMode\" [visible]=\"model.hasVisiblePages\">\n <div class=\"svc-side-bar__shadow\" (click)=\"model.collapseSidebar()\"></div>\n <div class=\"svc-flex-row svc-side-bar__wrapper\">\n <div class=\"svc-side-bar__container\" [visible]=\"model.renderedIsVisible\" #container>\n <ng-template\n [component]=\"{ name: model.header.component, data: { model: model.header.componentModel } }\"></ng-template>\n <div class=\"svc-side-bar__container-content\">\n <ng-container *ngFor=\"let page of model.pages\">\n <svc-side-bar-page [model]=\"page\"></svc-side-bar-page>\n </ng-container>\n </div>\n </div>\n <ng-container *ngIf=\"model.sideAreaComponentName\">\n <ng-template\n [component]=\"{ name: model.sideAreaComponentName, data: { model: model.sideAreaComponentData } }\"></ng-template>\n </ng-container>\n </div>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: SidebarPageComponent, selector: "svc-side-bar-page", inputs: ["model"] }], directives: [{ type: i1__namespace.VisibleDirective, selector: "[visible]", inputs: ["visible"] }, { type: i1__namespace.DynamicComponentDirective, selector: "[component]", inputs: ["component"] }, { type: i2__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
614
614
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SidebarComponent, decorators: [{
615
615
  type: i0.Component,
616
616
  args: [{
@@ -1146,6 +1146,30 @@
1146
1146
  }] } });
1147
1147
  i1.AngularComponentFactory.Instance.registerComponent("svc-tabbed-menu-item", TabbedMenuItemComponent);
1148
1148
 
1149
+ var SidebarDefaultHeaderComponent = /** @class */ (function (_super) {
1150
+ __extends(SidebarDefaultHeaderComponent, _super);
1151
+ function SidebarDefaultHeaderComponent() {
1152
+ return _super !== null && _super.apply(this, arguments) || this;
1153
+ }
1154
+ SidebarDefaultHeaderComponent.prototype.getModel = function () {
1155
+ return this.model;
1156
+ };
1157
+ return SidebarDefaultHeaderComponent;
1158
+ }(i1.BaseAngular));
1159
+ SidebarDefaultHeaderComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SidebarDefaultHeaderComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
1160
+ SidebarDefaultHeaderComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SidebarDefaultHeaderComponent, selector: "svc-side-bar-default-header", inputs: { model: "model" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div class=\"svc-side-bar__container-header\">\n <div class=\"svc-side-bar__container-actions\">\n <sv-action-bar [model]=\"model.toolbar\"></sv-action-bar>\n </div>\n <div *ngIf=\"!!model.title\" class=\"svc-side-bar__container-title\">{{model.title}}</div>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: i1__namespace.ActionBarComponent, selector: "sv-action-bar, sv-ng-action-bar", inputs: ["model", "handleClick"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1161
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SidebarDefaultHeaderComponent, decorators: [{
1162
+ type: i0.Component,
1163
+ args: [{
1164
+ selector: "svc-side-bar-default-header",
1165
+ templateUrl: "./side-bar-default-header.component.html",
1166
+ styles: [":host { display: none; }"]
1167
+ }]
1168
+ }], propDecorators: { model: [{
1169
+ type: i0.Input
1170
+ }] } });
1171
+ i1.AngularComponentFactory.Instance.registerComponent("svc-side-bar-default-header", SidebarDefaultHeaderComponent);
1172
+
1149
1173
  var TabButtonComponent = /** @class */ (function (_super) {
1150
1174
  __extends(TabButtonComponent, _super);
1151
1175
  function TabButtonComponent() {
@@ -1264,29 +1288,29 @@
1264
1288
  }] });
1265
1289
  i1.AngularComponentFactory.Instance.registerComponent("svc-property-grid-placeholder", PropertyGridPlaceholderComponent);
1266
1290
 
1267
- var SidebarPropertyGridPlaceholderHeaderComponent = /** @class */ (function (_super) {
1268
- __extends(SidebarPropertyGridPlaceholderHeaderComponent, _super);
1269
- function SidebarPropertyGridPlaceholderHeaderComponent() {
1291
+ var SidebarHeaderComponent = /** @class */ (function (_super) {
1292
+ __extends(SidebarHeaderComponent, _super);
1293
+ function SidebarHeaderComponent() {
1270
1294
  return _super !== null && _super.apply(this, arguments) || this;
1271
1295
  }
1272
- SidebarPropertyGridPlaceholderHeaderComponent.prototype.getModel = function () {
1296
+ SidebarHeaderComponent.prototype.getModel = function () {
1273
1297
  return this.model;
1274
1298
  };
1275
- return SidebarPropertyGridPlaceholderHeaderComponent;
1299
+ return SidebarHeaderComponent;
1276
1300
  }(i1.BaseAngular));
1277
- SidebarPropertyGridPlaceholderHeaderComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SidebarPropertyGridPlaceholderHeaderComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
1278
- SidebarPropertyGridPlaceholderHeaderComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SidebarPropertyGridPlaceholderHeaderComponent, selector: "svc-side-bar-property-grid-placeholder-header", inputs: { model: "model" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div class=\"svc-side-bar__container-header svc-sidebar__header-container\">\n <div class=\"svc-side-bar__container-title\">{{model.caption}}</div>\n </div>\n</ng-template>", styles: [":host { display: none; }"] });
1279
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SidebarPropertyGridPlaceholderHeaderComponent, decorators: [{
1301
+ SidebarHeaderComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SidebarHeaderComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
1302
+ SidebarHeaderComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SidebarHeaderComponent, selector: "svc-side-bar-header", inputs: { model: "model" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div class=\"svc-side-bar__container-header svc-sidebar__header-container\">\n <ng-container *ngIf=\"!model.subTitle\">\n <div class=\"svc-side-bar__container-title\">{{model.title}}</div>\n </ng-container>\n <ng-container *ngIf=\"!!model.subTitle\">\n <div class=\"svc-sidebar__header-caption\">\n <span class=\"svc-sidebar__header-title\">{{model.title}}</span>\n <span class=\"svc-sidebar__header-subtitle\">{{model.subTitle}}</span>\n </div>\n </ng-container>\n </div>\n</ng-template>", styles: [":host { display: none; }"], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1303
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SidebarHeaderComponent, decorators: [{
1280
1304
  type: i0.Component,
1281
1305
  args: [{
1282
- selector: "svc-side-bar-property-grid-placeholder-header",
1283
- templateUrl: "./property-grid-placeholder-header.component.html",
1306
+ selector: "svc-side-bar-header",
1307
+ templateUrl: "./side-bar-header.component.html",
1284
1308
  styles: [":host { display: none; }"]
1285
1309
  }]
1286
1310
  }], propDecorators: { model: [{
1287
1311
  type: i0.Input
1288
1312
  }] } });
1289
- i1.AngularComponentFactory.Instance.registerComponent("svc-side-bar-property-grid-placeholder-header", SidebarPropertyGridPlaceholderHeaderComponent);
1313
+ i1.AngularComponentFactory.Instance.registerComponent("svc-side-bar-header", SidebarHeaderComponent);
1290
1314
 
1291
1315
  var ObjectSelectorComponent = /** @class */ (function (_super) {
1292
1316
  __extends(ObjectSelectorComponent, _super);
@@ -1999,7 +2023,7 @@
1999
2023
  return QuestionDesignerComponent;
2000
2024
  }(CreatorModelComponent));
2001
2025
  QuestionDesignerComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: QuestionDesignerComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
2002
- QuestionDesignerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: QuestionDesignerComponent, selector: "svc-question", inputs: { componentName: "componentName", componentData: "componentData" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div *ngIf=\"adorner\" class=\"svc-question__adorner\" [class]=\"adorner.rootCss()\"\n (dblclick)=\"adorner.dblclick($event)\"\n (mouseover)=\"adorner.hover($event, $event.currentTarget)\" (mouseleave)=\"adorner.hover($event, $event.currentTarget)\"\n [attr.data-sv-drop-target-survey-element]=\"adorner.element.name || null\" #container>\n\n <div [class]=\"adorner.css()\" [key2click]=\"{ disableTabStop: true }\" (click)=\"adorner.select(adorner, $event)\">\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--left\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--right\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--top\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--bottom\"></div>\n <div *ngIf=\"adorner.allowDragging\" class=\"svc-question__drag-area\" (pointerdown)=\"adorner.onPointerDown($event)\">\n <svg class=\"svc-question__drag-element\" [iconName]=\"'icon-drag-area-indicator_24x16'\" [size]=\"24\"\n sv-ng-svg-icon></svg>\n <div class=\"svc-question__top-actions\">\n <sv-action-bar [model]=\"adorner.topActionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n <div *ngIf=\"!model.hasTitle\" [class]=\"adorner.cssCollapsedHiddenHeader\">\n <div [class]=\"adorner.cssCollapsedHiddenTitle\">\n <sv-ng-string [model]=\"model.locTitle\"></sv-ng-string>\n </div>\n </div>\n <ng-template [component]=\"{ name: componentName, data: componentData }\"></ng-template>\n <div *ngIf=\"adorner.isEmptyElement && !showPlaceholderComponent\" class=\"svc-panel__placeholder_frame-wrapper\">\n <div class=\"svc-panel__placeholder_frame\">\n <div class=\"svc-panel__placeholder\">{{ adorner.placeholderText }}</div>\n </div>\n </div>\n <ng-template *ngIf=\"adorner.isEmptyElement && !!showPlaceholderComponent\"\n [component]=\"{ name: placeholderComponent, data: placeholderComponentData }\">\n </ng-template>\n <ng-template *ngIf=\"adornerComponent\"\n [component]=\"{ name: adornerComponent, data: { adorner: adorner, question: model } }\">\n </ng-template>\n <svc-question-banner *ngIf=\"adorner.isBannerShowing\" [model]=\"adorner.createBannerParams()\">\n </svc-question-banner>\n <div class=\"svc-question__content-actions\" (focusin)=\"adorner.select(adorner, $event)\">\n <sv-action-bar [model]=\"adorner.actionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: i1__namespace.SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: i1__namespace.ActionBarComponent, selector: "sv-action-bar, sv-ng-action-bar", inputs: ["model", "handleClick"] }, { type: i1__namespace.SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }, { type: QuestionBannerComponent, selector: "svc-question-banner", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.Key2ClickDirective, selector: "[key2click]", inputs: ["key2click"] }, { type: i1__namespace.DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
2026
+ QuestionDesignerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: QuestionDesignerComponent, selector: "svc-question", inputs: { componentName: "componentName", componentData: "componentData" }, usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div *ngIf=\"adorner\" class=\"svc-question__adorner\" [class]=\"adorner.rootCss()\"\n (dblclick)=\"adorner.dblclick($event)\"\n (mouseover)=\"adorner.hover($event, $event.currentTarget)\" (mouseleave)=\"adorner.hover($event, $event.currentTarget)\"\n [attr.data-sv-drop-target-survey-element]=\"adorner.element.name || null\" #container>\n\n <div [class]=\"adorner.css()\" [key2click]=\"{ disableTabStop: true }\" (click)=\"adorner.select(adorner, $event)\">\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--left\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--right\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--top\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--bottom\"></div>\n <div *ngIf=\"adorner.allowDragging\" class=\"svc-question__drag-area\" (pointerdown)=\"adorner.onPointerDown($event)\">\n <svg class=\"svc-question__drag-element\" [iconName]=\"'icon-drag-area-indicator_24x16'\" [size]=\"24\"\n sv-ng-svg-icon></svg>\n <div class=\"svc-question__top-actions\">\n <sv-action-bar [model]=\"adorner.topActionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n <div *ngIf=\"adorner.showHiddenTitle\" [class]=\"adorner.cssCollapsedHiddenHeader\">\n <div [class]=\"adorner.cssCollapsedHiddenTitle\">\n <sv-ng-string [model]=\"model.locTitle\"></sv-ng-string>\n </div>\n </div>\n <ng-template [component]=\"{ name: componentName, data: componentData }\"></ng-template>\n <div *ngIf=\"adorner.isEmptyElement && !showPlaceholderComponent\" class=\"svc-panel__placeholder_frame-wrapper\">\n <div class=\"svc-panel__placeholder_frame\">\n <div class=\"svc-panel__placeholder\">{{ adorner.placeholderText }}</div>\n </div>\n </div>\n <ng-template *ngIf=\"adorner.isEmptyElement && !!showPlaceholderComponent\"\n [component]=\"{ name: placeholderComponent, data: placeholderComponentData }\">\n </ng-template>\n <ng-template *ngIf=\"adornerComponent\"\n [component]=\"{ name: adornerComponent, data: { adorner: adorner, question: model } }\">\n </ng-template>\n <svc-question-banner *ngIf=\"adorner.isBannerShowing\" [model]=\"adorner.createBannerParams()\">\n </svc-question-banner>\n <div class=\"svc-question__content-actions\" (focusin)=\"adorner.select(adorner, $event)\">\n <sv-action-bar [model]=\"adorner.actionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: i1__namespace.SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: i1__namespace.ActionBarComponent, selector: "sv-action-bar, sv-ng-action-bar", inputs: ["model", "handleClick"] }, { type: i1__namespace.SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }, { type: QuestionBannerComponent, selector: "svc-question-banner", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.Key2ClickDirective, selector: "[key2click]", inputs: ["key2click"] }, { type: i1__namespace.DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
2003
2027
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: QuestionDesignerComponent, decorators: [{
2004
2028
  type: i0.Component,
2005
2029
  args: [{
@@ -2196,7 +2220,7 @@
2196
2220
  return QuestionDropdownDesignerComponent;
2197
2221
  }(QuestionDesignerComponent));
2198
2222
  QuestionDropdownDesignerComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: QuestionDropdownDesignerComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
2199
- QuestionDropdownDesignerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: QuestionDropdownDesignerComponent, selector: "svc-dropdown-question", usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div *ngIf=\"adorner\" class=\"svc-question__adorner\" [class]=\"adorner.rootCss()\"\n (dblclick)=\"adorner.dblclick($event)\"\n (mouseover)=\"adorner.hover($event, $event.currentTarget)\" (mouseleave)=\"adorner.hover($event, $event.currentTarget)\"\n [attr.data-sv-drop-target-survey-element]=\"adorner.element.name || null\" #container>\n\n <div [class]=\"adorner.css()\" [key2click]=\"{ disableTabStop: true }\" (click)=\"adorner.select(adorner, $event)\">\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--left\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--right\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--top\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--bottom\"></div>\n <div *ngIf=\"adorner.allowDragging\" class=\"svc-question__drag-area\" (pointerdown)=\"adorner.onPointerDown($event)\">\n <svg class=\"svc-question__drag-element\" [iconName]=\"'icon-drag-area-indicator_24x16'\" [size]=\"24\"\n sv-ng-svg-icon></svg>\n <div class=\"svc-question__top-actions\">\n <sv-action-bar [model]=\"adorner.topActionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n <div *ngIf=\"!model.hasTitle\" [class]=\"adorner.cssCollapsedHiddenHeader\">\n <div [class]=\"adorner.cssCollapsedHiddenTitle\">\n <sv-ng-string [model]=\"model.locTitle\"></sv-ng-string>\n </div>\n </div>\n <ng-template [component]=\"{ name: componentName, data: componentData }\"></ng-template>\n <div *ngIf=\"adorner.isEmptyElement && !showPlaceholderComponent\" class=\"svc-panel__placeholder_frame-wrapper\">\n <div class=\"svc-panel__placeholder_frame\">\n <div class=\"svc-panel__placeholder\">{{ adorner.placeholderText }}</div>\n </div>\n </div>\n <ng-template *ngIf=\"adorner.isEmptyElement && !!showPlaceholderComponent\"\n [component]=\"{ name: placeholderComponent, data: placeholderComponentData }\">\n </ng-template>\n <ng-template *ngIf=\"adornerComponent\"\n [component]=\"{ name: adornerComponent, data: { adorner: adorner, question: model } }\">\n </ng-template>\n <svc-question-banner *ngIf=\"adorner.isBannerShowing\" [model]=\"adorner.createBannerParams()\">\n </svc-question-banner>\n <div class=\"svc-question__content-actions\" (focusin)=\"adorner.select(adorner, $event)\">\n <sv-action-bar [model]=\"adorner.actionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: i1__namespace.SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: i1__namespace.ActionBarComponent, selector: "sv-action-bar, sv-ng-action-bar", inputs: ["model", "handleClick"] }, { type: i1__namespace.SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }, { type: QuestionBannerComponent, selector: "svc-question-banner", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.Key2ClickDirective, selector: "[key2click]", inputs: ["key2click"] }, { type: i1__namespace.DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
2223
+ QuestionDropdownDesignerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: QuestionDropdownDesignerComponent, selector: "svc-dropdown-question", usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div *ngIf=\"adorner\" class=\"svc-question__adorner\" [class]=\"adorner.rootCss()\"\n (dblclick)=\"adorner.dblclick($event)\"\n (mouseover)=\"adorner.hover($event, $event.currentTarget)\" (mouseleave)=\"adorner.hover($event, $event.currentTarget)\"\n [attr.data-sv-drop-target-survey-element]=\"adorner.element.name || null\" #container>\n\n <div [class]=\"adorner.css()\" [key2click]=\"{ disableTabStop: true }\" (click)=\"adorner.select(adorner, $event)\">\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--left\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--right\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--top\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--bottom\"></div>\n <div *ngIf=\"adorner.allowDragging\" class=\"svc-question__drag-area\" (pointerdown)=\"adorner.onPointerDown($event)\">\n <svg class=\"svc-question__drag-element\" [iconName]=\"'icon-drag-area-indicator_24x16'\" [size]=\"24\"\n sv-ng-svg-icon></svg>\n <div class=\"svc-question__top-actions\">\n <sv-action-bar [model]=\"adorner.topActionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n <div *ngIf=\"adorner.showHiddenTitle\" [class]=\"adorner.cssCollapsedHiddenHeader\">\n <div [class]=\"adorner.cssCollapsedHiddenTitle\">\n <sv-ng-string [model]=\"model.locTitle\"></sv-ng-string>\n </div>\n </div>\n <ng-template [component]=\"{ name: componentName, data: componentData }\"></ng-template>\n <div *ngIf=\"adorner.isEmptyElement && !showPlaceholderComponent\" class=\"svc-panel__placeholder_frame-wrapper\">\n <div class=\"svc-panel__placeholder_frame\">\n <div class=\"svc-panel__placeholder\">{{ adorner.placeholderText }}</div>\n </div>\n </div>\n <ng-template *ngIf=\"adorner.isEmptyElement && !!showPlaceholderComponent\"\n [component]=\"{ name: placeholderComponent, data: placeholderComponentData }\">\n </ng-template>\n <ng-template *ngIf=\"adornerComponent\"\n [component]=\"{ name: adornerComponent, data: { adorner: adorner, question: model } }\">\n </ng-template>\n <svc-question-banner *ngIf=\"adorner.isBannerShowing\" [model]=\"adorner.createBannerParams()\">\n </svc-question-banner>\n <div class=\"svc-question__content-actions\" (focusin)=\"adorner.select(adorner, $event)\">\n <sv-action-bar [model]=\"adorner.actionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: i1__namespace.SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: i1__namespace.ActionBarComponent, selector: "sv-action-bar, sv-ng-action-bar", inputs: ["model", "handleClick"] }, { type: i1__namespace.SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }, { type: QuestionBannerComponent, selector: "svc-question-banner", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.Key2ClickDirective, selector: "[key2click]", inputs: ["key2click"] }, { type: i1__namespace.DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
2200
2224
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: QuestionDropdownDesignerComponent, decorators: [{
2201
2225
  type: i0.Component,
2202
2226
  args: [{
@@ -2283,7 +2307,7 @@
2283
2307
  return QuestionImageDesignerComponent;
2284
2308
  }(QuestionDesignerComponent));
2285
2309
  QuestionImageDesignerComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: QuestionImageDesignerComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
2286
- QuestionImageDesignerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: QuestionImageDesignerComponent, selector: "svc-image-question", viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true, read: i0.ElementRef }], usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div *ngIf=\"adorner\" class=\"svc-question__adorner\" [class]=\"adorner.rootCss()\"\n (dblclick)=\"adorner.dblclick($event)\"\n (mouseover)=\"adorner.hover($event, $event.currentTarget)\" (mouseleave)=\"adorner.hover($event, $event.currentTarget)\"\n [attr.data-sv-drop-target-survey-element]=\"adorner.element.name || null\" #container>\n\n <div [class]=\"adorner.css()\" [key2click]=\"{ disableTabStop: true }\" (click)=\"adorner.select(adorner, $event)\">\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--left\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--right\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--top\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--bottom\"></div>\n <div *ngIf=\"adorner.allowDragging\" class=\"svc-question__drag-area\" (pointerdown)=\"adorner.onPointerDown($event)\">\n <svg class=\"svc-question__drag-element\" [iconName]=\"'icon-drag-area-indicator_24x16'\" [size]=\"24\"\n sv-ng-svg-icon></svg>\n <div class=\"svc-question__top-actions\">\n <sv-action-bar [model]=\"adorner.topActionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n <div *ngIf=\"!model.hasTitle\" [class]=\"adorner.cssCollapsedHiddenHeader\">\n <div [class]=\"adorner.cssCollapsedHiddenTitle\">\n <sv-ng-string [model]=\"model.locTitle\"></sv-ng-string>\n </div>\n </div>\n <ng-template [component]=\"{ name: componentName, data: componentData }\"></ng-template>\n <div *ngIf=\"adorner.isEmptyElement && !showPlaceholderComponent\" class=\"svc-panel__placeholder_frame-wrapper\">\n <div class=\"svc-panel__placeholder_frame\">\n <div class=\"svc-panel__placeholder\">{{ adorner.placeholderText }}</div>\n </div>\n </div>\n <ng-template *ngIf=\"adorner.isEmptyElement && !!showPlaceholderComponent\"\n [component]=\"{ name: placeholderComponent, data: placeholderComponentData }\">\n </ng-template>\n <ng-template *ngIf=\"adornerComponent\"\n [component]=\"{ name: adornerComponent, data: { adorner: adorner, question: model } }\">\n </ng-template>\n <svc-question-banner *ngIf=\"adorner.isBannerShowing\" [model]=\"adorner.createBannerParams()\">\n </svc-question-banner>\n <div class=\"svc-question__content-actions\" (focusin)=\"adorner.select(adorner, $event)\">\n <sv-action-bar [model]=\"adorner.actionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: i1__namespace.SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: i1__namespace.ActionBarComponent, selector: "sv-action-bar, sv-ng-action-bar", inputs: ["model", "handleClick"] }, { type: i1__namespace.SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }, { type: QuestionBannerComponent, selector: "svc-question-banner", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.Key2ClickDirective, selector: "[key2click]", inputs: ["key2click"] }, { type: i1__namespace.DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
2310
+ QuestionImageDesignerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: QuestionImageDesignerComponent, selector: "svc-image-question", viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true, read: i0.ElementRef }], usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div *ngIf=\"adorner\" class=\"svc-question__adorner\" [class]=\"adorner.rootCss()\"\n (dblclick)=\"adorner.dblclick($event)\"\n (mouseover)=\"adorner.hover($event, $event.currentTarget)\" (mouseleave)=\"adorner.hover($event, $event.currentTarget)\"\n [attr.data-sv-drop-target-survey-element]=\"adorner.element.name || null\" #container>\n\n <div [class]=\"adorner.css()\" [key2click]=\"{ disableTabStop: true }\" (click)=\"adorner.select(adorner, $event)\">\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--left\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--right\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--top\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--bottom\"></div>\n <div *ngIf=\"adorner.allowDragging\" class=\"svc-question__drag-area\" (pointerdown)=\"adorner.onPointerDown($event)\">\n <svg class=\"svc-question__drag-element\" [iconName]=\"'icon-drag-area-indicator_24x16'\" [size]=\"24\"\n sv-ng-svg-icon></svg>\n <div class=\"svc-question__top-actions\">\n <sv-action-bar [model]=\"adorner.topActionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n <div *ngIf=\"adorner.showHiddenTitle\" [class]=\"adorner.cssCollapsedHiddenHeader\">\n <div [class]=\"adorner.cssCollapsedHiddenTitle\">\n <sv-ng-string [model]=\"model.locTitle\"></sv-ng-string>\n </div>\n </div>\n <ng-template [component]=\"{ name: componentName, data: componentData }\"></ng-template>\n <div *ngIf=\"adorner.isEmptyElement && !showPlaceholderComponent\" class=\"svc-panel__placeholder_frame-wrapper\">\n <div class=\"svc-panel__placeholder_frame\">\n <div class=\"svc-panel__placeholder\">{{ adorner.placeholderText }}</div>\n </div>\n </div>\n <ng-template *ngIf=\"adorner.isEmptyElement && !!showPlaceholderComponent\"\n [component]=\"{ name: placeholderComponent, data: placeholderComponentData }\">\n </ng-template>\n <ng-template *ngIf=\"adornerComponent\"\n [component]=\"{ name: adornerComponent, data: { adorner: adorner, question: model } }\">\n </ng-template>\n <svc-question-banner *ngIf=\"adorner.isBannerShowing\" [model]=\"adorner.createBannerParams()\">\n </svc-question-banner>\n <div class=\"svc-question__content-actions\" (focusin)=\"adorner.select(adorner, $event)\">\n <sv-action-bar [model]=\"adorner.actionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: i1__namespace.SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: i1__namespace.ActionBarComponent, selector: "sv-action-bar, sv-ng-action-bar", inputs: ["model", "handleClick"] }, { type: i1__namespace.SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }, { type: QuestionBannerComponent, selector: "svc-question-banner", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.Key2ClickDirective, selector: "[key2click]", inputs: ["key2click"] }, { type: i1__namespace.DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
2287
2311
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: QuestionImageDesignerComponent, decorators: [{
2288
2312
  type: i0.Component,
2289
2313
  args: [{
@@ -2327,7 +2351,7 @@
2327
2351
  return PanelDesignerComponent;
2328
2352
  }(QuestionDesignerComponent));
2329
2353
  PanelDesignerComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: PanelDesignerComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
2330
- PanelDesignerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: PanelDesignerComponent, selector: "svc-panel", usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div *ngIf=\"adorner\" class=\"svc-question__adorner\" [class]=\"adorner.rootCss()\" (dblclick)=\"adorner.dblclick($event)\"\n (mouseover)=\"adorner.hover($event, $event.currentTarget)\" (mouseleave)=\"adorner.hover($event, $event.currentTarget)\"\n [attr.data-sv-drop-target-survey-element]=\"adorner.element.name || null\" #container>\n\n <div [class]=\"adorner.css()\" [key2click]=\"{ disableTabStop: true }\"\n (click)=\"adorner.element.isInteractiveDesignElement ? adorner.select(adorner, $event) : null\">\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--left\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--right\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--top\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--bottom\"></div>\n <div *ngIf=\"adorner.allowDragging && adorner.element.isInteractiveDesignElement\" class=\"svc-question__drag-area\"\n (pointerdown)=\"adorner.onPointerDown($event)\">\n <svg class=\"svc-question__drag-element\" [iconName]=\"'icon-drag-area-indicator_24x16'\" [size]=\"24\"\n sv-ng-svg-icon></svg>\n <div class=\"svc-question__top-actions\">\n <sv-action-bar [model]=\"adorner.topActionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n\n <ng-template [component]=\"{ name: componentName, data: componentData }\"></ng-template>\n\n <div *ngIf=\"adorner.isEmptyElement\" class=\"svc-panel__placeholder_frame-wrapper\">\n <div class=\"svc-panel__placeholder_frame\">\n <div class=\"svc-panel__placeholder\">{{ adorner.placeholderText }}</div>\n <div *ngIf=\"adorner.showAddQuestionButton\" class=\"svc-panel__add-new-question svc-action-button\" [key2click]\n (click)=\"addNewQuestion($event)\">\n <svg class=\"svc-panel__add-new-question-icon\" [iconName]=\"('icon-add_24x24')\" [size]=\"24\"\n sv-ng-svg-icon></svg>\n <span class=\"svc-text svc-text--normal svc-text--bold\">\n {{ adorner.addNewQuestionText }}\n </span>\n </div>\n </div>\n </div>\n\n <ng-template *ngIf=\"adornerComponent && adorner.element.isInteractiveDesignElement\"\n [component]=\"{ name: adornerComponent, data: { adorner: adorner, question: model } }\">\n </ng-template>\n\n <div *ngIf=\"!adorner.isEmptyElement && adorner.showAddQuestionButton\"\n class=\"svc-panel__add-new-question-container\">\n <div class=\"svc-panel__question-type-selector-popup\"> <sv-ng-popup\n [popupModel]=\"adorner.questionTypeSelectorModel.popupModel\"></sv-ng-popup>\n </div>\n\n <div class=\"svc-panel__add-new-question-wrapper\">\n <ng-template\n [component]=\"{ name: 'svc-add-new-question-btn', data: { model: { data: adorner }, buttonClass: 'svc-action-button', renderPopup: false } }\">\n </ng-template>\n </div>\n </div>\n\n <div *ngIf=\"adorner.element.isInteractiveDesignElement\" class=\"svc-question__content-actions\"\n (focusin)=\"adorner.select(adorner, $event)\">\n <sv-action-bar [model]=\"adorner.actionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: i1__namespace.SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: i1__namespace.ActionBarComponent, selector: "sv-action-bar, sv-ng-action-bar", inputs: ["model", "handleClick"] }, { type: i1__namespace.PopupComponent, selector: "sv-ng-popup, '[sv-ng-popup]'", inputs: ["popupModel", "getTarget", "getArea"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.Key2ClickDirective, selector: "[key2click]", inputs: ["key2click"] }, { type: i1__namespace.DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
2354
+ PanelDesignerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: PanelDesignerComponent, selector: "svc-panel", usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div *ngIf=\"adorner\" class=\"svc-question__adorner\" [class]=\"adorner.rootCss()\" (dblclick)=\"adorner.dblclick($event)\"\n (mouseover)=\"adorner.hover($event, $event.currentTarget)\" (mouseleave)=\"adorner.hover($event, $event.currentTarget)\"\n [attr.data-sv-drop-target-survey-element]=\"adorner.element.name || null\" #container>\n\n <div [class]=\"adorner.css()\" [key2click]=\"{ disableTabStop: true }\"\n (click)=\"adorner.element.isInteractiveDesignElement ? adorner.select(adorner, $event) : null\">\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--left\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--right\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--top\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--bottom\"></div>\n <div *ngIf=\"adorner.allowDragging && adorner.element.isInteractiveDesignElement\" class=\"svc-question__drag-area\"\n (pointerdown)=\"adorner.onPointerDown($event)\">\n <svg class=\"svc-question__drag-element\" [iconName]=\"'icon-drag-area-indicator_24x16'\" [size]=\"24\"\n sv-ng-svg-icon></svg>\n <div class=\"svc-question__top-actions\">\n <sv-action-bar [model]=\"adorner.topActionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n <div *ngIf=\"adorner.showHiddenTitle\" [class]=\"adorner.cssCollapsedHiddenHeader\">\n <div [class]=\"adorner.cssCollapsedHiddenTitle\">\n <sv-ng-string *ngIf=\"!!model.title\" [model]=\"model.locTitle\"></sv-ng-string>\n <span *ngIf=\"!model.title\" class=\"svc-fake-title\">{{model.name}}</span>\n </div>\n </div>\n <ng-template [component]=\"{ name: componentName, data: componentData }\"></ng-template>\n\n <div *ngIf=\"adorner.isEmptyElement\" class=\"svc-panel__placeholder_frame-wrapper\">\n <div class=\"svc-panel__placeholder_frame\">\n <div class=\"svc-panel__placeholder\">{{ adorner.placeholderText }}</div>\n <div *ngIf=\"adorner.showAddQuestionButton\" class=\"svc-panel__add-new-question svc-action-button\" [key2click]\n (click)=\"addNewQuestion($event)\">\n <svg class=\"svc-panel__add-new-question-icon\" [iconName]=\"('icon-add_24x24')\" [size]=\"24\"\n sv-ng-svg-icon></svg>\n <span class=\"svc-text svc-text--normal svc-text--bold\">\n {{ adorner.addNewQuestionText }}\n </span>\n </div>\n </div>\n </div>\n\n <ng-template *ngIf=\"adornerComponent && adorner.element.isInteractiveDesignElement\"\n [component]=\"{ name: adornerComponent, data: { adorner: adorner, question: model } }\">\n </ng-template>\n\n <div *ngIf=\"!adorner.isEmptyElement && adorner.showAddQuestionButton\"\n class=\"svc-panel__add-new-question-container\">\n <div class=\"svc-panel__question-type-selector-popup\"> <sv-ng-popup\n [popupModel]=\"adorner.questionTypeSelectorModel.popupModel\"></sv-ng-popup>\n </div>\n\n <div class=\"svc-panel__add-new-question-wrapper\">\n <ng-template\n [component]=\"{ name: 'svc-add-new-question-btn', data: { model: { data: adorner }, buttonClass: 'svc-action-button', renderPopup: false } }\">\n </ng-template>\n </div>\n </div>\n\n <div *ngIf=\"adorner.element.isInteractiveDesignElement\" class=\"svc-question__content-actions\"\n (focusin)=\"adorner.select(adorner, $event)\">\n <sv-action-bar [model]=\"adorner.actionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: i1__namespace.SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: i1__namespace.ActionBarComponent, selector: "sv-action-bar, sv-ng-action-bar", inputs: ["model", "handleClick"] }, { type: i1__namespace.SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }, { type: i1__namespace.PopupComponent, selector: "sv-ng-popup, '[sv-ng-popup]'", inputs: ["popupModel", "getTarget", "getArea"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.Key2ClickDirective, selector: "[key2click]", inputs: ["key2click"] }, { type: i1__namespace.DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
2331
2355
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: PanelDesignerComponent, decorators: [{
2332
2356
  type: i0.Component,
2333
2357
  args: [{
@@ -2969,7 +2993,7 @@
2969
2993
  return QuestionRatingDesignerComponent;
2970
2994
  }(QuestionDesignerComponent));
2971
2995
  QuestionRatingDesignerComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: QuestionRatingDesignerComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
2972
- QuestionRatingDesignerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: QuestionRatingDesignerComponent, selector: "svc-rating-question", usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div *ngIf=\"adorner\" class=\"svc-question__adorner\" [class]=\"adorner.rootCss()\"\n (dblclick)=\"adorner.dblclick($event)\"\n (mouseover)=\"adorner.hover($event, $event.currentTarget)\" (mouseleave)=\"adorner.hover($event, $event.currentTarget)\"\n [attr.data-sv-drop-target-survey-element]=\"adorner.element.name || null\" #container>\n\n <div [class]=\"adorner.css()\" [key2click]=\"{ disableTabStop: true }\" (click)=\"adorner.select(adorner, $event)\">\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--left\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--right\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--top\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--bottom\"></div>\n <div *ngIf=\"adorner.allowDragging\" class=\"svc-question__drag-area\" (pointerdown)=\"adorner.onPointerDown($event)\">\n <svg class=\"svc-question__drag-element\" [iconName]=\"'icon-drag-area-indicator_24x16'\" [size]=\"24\"\n sv-ng-svg-icon></svg>\n <div class=\"svc-question__top-actions\">\n <sv-action-bar [model]=\"adorner.topActionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n <div *ngIf=\"!model.hasTitle\" [class]=\"adorner.cssCollapsedHiddenHeader\">\n <div [class]=\"adorner.cssCollapsedHiddenTitle\">\n <sv-ng-string [model]=\"model.locTitle\"></sv-ng-string>\n </div>\n </div>\n <ng-template [component]=\"{ name: componentName, data: componentData }\"></ng-template>\n <div *ngIf=\"adorner.isEmptyElement && !showPlaceholderComponent\" class=\"svc-panel__placeholder_frame-wrapper\">\n <div class=\"svc-panel__placeholder_frame\">\n <div class=\"svc-panel__placeholder\">{{ adorner.placeholderText }}</div>\n </div>\n </div>\n <ng-template *ngIf=\"adorner.isEmptyElement && !!showPlaceholderComponent\"\n [component]=\"{ name: placeholderComponent, data: placeholderComponentData }\">\n </ng-template>\n <ng-template *ngIf=\"adornerComponent\"\n [component]=\"{ name: adornerComponent, data: { adorner: adorner, question: model } }\">\n </ng-template>\n <svc-question-banner *ngIf=\"adorner.isBannerShowing\" [model]=\"adorner.createBannerParams()\">\n </svc-question-banner>\n <div class=\"svc-question__content-actions\" (focusin)=\"adorner.select(adorner, $event)\">\n <sv-action-bar [model]=\"adorner.actionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: i1__namespace.SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: i1__namespace.ActionBarComponent, selector: "sv-action-bar, sv-ng-action-bar", inputs: ["model", "handleClick"] }, { type: i1__namespace.SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }, { type: QuestionBannerComponent, selector: "svc-question-banner", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.Key2ClickDirective, selector: "[key2click]", inputs: ["key2click"] }, { type: i1__namespace.DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
2996
+ QuestionRatingDesignerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: QuestionRatingDesignerComponent, selector: "svc-rating-question", usesInheritance: true, ngImport: i0__namespace, template: "<ng-template #template>\n <div *ngIf=\"adorner\" class=\"svc-question__adorner\" [class]=\"adorner.rootCss()\"\n (dblclick)=\"adorner.dblclick($event)\"\n (mouseover)=\"adorner.hover($event, $event.currentTarget)\" (mouseleave)=\"adorner.hover($event, $event.currentTarget)\"\n [attr.data-sv-drop-target-survey-element]=\"adorner.element.name || null\" #container>\n\n <div [class]=\"adorner.css()\" [key2click]=\"{ disableTabStop: true }\" (click)=\"adorner.select(adorner, $event)\">\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--left\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--right\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--top\"></div>\n <div class=\"svc-question__drop-indicator svc-question__drop-indicator--bottom\"></div>\n <div *ngIf=\"adorner.allowDragging\" class=\"svc-question__drag-area\" (pointerdown)=\"adorner.onPointerDown($event)\">\n <svg class=\"svc-question__drag-element\" [iconName]=\"'icon-drag-area-indicator_24x16'\" [size]=\"24\"\n sv-ng-svg-icon></svg>\n <div class=\"svc-question__top-actions\">\n <sv-action-bar [model]=\"adorner.topActionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n <div *ngIf=\"adorner.showHiddenTitle\" [class]=\"adorner.cssCollapsedHiddenHeader\">\n <div [class]=\"adorner.cssCollapsedHiddenTitle\">\n <sv-ng-string [model]=\"model.locTitle\"></sv-ng-string>\n </div>\n </div>\n <ng-template [component]=\"{ name: componentName, data: componentData }\"></ng-template>\n <div *ngIf=\"adorner.isEmptyElement && !showPlaceholderComponent\" class=\"svc-panel__placeholder_frame-wrapper\">\n <div class=\"svc-panel__placeholder_frame\">\n <div class=\"svc-panel__placeholder\">{{ adorner.placeholderText }}</div>\n </div>\n </div>\n <ng-template *ngIf=\"adorner.isEmptyElement && !!showPlaceholderComponent\"\n [component]=\"{ name: placeholderComponent, data: placeholderComponentData }\">\n </ng-template>\n <ng-template *ngIf=\"adornerComponent\"\n [component]=\"{ name: adornerComponent, data: { adorner: adorner, question: model } }\">\n </ng-template>\n <svc-question-banner *ngIf=\"adorner.isBannerShowing\" [model]=\"adorner.createBannerParams()\">\n </svc-question-banner>\n <div class=\"svc-question__content-actions\" (focusin)=\"adorner.select(adorner, $event)\">\n <sv-action-bar [model]=\"adorner.actionContainer\" [handleClick]=\"false\"></sv-action-bar>\n </div>\n </div>\n </div>\n</ng-template>", styles: [":host { display: none; }"], components: [{ type: i1__namespace.SvgIconComponent, selector: "'[sv-ng-svg-icon]'", inputs: ["size", "width", "height", "iconName", "partCss", "css", "title"] }, { type: i1__namespace.ActionBarComponent, selector: "sv-action-bar, sv-ng-action-bar", inputs: ["model", "handleClick"] }, { type: i1__namespace.SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }, { type: QuestionBannerComponent, selector: "svc-question-banner", inputs: ["model"] }], directives: [{ type: i2__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1__namespace.Key2ClickDirective, selector: "[key2click]", inputs: ["key2click"] }, { type: i1__namespace.DynamicComponentDirective, selector: "[component]", inputs: ["component"] }] });
2973
2997
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: QuestionRatingDesignerComponent, decorators: [{
2974
2998
  type: i0.Component,
2975
2999
  args: [{
@@ -3171,6 +3195,25 @@
3171
3195
  i1.AngularComponentFactory.Instance.registerComponent("textwithreset-question", QuestionTextWithResetComponent);
3172
3196
  i1.AngularComponentFactory.Instance.registerComponent("commentwithreset-question", QuestionTextWithResetComponent);
3173
3197
 
3198
+ var BooleanSwitchComponent = /** @class */ (function (_super) {
3199
+ __extends(BooleanSwitchComponent, _super);
3200
+ function BooleanSwitchComponent() {
3201
+ return _super !== null && _super.apply(this, arguments) || this;
3202
+ }
3203
+ return BooleanSwitchComponent;
3204
+ }(i1.QuestionAngular));
3205
+ BooleanSwitchComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: BooleanSwitchComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
3206
+ BooleanSwitchComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: BooleanSwitchComponent, selector: "sv-ng-boolean-switch", usesInheritance: true, ngImport: i0__namespace, template: "<div class=\"spg-boolean-switch\" role=\"checkbox\" [attr.aria-required]=\"model.a11y_input_ariaRequired\"\n [attr.aria-label]=\"model.a11y_input_ariaLabel\" [attr.aria-labelledby]=\"model.a11y_input_ariaLabelledBy\"\n [attr.aria-describedby]=\"model.a11y_input_ariaDescribedBy\" [attr.aria-invalid]=\"model.a11y_input_ariaInvalid\"\n [attr.aria-errormessage]=\"model.a11y_input_ariaErrormessage\" (click)=\"model.value = !model.value\">\n <div class=\"spg-boolean-switch__button\" tabindex=\"0\"\n [class]=\"model.value ? 'spg-boolean-switch__button--checked' : ''\">\n <div class=\"spg-boolean-switch__thumb\">\n <div class=\"spg-boolean-switch__thumb-circle spg-boolean-switch__thumb--left\"></div>\n </div>\n <div class=\"spg-boolean-switch__thumb\">\n <div class=\"spg-boolean-switch__thumb-circle spg-boolean-switch__thumb--right\"></div>\n </div>\n </div>\n <div class=\"spg-boolean-switch__caption\">\n <div class=\"spg-boolean-switch__title\">\n <span [model]=\"model.locTitle\" sv-ng-string></span>\n </div>\n </div>\n</div>", components: [{ type: i1__namespace.SurveyStringComponent, selector: "sv-ng-string, '[sv-ng-string]'", inputs: ["model"] }] });
3207
+ i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: BooleanSwitchComponent, decorators: [{
3208
+ type: i0.Component,
3209
+ args: [{
3210
+ selector: "sv-ng-boolean-switch",
3211
+ templateUrl: "./boolean-switch.component.html"
3212
+ }]
3213
+ }] });
3214
+ i1.AngularComponentFactory.Instance.registerComponent("sv-boolean-switch", BooleanSwitchComponent);
3215
+ surveyCore.RendererFactory.Instance.registerRenderer("boolean", "switch", "sv-boolean-switch");
3216
+
3174
3217
  var JsonErrorItemComponent = /** @class */ (function (_super) {
3175
3218
  __extends(JsonErrorItemComponent, _super);
3176
3219
  function JsonErrorItemComponent() {
@@ -3229,35 +3272,39 @@
3229
3272
  return SurveyCreatorModule;
3230
3273
  }());
3231
3274
  SurveyCreatorModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SurveyCreatorModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
3232
- SurveyCreatorModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SurveyCreatorModule, declarations: [CreatorComponent, DesignerTabComponent, PageDesignerComponent, QuestionDesignerComponent, PanelDesignerComponent, TabbledMenuComponent, TabbedMenuItemComponent, TabbedMenuItemWrapperComponent, SidebarComponent, SidebarPageComponent, ObjectSelectorComponent, SidebarPropertyGridHeaderComponent, PropertyGridPlaceholderComponent, SidebarPropertyGridPlaceholderHeaderComponent, TabControlComponent, TabsComponent, TabButtonComponent, PropertyGridComponent, SearchComponent, TextareaJsonEditorComponent, AceJsonEditorComponent, LogicTabComponent, LogicAddButtonComponent, ActionButtonComponent, QuestionPgErrorComponent, SwitcherComponent, LinkValueQuestionComponent, EmbeddedSurveyQuestionComponent, TranslationTabComponent, TranslationSkeletonComponent, SimulatorComponent, TestTabComponent, TestAgainActionComponent, SurveyResultsComponent, SurveyResultsTableRowComponent, ThemeTabComponent,
3275
+ SurveyCreatorModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SurveyCreatorModule, declarations: [CreatorComponent, DesignerTabComponent, PageDesignerComponent, QuestionDesignerComponent, PanelDesignerComponent, TabbledMenuComponent, TabbedMenuItemComponent, TabbedMenuItemWrapperComponent, SidebarComponent, SidebarPageComponent, SidebarDefaultHeaderComponent, ObjectSelectorComponent, SidebarPropertyGridHeaderComponent, PropertyGridPlaceholderComponent, SidebarHeaderComponent, TabControlComponent, TabsComponent, TabButtonComponent, PropertyGridComponent, SearchComponent, TextareaJsonEditorComponent, AceJsonEditorComponent, LogicTabComponent, LogicAddButtonComponent, ActionButtonComponent, QuestionPgErrorComponent, SwitcherComponent, LinkValueQuestionComponent, EmbeddedSurveyQuestionComponent, TranslationTabComponent, TranslationSkeletonComponent, SimulatorComponent, TestTabComponent, TestAgainActionComponent, SurveyResultsComponent, SurveyResultsTableRowComponent, ThemeTabComponent,
3233
3276
  AdaptiveToolboxComponent, ToolboxToolComponent, ToolboxItemComponent, ToolboxItemGroupComponent, ToolboxListComponent, ToolboxCategoryComponent, StringEditorComponent, PageNavigatorComponent, PageNavigatorItemComponent,
3234
3277
  QuestionDropdownDesignerComponent, QuestionDropdownAdornerDesignerComponent, QuestionImageDesignerComponent, QuestionImageAdornerDesignerComponent,
3235
3278
  ItemValueDesignerComponent, ImageItemValueDesignerComponent, LogicOperatorComponent, MatrixCellComponent, QuestionEditorComponent, CellQuestionDropdownComponent, CreatorRowComponent, DesignerPagesComponent, DesignerSurveyComponent, CellQuestionComponent, QuestionWidgetDesignerComponent, ToolboxComponent, CreatorLogoImageComponent,
3236
- QuestionRatingAdornerDesignerComponent, QuestionRatingDesignerComponent, QuestionSpinEditorComponent, ColorItemComponent, QuestionColorComponent, QuestionFileEditorComponent, AddQuestionButtonComponent, AddQuestionTypeSelectorComponent, QuestionBannerComponent, JsonErrorItemComponent, QuestionTextWithResetComponent, TranslateFromAction], imports: [i2.CommonModule, i3.FormsModule, i1.SurveyModule], exports: [CreatorComponent, DesignerTabComponent, PageDesignerComponent, QuestionDesignerComponent, PanelDesignerComponent, TabbledMenuComponent, TabbedMenuItemComponent, TabbedMenuItemWrapperComponent, SidebarComponent, SidebarPageComponent, SidebarPropertyGridHeaderComponent, PropertyGridPlaceholderComponent, SidebarPropertyGridPlaceholderHeaderComponent, TabControlComponent, TabsComponent, TabButtonComponent, ObjectSelectorComponent, PropertyGridComponent, SearchComponent, TextareaJsonEditorComponent, AceJsonEditorComponent, LogicTabComponent, LogicAddButtonComponent, ActionButtonComponent, QuestionPgErrorComponent, SwitcherComponent, LinkValueQuestionComponent, EmbeddedSurveyQuestionComponent, TranslationTabComponent, TranslationSkeletonComponent, SimulatorComponent, TestTabComponent, TestAgainActionComponent, SurveyResultsComponent, SurveyResultsTableRowComponent, ThemeTabComponent,
3279
+ QuestionRatingAdornerDesignerComponent, QuestionRatingDesignerComponent, QuestionSpinEditorComponent, ColorItemComponent, QuestionColorComponent, QuestionFileEditorComponent, AddQuestionButtonComponent, QuestionBannerComponent, JsonErrorItemComponent, QuestionTextWithResetComponent,
3280
+ BooleanSwitchComponent, TranslateFromAction, AddQuestionTypeSelectorComponent], imports: [i2.CommonModule, i3.FormsModule, i1.SurveyModule], exports: [CreatorComponent, DesignerTabComponent, PageDesignerComponent, QuestionDesignerComponent, PanelDesignerComponent, TabbledMenuComponent, TabbedMenuItemComponent, TabbedMenuItemWrapperComponent, SidebarComponent, SidebarPageComponent, SidebarDefaultHeaderComponent, SidebarPropertyGridHeaderComponent, PropertyGridPlaceholderComponent, SidebarHeaderComponent, TabControlComponent, TabsComponent, TabButtonComponent, ObjectSelectorComponent, PropertyGridComponent, SearchComponent, TextareaJsonEditorComponent, AceJsonEditorComponent, LogicTabComponent, LogicAddButtonComponent, ActionButtonComponent, QuestionPgErrorComponent, SwitcherComponent, LinkValueQuestionComponent, EmbeddedSurveyQuestionComponent, TranslationTabComponent, TranslationSkeletonComponent, SimulatorComponent, TestTabComponent, TestAgainActionComponent, SurveyResultsComponent, SurveyResultsTableRowComponent, ThemeTabComponent,
3237
3281
  AdaptiveToolboxComponent, ToolboxToolComponent, ToolboxItemComponent, ToolboxItemGroupComponent, ToolboxListComponent, ToolboxCategoryComponent, StringEditorComponent, PageNavigatorComponent, PageNavigatorItemComponent,
3238
3282
  QuestionDropdownDesignerComponent, QuestionDropdownAdornerDesignerComponent, QuestionImageDesignerComponent, QuestionImageAdornerDesignerComponent,
3239
3283
  ItemValueDesignerComponent, ImageItemValueDesignerComponent, LogicOperatorComponent, MatrixCellComponent, QuestionEditorComponent, CellQuestionDropdownComponent, CreatorRowComponent, DesignerPagesComponent, DesignerSurveyComponent, CellQuestionComponent, QuestionWidgetDesignerComponent, ToolboxComponent, CreatorLogoImageComponent,
3240
- QuestionRatingAdornerDesignerComponent, QuestionRatingDesignerComponent, QuestionSpinEditorComponent, ColorItemComponent, QuestionColorComponent, QuestionFileEditorComponent, AddQuestionButtonComponent, AddQuestionTypeSelectorComponent, QuestionBannerComponent, JsonErrorItemComponent, QuestionTextWithResetComponent, TranslateFromAction] });
3284
+ QuestionRatingAdornerDesignerComponent, QuestionRatingDesignerComponent, QuestionSpinEditorComponent, ColorItemComponent, QuestionColorComponent, QuestionFileEditorComponent, AddQuestionButtonComponent, QuestionBannerComponent, JsonErrorItemComponent, QuestionTextWithResetComponent, BooleanSwitchComponent, TranslateFromAction,
3285
+ AddQuestionTypeSelectorComponent] });
3241
3286
  SurveyCreatorModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SurveyCreatorModule, providers: [], imports: [[
3242
3287
  i2.CommonModule, i3.FormsModule, i1.SurveyModule
3243
3288
  ]] });
3244
3289
  i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: SurveyCreatorModule, decorators: [{
3245
3290
  type: i0.NgModule,
3246
3291
  args: [{
3247
- declarations: [CreatorComponent, DesignerTabComponent, PageDesignerComponent, QuestionDesignerComponent, PanelDesignerComponent, TabbledMenuComponent, TabbedMenuItemComponent, TabbedMenuItemWrapperComponent, SidebarComponent, SidebarPageComponent, ObjectSelectorComponent, SidebarPropertyGridHeaderComponent, PropertyGridPlaceholderComponent, SidebarPropertyGridPlaceholderHeaderComponent, TabControlComponent, TabsComponent, TabButtonComponent, PropertyGridComponent, SearchComponent, TextareaJsonEditorComponent, AceJsonEditorComponent, LogicTabComponent, LogicAddButtonComponent, ActionButtonComponent, QuestionPgErrorComponent, SwitcherComponent, LinkValueQuestionComponent, EmbeddedSurveyQuestionComponent, TranslationTabComponent, TranslationSkeletonComponent, SimulatorComponent, TestTabComponent, TestAgainActionComponent, SurveyResultsComponent, SurveyResultsTableRowComponent, ThemeTabComponent,
3292
+ declarations: [CreatorComponent, DesignerTabComponent, PageDesignerComponent, QuestionDesignerComponent, PanelDesignerComponent, TabbledMenuComponent, TabbedMenuItemComponent, TabbedMenuItemWrapperComponent, SidebarComponent, SidebarPageComponent, SidebarDefaultHeaderComponent, ObjectSelectorComponent, SidebarPropertyGridHeaderComponent, PropertyGridPlaceholderComponent, SidebarHeaderComponent, TabControlComponent, TabsComponent, TabButtonComponent, PropertyGridComponent, SearchComponent, TextareaJsonEditorComponent, AceJsonEditorComponent, LogicTabComponent, LogicAddButtonComponent, ActionButtonComponent, QuestionPgErrorComponent, SwitcherComponent, LinkValueQuestionComponent, EmbeddedSurveyQuestionComponent, TranslationTabComponent, TranslationSkeletonComponent, SimulatorComponent, TestTabComponent, TestAgainActionComponent, SurveyResultsComponent, SurveyResultsTableRowComponent, ThemeTabComponent,
3248
3293
  AdaptiveToolboxComponent, ToolboxToolComponent, ToolboxItemComponent, ToolboxItemGroupComponent, ToolboxListComponent, ToolboxCategoryComponent, StringEditorComponent, PageNavigatorComponent, PageNavigatorItemComponent,
3249
3294
  QuestionDropdownDesignerComponent, QuestionDropdownAdornerDesignerComponent, QuestionImageDesignerComponent, QuestionImageAdornerDesignerComponent,
3250
3295
  ItemValueDesignerComponent, ImageItemValueDesignerComponent, LogicOperatorComponent, MatrixCellComponent, QuestionEditorComponent, CellQuestionDropdownComponent, CreatorRowComponent, DesignerPagesComponent, DesignerSurveyComponent, CellQuestionComponent, QuestionWidgetDesignerComponent, ToolboxComponent, CreatorLogoImageComponent,
3251
- QuestionRatingAdornerDesignerComponent, QuestionRatingDesignerComponent, QuestionSpinEditorComponent, ColorItemComponent, QuestionColorComponent, QuestionFileEditorComponent, AddQuestionButtonComponent, AddQuestionTypeSelectorComponent, QuestionBannerComponent, JsonErrorItemComponent, QuestionTextWithResetComponent, TranslateFromAction],
3296
+ QuestionRatingAdornerDesignerComponent, QuestionRatingDesignerComponent, QuestionSpinEditorComponent, ColorItemComponent, QuestionColorComponent, QuestionFileEditorComponent, AddQuestionButtonComponent, QuestionBannerComponent, JsonErrorItemComponent, QuestionTextWithResetComponent,
3297
+ BooleanSwitchComponent, TranslateFromAction, AddQuestionTypeSelectorComponent],
3252
3298
  imports: [
3253
3299
  i2.CommonModule, i3.FormsModule, i1.SurveyModule
3254
3300
  ],
3255
3301
  exports: [
3256
- CreatorComponent, DesignerTabComponent, PageDesignerComponent, QuestionDesignerComponent, PanelDesignerComponent, TabbledMenuComponent, TabbedMenuItemComponent, TabbedMenuItemWrapperComponent, SidebarComponent, SidebarPageComponent, SidebarPropertyGridHeaderComponent, PropertyGridPlaceholderComponent, SidebarPropertyGridPlaceholderHeaderComponent, TabControlComponent, TabsComponent, TabButtonComponent, ObjectSelectorComponent, PropertyGridComponent, SearchComponent, TextareaJsonEditorComponent, AceJsonEditorComponent, LogicTabComponent, LogicAddButtonComponent, ActionButtonComponent, QuestionPgErrorComponent, SwitcherComponent, LinkValueQuestionComponent, EmbeddedSurveyQuestionComponent, TranslationTabComponent, TranslationSkeletonComponent, SimulatorComponent, TestTabComponent, TestAgainActionComponent, SurveyResultsComponent, SurveyResultsTableRowComponent, ThemeTabComponent,
3302
+ CreatorComponent, DesignerTabComponent, PageDesignerComponent, QuestionDesignerComponent, PanelDesignerComponent, TabbledMenuComponent, TabbedMenuItemComponent, TabbedMenuItemWrapperComponent, SidebarComponent, SidebarPageComponent, SidebarDefaultHeaderComponent, SidebarPropertyGridHeaderComponent, PropertyGridPlaceholderComponent, SidebarHeaderComponent, TabControlComponent, TabsComponent, TabButtonComponent, ObjectSelectorComponent, PropertyGridComponent, SearchComponent, TextareaJsonEditorComponent, AceJsonEditorComponent, LogicTabComponent, LogicAddButtonComponent, ActionButtonComponent, QuestionPgErrorComponent, SwitcherComponent, LinkValueQuestionComponent, EmbeddedSurveyQuestionComponent, TranslationTabComponent, TranslationSkeletonComponent, SimulatorComponent, TestTabComponent, TestAgainActionComponent, SurveyResultsComponent, SurveyResultsTableRowComponent, ThemeTabComponent,
3257
3303
  AdaptiveToolboxComponent, ToolboxToolComponent, ToolboxItemComponent, ToolboxItemGroupComponent, ToolboxListComponent, ToolboxCategoryComponent, StringEditorComponent, PageNavigatorComponent, PageNavigatorItemComponent,
3258
3304
  QuestionDropdownDesignerComponent, QuestionDropdownAdornerDesignerComponent, QuestionImageDesignerComponent, QuestionImageAdornerDesignerComponent,
3259
3305
  ItemValueDesignerComponent, ImageItemValueDesignerComponent, LogicOperatorComponent, MatrixCellComponent, QuestionEditorComponent, CellQuestionDropdownComponent, CreatorRowComponent, DesignerPagesComponent, DesignerSurveyComponent, CellQuestionComponent, QuestionWidgetDesignerComponent, ToolboxComponent, CreatorLogoImageComponent,
3260
- QuestionRatingAdornerDesignerComponent, QuestionRatingDesignerComponent, QuestionSpinEditorComponent, ColorItemComponent, QuestionColorComponent, QuestionFileEditorComponent, AddQuestionButtonComponent, AddQuestionTypeSelectorComponent, QuestionBannerComponent, JsonErrorItemComponent, QuestionTextWithResetComponent, TranslateFromAction
3306
+ QuestionRatingAdornerDesignerComponent, QuestionRatingDesignerComponent, QuestionSpinEditorComponent, ColorItemComponent, QuestionColorComponent, QuestionFileEditorComponent, AddQuestionButtonComponent, QuestionBannerComponent, JsonErrorItemComponent, QuestionTextWithResetComponent, BooleanSwitchComponent, TranslateFromAction,
3307
+ AddQuestionTypeSelectorComponent
3261
3308
  ],
3262
3309
  providers: [],
3263
3310
  }]
@@ -3272,6 +3319,7 @@
3272
3319
  exports.AdaptiveToolboxComponent = AdaptiveToolboxComponent;
3273
3320
  exports.AddQuestionButtonComponent = AddQuestionButtonComponent;
3274
3321
  exports.AddQuestionTypeSelectorComponent = AddQuestionTypeSelectorComponent;
3322
+ exports.BooleanSwitchComponent = BooleanSwitchComponent;
3275
3323
  exports.CellQuestionComponent = CellQuestionComponent;
3276
3324
  exports.CellQuestionDropdownComponent = CellQuestionDropdownComponent;
3277
3325
  exports.ColorItemComponent = ColorItemComponent;
@@ -3314,9 +3362,10 @@
3314
3362
  exports.QuestionWidgetDesignerComponent = QuestionWidgetDesignerComponent;
3315
3363
  exports.SearchComponent = SearchComponent;
3316
3364
  exports.SidebarComponent = SidebarComponent;
3365
+ exports.SidebarDefaultHeaderComponent = SidebarDefaultHeaderComponent;
3366
+ exports.SidebarHeaderComponent = SidebarHeaderComponent;
3317
3367
  exports.SidebarPageComponent = SidebarPageComponent;
3318
3368
  exports.SidebarPropertyGridHeaderComponent = SidebarPropertyGridHeaderComponent;
3319
- exports.SidebarPropertyGridPlaceholderHeaderComponent = SidebarPropertyGridPlaceholderHeaderComponent;
3320
3369
  exports.SimulatorComponent = SimulatorComponent;
3321
3370
  exports.StringEditorComponent = StringEditorComponent;
3322
3371
  exports.SurveyCreatorModule = SurveyCreatorModule;