survey-angular-ui 1.9.47 → 1.9.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/angular-ui.d.ts +68 -5
- package/angular-ui.module.d.ts +81 -80
- package/esm2020/angular-ui.mjs +69 -6
- package/esm2020/angular-ui.module.mjs +32 -5
- package/esm2020/components/list/list-item.component.mjs +8 -7
- package/esm2020/survey-content.component.mjs +46 -0
- package/esm2020/survey.component.mjs +8 -30
- package/esm2020/utils/dynamic.directive.mjs +3 -1
- package/fesm2015/survey-angular-ui.mjs +115 -67
- package/fesm2015/survey-angular-ui.mjs.map +1 -1
- package/fesm2020/survey-angular-ui.mjs +115 -67
- package/fesm2020/survey-angular-ui.mjs.map +1 -1
- package/package.json +6 -2
- package/survey-content.component.d.ts +15 -0
- package/survey.component.d.ts +2 -6
package/angular-ui.d.ts
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
export * from "./survey.component";
|
|
2
|
+
export * from "./survey-content.component";
|
|
2
3
|
export * from "./popup.survey.component";
|
|
3
4
|
export * from "./page.component";
|
|
4
5
|
export * from "./question.component";
|
|
5
6
|
export * from "./string-viewer.component";
|
|
6
|
-
export * from "./components/popup/popup.service";
|
|
7
7
|
export * from "./components/popup/popup.component";
|
|
8
8
|
export * from "./components/popup/popup-container.component";
|
|
9
9
|
export * from "./components/skeleton.component";
|
|
10
10
|
export * from "./components/dropdown/dropdown.component";
|
|
11
|
-
export * from "./components/tagbox/tagbox.component";
|
|
12
11
|
export * from "./components/tagbox/tagbox-item.component";
|
|
12
|
+
export * from "./components/tagbox/tagbox.component";
|
|
13
|
+
export * from "./components/renderAs/dropdown-select/dropdown-option-item.component";
|
|
14
|
+
export * from "./components/renderAs/dropdown-select/dropdown-select.component";
|
|
13
15
|
export * from "./questions/text.component";
|
|
14
16
|
export * from "./questions/html.component";
|
|
15
17
|
export * from "./questions/radiogroup.component";
|
|
@@ -17,12 +19,73 @@ export * from "./questions/radiogroup-item.component";
|
|
|
17
19
|
export * from "./questions/checkbox.component";
|
|
18
20
|
export * from "./questions/checkbox-item.component";
|
|
19
21
|
export * from "./questions/dropdown.component";
|
|
20
|
-
export * from "./
|
|
21
|
-
export * from "./component
|
|
22
|
+
export * from "./questions/tagbox.component";
|
|
23
|
+
export * from "./questions/rating.component";
|
|
24
|
+
export * from "./questions/boolean.component";
|
|
25
|
+
export * from "./questions/imagepicker-item.component";
|
|
26
|
+
export * from "./questions/imagepicker.component";
|
|
27
|
+
export * from "./question";
|
|
22
28
|
export * from "./components/action-bar/action-bar.component";
|
|
23
29
|
export * from "./components/action-bar/action.component";
|
|
24
30
|
export * from "./components/action-bar/action-bar-item.component";
|
|
25
31
|
export * from "./components/action-bar/action-bar-item-dropdown.component";
|
|
26
|
-
export * from "./
|
|
32
|
+
export * from "./questions/selectbase-item";
|
|
33
|
+
export * from "./questions/selectbase.component";
|
|
34
|
+
export * from "./comment.component";
|
|
35
|
+
export * from "./components/element-header/element-header.component";
|
|
36
|
+
export * from "./components/element-title/element-title.component";
|
|
37
|
+
export * from "./components/survey-header/survey-header.component";
|
|
38
|
+
export * from "./components/element-title/dynamic-head.component";
|
|
27
39
|
export * from "./components/list/list.component";
|
|
40
|
+
export * from "./components/list/list-item.component";
|
|
41
|
+
export * from "./row.component";
|
|
42
|
+
export * from "./components/renderAs/rating-dropdown/rating-dropdown.component";
|
|
43
|
+
export * from "./components/renderAs/boolean-checkbox/boolean-checkbox.component";
|
|
44
|
+
export * from "./components/renderAs/boolean-radio/boolean-radio.component";
|
|
45
|
+
export * from "./components/renderAs/boolean-radio/boolean-radio-item.component";
|
|
46
|
+
export * from "./components/progress/default/progress.component";
|
|
47
|
+
export * from "./components/progress/buttons/progress.component";
|
|
48
|
+
export * from "./panel.component";
|
|
49
|
+
export * from "./components/popup/popup.service";
|
|
50
|
+
export * from "./components/survey-actions/survey-nav-btn.component";
|
|
51
|
+
export * from "./questions/matrix.component";
|
|
28
52
|
export * from "./components/svg-icon/svg-icon.component";
|
|
53
|
+
export * from "./questions/file.component";
|
|
54
|
+
export * from "./utils/ng-show.directive";
|
|
55
|
+
export * from "./utils/ng-key2click.directive";
|
|
56
|
+
export * from "./utils/safe-url.pipe";
|
|
57
|
+
export * from "./utils/safe-html.pipe";
|
|
58
|
+
export * from "./questions/comment.component";
|
|
59
|
+
export * from "./questions/signature.component";
|
|
60
|
+
export * from "./questions/multipletext.component";
|
|
61
|
+
export * from "./errors.component";
|
|
62
|
+
export * from "./questions/multipletextitem.component";
|
|
63
|
+
export * from "./utils/dynamic.directive";
|
|
64
|
+
export * from "./questions/ranking.component";
|
|
65
|
+
export * from "./questions/ranking-item.component";
|
|
66
|
+
export * from "./survey-string.component";
|
|
67
|
+
export * from "./string-editor.component";
|
|
68
|
+
export * from "./components/paneldynamic-actions/paneldynamic-add-btn.component";
|
|
69
|
+
export * from "./components/paneldynamic-actions/paneldynamic-next-btn.component";
|
|
70
|
+
export * from "./components/paneldynamic-actions/paneldynamic-prev-btn.component";
|
|
71
|
+
export * from "./components/paneldynamic-actions/paneldynamic-progress-text.component";
|
|
72
|
+
export * from "./questions/paneldynamic.component";
|
|
73
|
+
export * from "./embedded-view-content.component";
|
|
74
|
+
export * from "./element.component";
|
|
75
|
+
export * from "./questions/customwidget.component";
|
|
76
|
+
export * from "./questions/matrixcell.component";
|
|
77
|
+
export * from "./questions/matrixtable.component";
|
|
78
|
+
export * from "./questions/matrixdropdown.component";
|
|
79
|
+
export * from "./questions/matrixdynamic.component";
|
|
80
|
+
export * from "./components/matrix-actions/remove-button/remove-button.component";
|
|
81
|
+
export * from "./components/matrix-actions/drag-drop-icon/drag-drop-icon";
|
|
82
|
+
export * from "./components/matrix-actions/detail-button/detail-button.component";
|
|
83
|
+
export * from "./questions/matrixrequiredheader.component";
|
|
84
|
+
export * from "./questions/expression.component";
|
|
85
|
+
export * from "./questions/image.component";
|
|
86
|
+
export * from "./components/brand-info/brand-info.component";
|
|
87
|
+
export * from "./questions/custom.component";
|
|
88
|
+
export * from "./questions/composite.component";
|
|
89
|
+
export * from "./base-angular";
|
|
90
|
+
export * from "./component-factory";
|
|
91
|
+
export * from "./angular-ui.module";
|
package/angular-ui.module.d.ts
CHANGED
|
@@ -7,87 +7,88 @@ import * as i5 from "./components/paneldynamic-actions/paneldynamic-prev-btn.com
|
|
|
7
7
|
import * as i6 from "./components/paneldynamic-actions/paneldynamic-progress-text.component";
|
|
8
8
|
import * as i7 from "./element.component";
|
|
9
9
|
import * as i8 from "./survey.component";
|
|
10
|
-
import * as i9 from "./
|
|
11
|
-
import * as i10 from "./
|
|
12
|
-
import * as i11 from "./
|
|
13
|
-
import * as i12 from "./
|
|
14
|
-
import * as i13 from "./
|
|
15
|
-
import * as i14 from "./
|
|
16
|
-
import * as i15 from "./string
|
|
17
|
-
import * as i16 from "./
|
|
18
|
-
import * as i17 from "./
|
|
19
|
-
import * as i18 from "./questions/
|
|
20
|
-
import * as i19 from "./questions/radiogroup
|
|
21
|
-
import * as i20 from "./questions/
|
|
22
|
-
import * as i21 from "./questions/checkbox
|
|
23
|
-
import * as i22 from "./
|
|
24
|
-
import * as i23 from "./
|
|
25
|
-
import * as i24 from "./
|
|
26
|
-
import * as i25 from "./components/renderAs/dropdown-select/dropdown-
|
|
27
|
-
import * as i26 from "./components/
|
|
28
|
-
import * as i27 from "./components/popup/popup
|
|
29
|
-
import * as i28 from "./components/
|
|
30
|
-
import * as i29 from "./components/list/list
|
|
31
|
-
import * as i30 from "./components/
|
|
32
|
-
import * as i31 from "./
|
|
33
|
-
import * as i32 from "./
|
|
34
|
-
import * as i33 from "./components/
|
|
35
|
-
import * as i34 from "./components/action-bar/action.component";
|
|
36
|
-
import * as i35 from "./components/action-bar/action
|
|
37
|
-
import * as i36 from "./components/action-bar/action-bar-item
|
|
38
|
-
import * as i37 from "./
|
|
39
|
-
import * as i38 from "./questions/
|
|
40
|
-
import * as i39 from "./questions/selectbase
|
|
41
|
-
import * as i40 from "./
|
|
42
|
-
import * as i41 from "./
|
|
43
|
-
import * as i42 from "./components/element-
|
|
44
|
-
import * as i43 from "./components/element-title/
|
|
45
|
-
import * as i44 from "./
|
|
46
|
-
import * as i45 from "./
|
|
47
|
-
import * as i46 from "./
|
|
48
|
-
import * as i47 from "./
|
|
49
|
-
import * as i48 from "./
|
|
50
|
-
import * as i49 from "./components/renderAs/boolean-
|
|
51
|
-
import * as i50 from "./components/renderAs/boolean-radio/boolean-radio
|
|
52
|
-
import * as i51 from "./
|
|
53
|
-
import * as i52 from "./questions/imagepicker.component";
|
|
54
|
-
import * as i53 from "./questions/
|
|
55
|
-
import * as i54 from "./
|
|
56
|
-
import * as i55 from "./components/
|
|
57
|
-
import * as i56 from "./components/progress/
|
|
58
|
-
import * as i57 from "./components/
|
|
59
|
-
import * as i58 from "./
|
|
60
|
-
import * as i59 from "./
|
|
61
|
-
import * as i60 from "./
|
|
62
|
-
import * as i61 from "./
|
|
63
|
-
import * as i62 from "./utils/safe-
|
|
64
|
-
import * as i63 from "./
|
|
65
|
-
import * as i64 from "./questions/
|
|
66
|
-
import * as i65 from "./
|
|
67
|
-
import * as i66 from "./
|
|
68
|
-
import * as i67 from "./questions/
|
|
69
|
-
import * as i68 from "./
|
|
70
|
-
import * as i69 from "./
|
|
71
|
-
import * as i70 from "./questions/ranking
|
|
72
|
-
import * as i71 from "./questions/
|
|
73
|
-
import * as i72 from "./
|
|
74
|
-
import * as i73 from "./
|
|
75
|
-
import * as i74 from "./questions/
|
|
76
|
-
import * as i75 from "./questions/
|
|
77
|
-
import * as i76 from "./questions/
|
|
78
|
-
import * as i77 from "./questions/
|
|
79
|
-
import * as i78 from "./
|
|
80
|
-
import * as i79 from "./components/matrix-actions/
|
|
81
|
-
import * as i80 from "./components/matrix-actions/
|
|
82
|
-
import * as i81 from "./
|
|
83
|
-
import * as i82 from "./questions/
|
|
84
|
-
import * as i83 from "./
|
|
85
|
-
import * as i84 from "./
|
|
86
|
-
import * as i85 from "./questions/
|
|
87
|
-
import * as i86 from "
|
|
88
|
-
import * as i87 from "@angular/
|
|
10
|
+
import * as i9 from "./survey-content.component";
|
|
11
|
+
import * as i10 from "./popup.survey.component";
|
|
12
|
+
import * as i11 from "./page.component";
|
|
13
|
+
import * as i12 from "./panel.component";
|
|
14
|
+
import * as i13 from "./question.component";
|
|
15
|
+
import * as i14 from "./string-viewer.component";
|
|
16
|
+
import * as i15 from "./survey-string.component";
|
|
17
|
+
import * as i16 from "./string-editor.component";
|
|
18
|
+
import * as i17 from "./components/skeleton.component";
|
|
19
|
+
import * as i18 from "./questions/text.component";
|
|
20
|
+
import * as i19 from "./questions/radiogroup.component";
|
|
21
|
+
import * as i20 from "./questions/radiogroup-item.component";
|
|
22
|
+
import * as i21 from "./questions/checkbox.component";
|
|
23
|
+
import * as i22 from "./questions/checkbox-item.component";
|
|
24
|
+
import * as i23 from "./components/dropdown/dropdown.component";
|
|
25
|
+
import * as i24 from "./questions/dropdown.component";
|
|
26
|
+
import * as i25 from "./components/renderAs/dropdown-select/dropdown-select.component";
|
|
27
|
+
import * as i26 from "./components/renderAs/dropdown-select/dropdown-option-item.component";
|
|
28
|
+
import * as i27 from "./components/popup/popup.component";
|
|
29
|
+
import * as i28 from "./components/popup/popup-container.component";
|
|
30
|
+
import * as i29 from "./components/list/list.component";
|
|
31
|
+
import * as i30 from "./components/list/list-item.component";
|
|
32
|
+
import * as i31 from "./components/tagbox/tagbox.component";
|
|
33
|
+
import * as i32 from "./questions/tagbox.component";
|
|
34
|
+
import * as i33 from "./components/tagbox/tagbox-item.component";
|
|
35
|
+
import * as i34 from "./components/action-bar/action-bar.component";
|
|
36
|
+
import * as i35 from "./components/action-bar/action.component";
|
|
37
|
+
import * as i36 from "./components/action-bar/action-bar-item.component";
|
|
38
|
+
import * as i37 from "./components/action-bar/action-bar-item-dropdown.component";
|
|
39
|
+
import * as i38 from "./questions/html.component";
|
|
40
|
+
import * as i39 from "./questions/selectbase-item";
|
|
41
|
+
import * as i40 from "./questions/selectbase.component";
|
|
42
|
+
import * as i41 from "./comment.component";
|
|
43
|
+
import * as i42 from "./components/element-header/element-header.component";
|
|
44
|
+
import * as i43 from "./components/element-title/element-title.component";
|
|
45
|
+
import * as i44 from "./components/element-title/dynamic-head.component";
|
|
46
|
+
import * as i45 from "./row.component";
|
|
47
|
+
import * as i46 from "./questions/rating.component";
|
|
48
|
+
import * as i47 from "./components/renderAs/rating-dropdown/rating-dropdown.component";
|
|
49
|
+
import * as i48 from "./questions/boolean.component";
|
|
50
|
+
import * as i49 from "./components/renderAs/boolean-checkbox/boolean-checkbox.component";
|
|
51
|
+
import * as i50 from "./components/renderAs/boolean-radio/boolean-radio.component";
|
|
52
|
+
import * as i51 from "./components/renderAs/boolean-radio/boolean-radio-item.component";
|
|
53
|
+
import * as i52 from "./questions/imagepicker-item.component";
|
|
54
|
+
import * as i53 from "./questions/imagepicker.component";
|
|
55
|
+
import * as i54 from "./questions/image.component";
|
|
56
|
+
import * as i55 from "./components/survey-header/survey-header.component";
|
|
57
|
+
import * as i56 from "./components/progress/default/progress.component";
|
|
58
|
+
import * as i57 from "./components/progress/buttons/progress.component";
|
|
59
|
+
import * as i58 from "./components/survey-actions/survey-nav-btn.component";
|
|
60
|
+
import * as i59 from "./questions/matrix.component";
|
|
61
|
+
import * as i60 from "./components/svg-icon/svg-icon.component";
|
|
62
|
+
import * as i61 from "./questions/file.component";
|
|
63
|
+
import * as i62 from "./utils/safe-url.pipe";
|
|
64
|
+
import * as i63 from "./utils/safe-html.pipe";
|
|
65
|
+
import * as i64 from "./questions/comment.component";
|
|
66
|
+
import * as i65 from "./questions/signature.component";
|
|
67
|
+
import * as i66 from "./errors.component";
|
|
68
|
+
import * as i67 from "./questions/multipletext.component";
|
|
69
|
+
import * as i68 from "./questions/multipletextitem.component";
|
|
70
|
+
import * as i69 from "./utils/dynamic.directive";
|
|
71
|
+
import * as i70 from "./questions/ranking.component";
|
|
72
|
+
import * as i71 from "./questions/ranking-item.component";
|
|
73
|
+
import * as i72 from "./questions/paneldynamic.component";
|
|
74
|
+
import * as i73 from "./embedded-view-content.component";
|
|
75
|
+
import * as i74 from "./questions/customwidget.component";
|
|
76
|
+
import * as i75 from "./questions/matrixcell.component";
|
|
77
|
+
import * as i76 from "./questions/matrixtable.component";
|
|
78
|
+
import * as i77 from "./questions/matrixdropdown.component";
|
|
79
|
+
import * as i78 from "./questions/matrixdynamic.component";
|
|
80
|
+
import * as i79 from "./components/matrix-actions/detail-button/detail-button.component";
|
|
81
|
+
import * as i80 from "./components/matrix-actions/remove-button/remove-button.component";
|
|
82
|
+
import * as i81 from "./components/matrix-actions/drag-drop-icon/drag-drop-icon";
|
|
83
|
+
import * as i82 from "./questions/matrixrequiredheader.component";
|
|
84
|
+
import * as i83 from "./questions/expression.component";
|
|
85
|
+
import * as i84 from "./components/brand-info/brand-info.component";
|
|
86
|
+
import * as i85 from "./questions/custom.component";
|
|
87
|
+
import * as i86 from "./questions/composite.component";
|
|
88
|
+
import * as i87 from "@angular/common";
|
|
89
|
+
import * as i88 from "@angular/forms";
|
|
89
90
|
export declare class SurveyAngularModule {
|
|
90
91
|
static ɵfac: i0.ɵɵFactoryDeclaration<SurveyAngularModule, never>;
|
|
91
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SurveyAngularModule, [typeof i1.VisibleDirective, typeof i2.Key2ClickDirective, typeof i3.PanelDynamicAddBtn, typeof i4.PanelDynamicNextBtn, typeof i5.PanelDynamicPrevBtn, typeof i6.PanelDynamicProgressText, typeof i7.ElementComponent, typeof i8.SurveyComponent, typeof i9.
|
|
92
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SurveyAngularModule, [typeof i1.VisibleDirective, typeof i2.Key2ClickDirective, typeof i3.PanelDynamicAddBtn, typeof i4.PanelDynamicNextBtn, typeof i5.PanelDynamicPrevBtn, typeof i6.PanelDynamicProgressText, typeof i7.ElementComponent, typeof i8.SurveyComponent, typeof i9.SurveyContentComponent, typeof i10.PopupSurveyComponent, typeof i11.PageComponent, typeof i12.PanelComponent, typeof i13.QuestionComponent, typeof i14.StringViewerComponent, typeof i15.SurveyStringComponent, typeof i16.StringEditorComponent, typeof i17.QuestionSkeletonComponent, typeof i18.TextQuestionComponent, typeof i19.RadiogroupComponent, typeof i20.RadiogroupItemComponent, typeof i21.CheckboxComponent, typeof i22.CheckboxItemComponent, typeof i23.DropdownComponent, typeof i24.DropdownQuestionComponent, typeof i25.DropdownSelectComponent, typeof i26.DropdownOptionItemComponent, typeof i27.PopupComponent, typeof i28.PopupContainerComponent, typeof i29.ListComponent, typeof i30.ListItemComponent, typeof i31.TagboxComponent, typeof i32.TagboxQuestionComponent, typeof i33.TagboxItemComponent, typeof i34.ActionBarComponent, typeof i35.ActionComponent, typeof i36.ActionBarItemComponent, typeof i37.ActionBarItemDropdownComponent, typeof i38.HtmlQuestionComponent, typeof i39.SelectBaseItemComponent, typeof i40.SelectBaseComponent, typeof i41.SurveyCommentComponent, typeof i42.ElementHeaderComponent, typeof i43.ElementTitleComponent, typeof i44.DynamicHeadComponent, typeof i45.RowComponent, typeof i46.RatingQuestionComponent, typeof i47.RatingDropdownComponent, typeof i48.BooleanQuestionComponent, typeof i49.BooleanCheckboxComponent, typeof i50.BooleanRadioComponent, typeof i51.BooleanRadioItemComponent, typeof i52.ImagePickerItemComponent, typeof i53.ImagePickerQuestionComponent, typeof i54.ImageQuestionComponent, typeof i55.SurveyHeaderComponent, typeof i56.ProgressDefaultComponent, typeof i57.ProgressButtonsComponent, typeof i58.SurveyNavigationButton, typeof i59.MatrixQuestionComponent, typeof i60.SvgIconComponent, typeof i61.FileQuestionComponent, typeof i62.SafeUrlPipe, typeof i63.SafeHtmlPipe, typeof i64.CommentQuestionComponent, typeof i65.SignaturePadQuestionComponent, typeof i66.ErrorsComponent, typeof i67.MultipleTextComponent, typeof i68.MultipleTextItemComponent, typeof i69.DynamicComponentDirective, typeof i70.RankingQuestionComponent, typeof i71.RankingItemComponent, typeof i72.PanelDynamicQuestionComponent, typeof i73.EmbeddedViewContentComponent, typeof i74.CustomWidgetComponent, typeof i75.MatrixCellComponent, typeof i76.MatrixTableComponent, typeof i77.MatrixDropdownComponent, typeof i78.MatrixDynamicComponent, typeof i79.MatrixDetailButtonComponent, typeof i80.MatrixDynamicRemoveButtonComponent, typeof i81.MatrixDynamicDragDropIconComponent, typeof i82.MatrixRequiredHeader, typeof i83.ExpressionComponent, typeof i62.SafeResourceUrlPipe, typeof i84.BrandInfoComponent, typeof i85.CustomQuestionComponent, typeof i86.CompositeQuestionComponent], [typeof i87.CommonModule, typeof i88.FormsModule], [typeof i1.VisibleDirective, typeof i2.Key2ClickDirective, typeof i3.PanelDynamicAddBtn, typeof i4.PanelDynamicNextBtn, typeof i5.PanelDynamicPrevBtn, typeof i6.PanelDynamicProgressText, typeof i7.ElementComponent, typeof i8.SurveyComponent, typeof i9.SurveyContentComponent, typeof i10.PopupSurveyComponent, typeof i11.PageComponent, typeof i12.PanelComponent, typeof i13.QuestionComponent, typeof i14.StringViewerComponent, typeof i15.SurveyStringComponent, typeof i16.StringEditorComponent, typeof i17.QuestionSkeletonComponent, typeof i18.TextQuestionComponent, typeof i19.RadiogroupComponent, typeof i20.RadiogroupItemComponent, typeof i21.CheckboxComponent, typeof i22.CheckboxItemComponent, typeof i23.DropdownComponent, typeof i24.DropdownQuestionComponent, typeof i25.DropdownSelectComponent, typeof i26.DropdownOptionItemComponent, typeof i27.PopupComponent, typeof i28.PopupContainerComponent, typeof i29.ListComponent, typeof i30.ListItemComponent, typeof i31.TagboxComponent, typeof i32.TagboxQuestionComponent, typeof i33.TagboxItemComponent, typeof i34.ActionBarComponent, typeof i35.ActionComponent, typeof i36.ActionBarItemComponent, typeof i37.ActionBarItemDropdownComponent, typeof i38.HtmlQuestionComponent, typeof i39.SelectBaseItemComponent, typeof i40.SelectBaseComponent, typeof i41.SurveyCommentComponent, typeof i42.ElementHeaderComponent, typeof i43.ElementTitleComponent, typeof i44.DynamicHeadComponent, typeof i45.RowComponent, typeof i46.RatingQuestionComponent, typeof i47.RatingDropdownComponent, typeof i48.BooleanQuestionComponent, typeof i49.BooleanCheckboxComponent, typeof i50.BooleanRadioComponent, typeof i51.BooleanRadioItemComponent, typeof i52.ImagePickerItemComponent, typeof i53.ImagePickerQuestionComponent, typeof i54.ImageQuestionComponent, typeof i55.SurveyHeaderComponent, typeof i56.ProgressDefaultComponent, typeof i57.ProgressButtonsComponent, typeof i58.SurveyNavigationButton, typeof i59.MatrixQuestionComponent, typeof i60.SvgIconComponent, typeof i61.FileQuestionComponent, typeof i62.SafeUrlPipe, typeof i63.SafeHtmlPipe, typeof i64.CommentQuestionComponent, typeof i65.SignaturePadQuestionComponent, typeof i66.ErrorsComponent, typeof i67.MultipleTextComponent, typeof i68.MultipleTextItemComponent, typeof i69.DynamicComponentDirective, typeof i70.RankingQuestionComponent, typeof i71.RankingItemComponent, typeof i72.PanelDynamicQuestionComponent, typeof i73.EmbeddedViewContentComponent, typeof i74.CustomWidgetComponent, typeof i75.MatrixCellComponent, typeof i76.MatrixTableComponent, typeof i77.MatrixDropdownComponent, typeof i78.MatrixDynamicComponent, typeof i79.MatrixDetailButtonComponent, typeof i80.MatrixDynamicRemoveButtonComponent, typeof i81.MatrixDynamicDragDropIconComponent, typeof i82.MatrixRequiredHeader, typeof i83.ExpressionComponent, typeof i62.SafeResourceUrlPipe, typeof i84.BrandInfoComponent, typeof i85.CustomQuestionComponent, typeof i86.CompositeQuestionComponent]>;
|
|
92
93
|
static ɵinj: i0.ɵɵInjectorDeclaration<SurveyAngularModule>;
|
|
93
94
|
}
|
package/esm2020/angular-ui.mjs
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
export * from "./survey.component";
|
|
2
|
+
export * from "./survey-content.component";
|
|
2
3
|
export * from "./popup.survey.component";
|
|
3
4
|
export * from "./page.component";
|
|
4
5
|
export * from "./question.component";
|
|
5
6
|
export * from "./string-viewer.component";
|
|
6
|
-
export * from "./components/popup/popup.service";
|
|
7
7
|
export * from "./components/popup/popup.component";
|
|
8
8
|
export * from "./components/popup/popup-container.component";
|
|
9
9
|
export * from "./components/skeleton.component";
|
|
10
10
|
export * from "./components/dropdown/dropdown.component";
|
|
11
|
-
export * from "./components/tagbox/tagbox.component";
|
|
12
11
|
export * from "./components/tagbox/tagbox-item.component";
|
|
12
|
+
export * from "./components/tagbox/tagbox.component";
|
|
13
|
+
export * from "./components/renderAs/dropdown-select/dropdown-option-item.component";
|
|
14
|
+
export * from "./components/renderAs/dropdown-select/dropdown-select.component";
|
|
13
15
|
export * from "./questions/text.component";
|
|
14
16
|
export * from "./questions/html.component";
|
|
15
17
|
export * from "./questions/radiogroup.component";
|
|
@@ -17,13 +19,74 @@ export * from "./questions/radiogroup-item.component";
|
|
|
17
19
|
export * from "./questions/checkbox.component";
|
|
18
20
|
export * from "./questions/checkbox-item.component";
|
|
19
21
|
export * from "./questions/dropdown.component";
|
|
20
|
-
export * from "./
|
|
21
|
-
export * from "./component
|
|
22
|
+
export * from "./questions/tagbox.component";
|
|
23
|
+
export * from "./questions/rating.component";
|
|
24
|
+
export * from "./questions/boolean.component";
|
|
25
|
+
export * from "./questions/imagepicker-item.component";
|
|
26
|
+
export * from "./questions/imagepicker.component";
|
|
27
|
+
export * from "./question";
|
|
22
28
|
export * from "./components/action-bar/action-bar.component";
|
|
23
29
|
export * from "./components/action-bar/action.component";
|
|
24
30
|
export * from "./components/action-bar/action-bar-item.component";
|
|
25
31
|
export * from "./components/action-bar/action-bar-item-dropdown.component";
|
|
26
|
-
export * from "./
|
|
32
|
+
export * from "./questions/selectbase-item";
|
|
33
|
+
export * from "./questions/selectbase.component";
|
|
34
|
+
export * from "./comment.component";
|
|
35
|
+
export * from "./components/element-header/element-header.component";
|
|
36
|
+
export * from "./components/element-title/element-title.component";
|
|
37
|
+
export * from "./components/survey-header/survey-header.component";
|
|
38
|
+
export * from "./components/element-title/dynamic-head.component";
|
|
27
39
|
export * from "./components/list/list.component";
|
|
40
|
+
export * from "./components/list/list-item.component";
|
|
41
|
+
export * from "./row.component";
|
|
42
|
+
export * from "./components/renderAs/rating-dropdown/rating-dropdown.component";
|
|
43
|
+
export * from "./components/renderAs/boolean-checkbox/boolean-checkbox.component";
|
|
44
|
+
export * from "./components/renderAs/boolean-radio/boolean-radio.component";
|
|
45
|
+
export * from "./components/renderAs/boolean-radio/boolean-radio-item.component";
|
|
46
|
+
export * from "./components/progress/default/progress.component";
|
|
47
|
+
export * from "./components/progress/buttons/progress.component";
|
|
48
|
+
export * from "./panel.component";
|
|
49
|
+
export * from "./components/popup/popup.service";
|
|
50
|
+
export * from "./components/survey-actions/survey-nav-btn.component";
|
|
51
|
+
export * from "./questions/matrix.component";
|
|
28
52
|
export * from "./components/svg-icon/svg-icon.component";
|
|
29
|
-
|
|
53
|
+
export * from "./questions/file.component";
|
|
54
|
+
export * from "./utils/ng-show.directive";
|
|
55
|
+
export * from "./utils/ng-key2click.directive";
|
|
56
|
+
export * from "./utils/safe-url.pipe";
|
|
57
|
+
export * from "./utils/safe-html.pipe";
|
|
58
|
+
export * from "./questions/comment.component";
|
|
59
|
+
export * from "./questions/signature.component";
|
|
60
|
+
export * from "./questions/multipletext.component";
|
|
61
|
+
export * from "./errors.component";
|
|
62
|
+
export * from "./questions/multipletextitem.component";
|
|
63
|
+
export * from "./utils/dynamic.directive";
|
|
64
|
+
export * from "./questions/ranking.component";
|
|
65
|
+
export * from "./questions/ranking-item.component";
|
|
66
|
+
export * from "./survey-string.component";
|
|
67
|
+
export * from "./string-editor.component";
|
|
68
|
+
export * from "./components/paneldynamic-actions/paneldynamic-add-btn.component";
|
|
69
|
+
export * from "./components/paneldynamic-actions/paneldynamic-next-btn.component";
|
|
70
|
+
export * from "./components/paneldynamic-actions/paneldynamic-prev-btn.component";
|
|
71
|
+
export * from "./components/paneldynamic-actions/paneldynamic-progress-text.component";
|
|
72
|
+
export * from "./questions/paneldynamic.component";
|
|
73
|
+
export * from "./embedded-view-content.component";
|
|
74
|
+
export * from "./element.component";
|
|
75
|
+
export * from "./questions/customwidget.component";
|
|
76
|
+
export * from "./questions/matrixcell.component";
|
|
77
|
+
export * from "./questions/matrixtable.component";
|
|
78
|
+
export * from "./questions/matrixdropdown.component";
|
|
79
|
+
export * from "./questions/matrixdynamic.component";
|
|
80
|
+
export * from "./components/matrix-actions/remove-button/remove-button.component";
|
|
81
|
+
export * from "./components/matrix-actions/drag-drop-icon/drag-drop-icon";
|
|
82
|
+
export * from "./components/matrix-actions/detail-button/detail-button.component";
|
|
83
|
+
export * from "./questions/matrixrequiredheader.component";
|
|
84
|
+
export * from "./questions/expression.component";
|
|
85
|
+
export * from "./questions/image.component";
|
|
86
|
+
export * from "./components/brand-info/brand-info.component";
|
|
87
|
+
export * from "./questions/custom.component";
|
|
88
|
+
export * from "./questions/composite.component";
|
|
89
|
+
export * from "./base-angular";
|
|
90
|
+
export * from "./component-factory";
|
|
91
|
+
export * from "./angular-ui.module";
|
|
92
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5ndWxhci11aS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3BhY2thZ2VzL3N1cnZleS1hbmd1bGFyLXVpL3NyYy9hbmd1bGFyLXVpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsa0JBQWtCLENBQUM7QUFDakMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYyw4Q0FBOEMsQ0FBQztBQUM3RCxjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMsMENBQTBDLENBQUM7QUFDekQsY0FBYywyQ0FBMkMsQ0FBQztBQUMxRCxjQUFjLHNDQUFzQyxDQUFDO0FBQ3JELGNBQWMsc0VBQXNFLENBQUM7QUFDckYsY0FBYyxpRUFBaUUsQ0FBQztBQUNoRixjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyxxQ0FBcUMsQ0FBQztBQUNwRCxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLCtCQUErQixDQUFDO0FBQzlDLGNBQWMsd0NBQXdDLENBQUM7QUFDdkQsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLFlBQVksQ0FBQztBQUUzQixjQUFjLDhDQUE4QyxDQUFDO0FBQzdELGNBQWMsMENBQTBDLENBQUM7QUFDekQsY0FBYyxtREFBbUQsQ0FBQztBQUNsRSxjQUFjLDREQUE0RCxDQUFDO0FBQzNFLGNBQWMsNkJBQTZCLENBQUM7QUFDNUMsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsc0RBQXNELENBQUM7QUFDckUsY0FBYyxvREFBb0QsQ0FBQztBQUNuRSxjQUFjLG9EQUFvRCxDQUFDO0FBRW5FLGNBQWMsbURBQW1ELENBQUM7QUFDbEUsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxpRUFBaUUsQ0FBQztBQUNoRixjQUFjLG1FQUFtRSxDQUFDO0FBQ2xGLGNBQWMsNkRBQTZELENBQUM7QUFDNUUsY0FBYyxrRUFBa0UsQ0FBQztBQUNqRixjQUFjLGtEQUFrRCxDQUFDO0FBQ2pFLGNBQWMsa0RBQWtELENBQUM7QUFDakUsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsc0RBQXNELENBQUM7QUFDckUsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLDBDQUEwQyxDQUFDO0FBQ3pELGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLCtCQUErQixDQUFDO0FBQzlDLGNBQWMsaUNBQWlDLENBQUM7QUFDaEQsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsd0NBQXdDLENBQUM7QUFDdkQsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLCtCQUErQixDQUFDO0FBQzlDLGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsa0VBQWtFLENBQUM7QUFDakYsY0FBYyxtRUFBbUUsQ0FBQztBQUNsRixjQUFjLG1FQUFtRSxDQUFDO0FBQ2xGLGNBQWMsd0VBQXdFLENBQUM7QUFDdkYsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLG1DQUFtQyxDQUFDO0FBQ2xELGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsbUNBQW1DLENBQUM7QUFDbEQsY0FBYyxzQ0FBc0MsQ0FBQztBQUNyRCxjQUFjLHFDQUFxQyxDQUFDO0FBQ3BELGNBQWMsbUVBQW1FLENBQUM7QUFDbEYsY0FBYywyREFBMkQsQ0FBQztBQUMxRSxjQUFjLG1FQUFtRSxDQUFDO0FBQ2xGLGNBQWMsNENBQTRDLENBQUM7QUFDM0QsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsOENBQThDLENBQUM7QUFDN0QsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMsZ0JBQWdCLENBQUM7QUFFL0IsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLHFCQUFxQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi4vc3VydmV5LmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vc3VydmV5LWNvbnRlbnQuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9wb3B1cC5zdXJ2ZXkuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9wYWdlLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb24uY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9zdHJpbmctdmlld2VyLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9wb3B1cC9wb3B1cC5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvcG9wdXAvcG9wdXAtY29udGFpbmVyLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9za2VsZXRvbi5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvZHJvcGRvd24vZHJvcGRvd24uY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL3RhZ2JveC90YWdib3gtaXRlbS5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvdGFnYm94L3RhZ2JveC5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvcmVuZGVyQXMvZHJvcGRvd24tc2VsZWN0L2Ryb3Bkb3duLW9wdGlvbi1pdGVtLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9yZW5kZXJBcy9kcm9wZG93bi1zZWxlY3QvZHJvcGRvd24tc2VsZWN0LmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb25zL3RleHQuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9xdWVzdGlvbnMvaHRtbC5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9yYWRpb2dyb3VwLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb25zL3JhZGlvZ3JvdXAtaXRlbS5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9jaGVja2JveC5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9jaGVja2JveC1pdGVtLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb25zL2Ryb3Bkb3duLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb25zL3RhZ2JveC5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9yYXRpbmcuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9xdWVzdGlvbnMvYm9vbGVhbi5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9pbWFnZXBpY2tlci1pdGVtLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb25zL2ltYWdlcGlja2VyLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb25cIjtcblxuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9hY3Rpb24tYmFyL2FjdGlvbi1iYXIuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL2FjdGlvbi1iYXIvYWN0aW9uLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9hY3Rpb24tYmFyL2FjdGlvbi1iYXItaXRlbS5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvYWN0aW9uLWJhci9hY3Rpb24tYmFyLWl0ZW0tZHJvcGRvd24uY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9xdWVzdGlvbnMvc2VsZWN0YmFzZS1pdGVtXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9xdWVzdGlvbnMvc2VsZWN0YmFzZS5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbW1lbnQuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL2VsZW1lbnQtaGVhZGVyL2VsZW1lbnQtaGVhZGVyLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9lbGVtZW50LXRpdGxlL2VsZW1lbnQtdGl0bGUuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL3N1cnZleS1oZWFkZXIvc3VydmV5LWhlYWRlci5jb21wb25lbnRcIjtcblxuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9lbGVtZW50LXRpdGxlL2R5bmFtaWMtaGVhZC5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvbGlzdC9saXN0LmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9saXN0L2xpc3QtaXRlbS5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3Jvdy5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvcmVuZGVyQXMvcmF0aW5nLWRyb3Bkb3duL3JhdGluZy1kcm9wZG93bi5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvcmVuZGVyQXMvYm9vbGVhbi1jaGVja2JveC9ib29sZWFuLWNoZWNrYm94LmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9yZW5kZXJBcy9ib29sZWFuLXJhZGlvL2Jvb2xlYW4tcmFkaW8uY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL3JlbmRlckFzL2Jvb2xlYW4tcmFkaW8vYm9vbGVhbi1yYWRpby1pdGVtLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9wcm9ncmVzcy9kZWZhdWx0L3Byb2dyZXNzLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9wcm9ncmVzcy9idXR0b25zL3Byb2dyZXNzLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcGFuZWwuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL3BvcHVwL3BvcHVwLnNlcnZpY2VcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvc3VydmV5LWFjdGlvbnMvc3VydmV5LW5hdi1idG4uY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9xdWVzdGlvbnMvbWF0cml4LmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9zdmctaWNvbi9zdmctaWNvbi5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9maWxlLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vdXRpbHMvbmctc2hvdy5kaXJlY3RpdmVcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3V0aWxzL25nLWtleTJjbGljay5kaXJlY3RpdmVcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3V0aWxzL3NhZmUtdXJsLnBpcGVcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3V0aWxzL3NhZmUtaHRtbC5waXBlXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9xdWVzdGlvbnMvY29tbWVudC5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9zaWduYXR1cmUuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9xdWVzdGlvbnMvbXVsdGlwbGV0ZXh0LmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vZXJyb3JzLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb25zL211bHRpcGxldGV4dGl0ZW0uY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi91dGlscy9keW5hbWljLmRpcmVjdGl2ZVwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb25zL3JhbmtpbmcuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9xdWVzdGlvbnMvcmFua2luZy1pdGVtLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vc3VydmV5LXN0cmluZy5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3N0cmluZy1lZGl0b3IuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL3BhbmVsZHluYW1pYy1hY3Rpb25zL3BhbmVsZHluYW1pYy1hZGQtYnRuLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9wYW5lbGR5bmFtaWMtYWN0aW9ucy9wYW5lbGR5bmFtaWMtbmV4dC1idG4uY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL3BhbmVsZHluYW1pYy1hY3Rpb25zL3BhbmVsZHluYW1pYy1wcmV2LWJ0bi5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2NvbXBvbmVudHMvcGFuZWxkeW5hbWljLWFjdGlvbnMvcGFuZWxkeW5hbWljLXByb2dyZXNzLXRleHQuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9xdWVzdGlvbnMvcGFuZWxkeW5hbWljLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vZW1iZWRkZWQtdmlldy1jb250ZW50LmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vZWxlbWVudC5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9jdXN0b213aWRnZXQuY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9xdWVzdGlvbnMvbWF0cml4Y2VsbC5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9tYXRyaXh0YWJsZS5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9tYXRyaXhkcm9wZG93bi5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9tYXRyaXhkeW5hbWljLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9tYXRyaXgtYWN0aW9ucy9yZW1vdmUtYnV0dG9uL3JlbW92ZS1idXR0b24uY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL21hdHJpeC1hY3Rpb25zL2RyYWctZHJvcC1pY29uL2RyYWctZHJvcC1pY29uXCI7XG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnRzL21hdHJpeC1hY3Rpb25zL2RldGFpbC1idXR0b24vZGV0YWlsLWJ1dHRvbi5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9tYXRyaXhyZXF1aXJlZGhlYWRlci5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL3F1ZXN0aW9ucy9leHByZXNzaW9uLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb25zL2ltYWdlLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vY29tcG9uZW50cy9icmFuZC1pbmZvL2JyYW5kLWluZm8uY29tcG9uZW50XCI7XG5leHBvcnQgKiBmcm9tIFwiLi9xdWVzdGlvbnMvY3VzdG9tLmNvbXBvbmVudFwiO1xuZXhwb3J0ICogZnJvbSBcIi4vcXVlc3Rpb25zL2NvbXBvc2l0ZS5jb21wb25lbnRcIjtcbmV4cG9ydCAqIGZyb20gXCIuL2Jhc2UtYW5ndWxhclwiO1xuXG5leHBvcnQgKiBmcm9tIFwiLi9jb21wb25lbnQtZmFjdG9yeVwiO1xuZXhwb3J0ICogZnJvbSBcIi4vYW5ndWxhci11aS5tb2R1bGVcIjsiXX0=
|