@touchpoll/tp-survey 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. package/README.md +24 -0
  2. package/esm2022/lib/component/answer/answer.additional/answer.additional.component.mjs +49 -0
  3. package/esm2022/lib/component/answer/answer.additional/directive/additional.answer.caption.position/additional.answer.caption.position.directive.mjs +61 -0
  4. package/esm2022/lib/component/answer/answer.end/answer.end.component.mjs +30 -0
  5. package/esm2022/lib/component/answer/answer.info/answer.info.component.mjs +30 -0
  6. package/esm2022/lib/component/answer/answer.lang/answer.lang.component.mjs +22 -0
  7. package/esm2022/lib/component/answer/answer.master/answer.master.component.mjs +55 -0
  8. package/esm2022/lib/component/answer/answer.ms/answer.ms.component.mjs +106 -0
  9. package/esm2022/lib/component/answer/answer.od/answer.od.component.mjs +39 -0
  10. package/esm2022/lib/component/answer/answer.ol/answer.ol.component.mjs +39 -0
  11. package/esm2022/lib/component/answer/answer.sl/answer.sl.component.mjs +131 -0
  12. package/esm2022/lib/component/answer/answer.sl/pipe/as.form.array/as.form.array.pipe.mjs +17 -0
  13. package/esm2022/lib/component/answer/answer.sl/pipe/as.form.control/as.form.control.pipe.mjs +17 -0
  14. package/esm2022/lib/component/answer/answer.ss/answer.ss.component.mjs +51 -0
  15. package/esm2022/lib/component/answer/container.answer/container.answer.component.mjs +317 -0
  16. package/esm2022/lib/component/answer/container.answer/container.answer.validator.mjs +124 -0
  17. package/esm2022/lib/component/navigation.button/navigation.button.component.mjs +21 -0
  18. package/esm2022/lib/component/question.caption/question.caption.component.mjs +15 -0
  19. package/esm2022/lib/component/survey.play/survey.play.component.mjs +131 -0
  20. package/esm2022/lib/component/survey.question.preview/survey.question.preview.component.mjs +44 -0
  21. package/esm2022/lib/core/tp.servey.quota/tp.survey.quota.mjs +82 -0
  22. package/esm2022/lib/core/tp.survey.answer/tp.survey.answer.mjs +30 -0
  23. package/esm2022/lib/core/tp.survey.core/tp.survey.core.service.mjs +370 -0
  24. package/esm2022/lib/core/tp.survey.interview/tp.survey.interview.service.mjs +70 -0
  25. package/esm2022/lib/core/tp.survey.logic/tp.survey.logic.service.mjs +43 -0
  26. package/esm2022/lib/directive/alternatives.container/alternatives.container.directive.mjs +130 -0
  27. package/esm2022/lib/directive/focus.and.select/focus.and.select.directive.mjs +27 -0
  28. package/esm2022/lib/directive/survey.theme/survey.theme.directive.mjs +53 -0
  29. package/esm2022/lib/directive/update.font.size/update.font.size.directive.mjs +28 -0
  30. package/esm2022/lib/icons/default.icons/default.icons.mjs +15 -0
  31. package/esm2022/lib/icons/default.icons/default.icons.module.mjs +31 -0
  32. package/esm2022/lib/pipe/get.active.language/get.active.language.pipe.mjs +17 -0
  33. package/esm2022/lib/pipe/get.additional.value.by.value/get.additional.value.by.value.pipe.mjs +18 -0
  34. package/esm2022/lib/pipe/key.values/key.values.pipe.mjs +20 -0
  35. package/esm2022/lib/pipe/multi.lang.object.to.html/multi.lang.object.to.html.pipe.mjs +26 -0
  36. package/esm2022/lib/tp.survey.config.mjs +8 -0
  37. package/esm2022/lib/tp.survey.const.mjs +28 -0
  38. package/esm2022/lib/tp.survey.enum.mjs +59 -0
  39. package/esm2022/lib/tp.survey.interface.mjs +2 -0
  40. package/esm2022/lib/tp.survey.method.mjs +5 -0
  41. package/esm2022/lib/tp.survey.module.mjs +27 -0
  42. package/esm2022/lib/tp.survey.type.mjs +2 -0
  43. package/esm2022/public-api.mjs +14 -0
  44. package/esm2022/touchpoll-tp-survey.mjs +5 -0
  45. package/fesm2022/touchpoll-tp-survey.mjs +2210 -0
  46. package/fesm2022/touchpoll-tp-survey.mjs.map +1 -0
  47. package/index.d.ts +5 -0
  48. package/lib/component/answer/answer.additional/answer.additional.component.d.ts +17 -0
  49. package/lib/component/answer/answer.additional/directive/additional.answer.caption.position/additional.answer.caption.position.directive.d.ts +16 -0
  50. package/lib/component/answer/answer.end/answer.end.component.d.ts +6 -0
  51. package/lib/component/answer/answer.info/answer.info.component.d.ts +6 -0
  52. package/lib/component/answer/answer.lang/answer.lang.component.d.ts +9 -0
  53. package/lib/component/answer/answer.master/answer.master.component.d.ts +21 -0
  54. package/lib/component/answer/answer.ms/answer.ms.component.d.ts +21 -0
  55. package/lib/component/answer/answer.od/answer.od.component.d.ts +8 -0
  56. package/lib/component/answer/answer.ol/answer.ol.component.d.ts +7 -0
  57. package/lib/component/answer/answer.sl/answer.sl.component.d.ts +21 -0
  58. package/lib/component/answer/answer.sl/pipe/as.form.array/as.form.array.pipe.d.ts +8 -0
  59. package/lib/component/answer/answer.sl/pipe/as.form.control/as.form.control.pipe.d.ts +8 -0
  60. package/lib/component/answer/answer.ss/answer.ss.component.d.ts +10 -0
  61. package/lib/component/answer/container.answer/container.answer.component.d.ts +36 -0
  62. package/lib/component/answer/container.answer/container.answer.validator.d.ts +10 -0
  63. package/lib/component/navigation.button/navigation.button.component.d.ts +9 -0
  64. package/lib/component/question.caption/question.caption.component.d.ts +8 -0
  65. package/lib/component/survey.play/survey.play.component.d.ts +36 -0
  66. package/lib/component/survey.question.preview/survey.question.preview.component.d.ts +16 -0
  67. package/lib/core/tp.servey.quota/tp.survey.quota.d.ts +12 -0
  68. package/lib/core/tp.survey.answer/tp.survey.answer.d.ts +17 -0
  69. package/lib/core/tp.survey.core/tp.survey.core.service.d.ts +29 -0
  70. package/lib/core/tp.survey.interview/tp.survey.interview.service.d.ts +14 -0
  71. package/lib/core/tp.survey.logic/tp.survey.logic.service.d.ts +12 -0
  72. package/lib/directive/alternatives.container/alternatives.container.directive.d.ts +17 -0
  73. package/lib/directive/focus.and.select/focus.and.select.directive.d.ts +9 -0
  74. package/lib/directive/survey.theme/survey.theme.directive.d.ts +13 -0
  75. package/lib/directive/update.font.size/update.font.size.directive.d.ts +10 -0
  76. package/lib/icons/default.icons/default.icons.d.ts +5 -0
  77. package/lib/icons/default.icons/default.icons.module.d.ts +12 -0
  78. package/lib/pipe/get.active.language/get.active.language.pipe.d.ts +8 -0
  79. package/lib/pipe/get.additional.value.by.value/get.additional.value.by.value.pipe.d.ts +8 -0
  80. package/lib/pipe/key.values/key.values.pipe.d.ts +14 -0
  81. package/lib/pipe/multi.lang.object.to.html/multi.lang.object.to.html.pipe.d.ts +11 -0
  82. package/lib/tp.survey.config.d.ts +11 -0
  83. package/lib/tp.survey.const.d.ts +4 -0
  84. package/lib/tp.survey.enum.d.ts +51 -0
  85. package/lib/tp.survey.interface.d.ts +320 -0
  86. package/lib/tp.survey.method.d.ts +1 -0
  87. package/lib/tp.survey.module.d.ts +10 -0
  88. package/lib/tp.survey.type.d.ts +13 -0
  89. package/package.json +25 -0
  90. package/public-api.d.ts +9 -0
  91. package/styles/platform/component/survey.checkbox.scss +102 -0
  92. package/styles/platform/component/survey.radio.button.scss +34 -0
  93. package/styles/platform/survey.mixins.desktop.scss +146 -0
  94. package/styles/platform/survey.mixins.tablet.scss +132 -0
  95. package/styles/survey.mixins.scss +76 -0
  96. package/styles/survey.themes.scss +56 -0
  97. package/styles/theme/azure.blue.scss +54 -0
  98. package/styles/theme/cyan.orange.scss +54 -0
  99. package/styles/theme/rose.red.scss +54 -0
@@ -0,0 +1,21 @@
1
+ import { ChangeDetectionStrategy, Component, input, output } from '@angular/core';
2
+ import { MatButton } from '@angular/material/button';
3
+ import { MatIcon } from '@angular/material/icon';
4
+ import * as i0 from "@angular/core";
5
+ export class NavigationButtonComponent {
6
+ constructor() {
7
+ this.direction = input.required();
8
+ this.caption = input();
9
+ this.onClick = output();
10
+ }
11
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: NavigationButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
12
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.6", type: NavigationButtonComponent, isStandalone: true, selector: "tp-survey-navigation-button", inputs: { direction: { classPropertyName: "direction", publicName: "direction", isSignal: true, isRequired: true, transformFunction: null }, caption: { classPropertyName: "caption", publicName: "caption", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onClick: "onClick" }, ngImport: i0, template: "<button mat-flat-button (click)=\"onClick.emit(direction())\" class=\"navigation-button\">\r\n @if (direction() === 'back') {\r\n <mat-icon svgIcon=\"iconButtonBack\" aria-hidden=\"false\" class=\"navigation-button-icon\"/>\r\n }\r\n\r\n <span class=\"navigation-button-label\">{{ caption() }}</span>\r\n\r\n @if (direction() === 'next') {\r\n <mat-icon iconPositionEnd svgIcon=\"iconButtonNext\" aria-hidden=\"false\" class=\"navigation-button-icon\"/>\r\n }\r\n</button>\r\n\r\n", styles: ["mat-icon.navigation-button-icon{width:46px;height:46px}.navigation-button{width:130px}\n"], dependencies: [{ kind: "component", type: MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13
+ }
14
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: NavigationButtonComponent, decorators: [{
15
+ type: Component,
16
+ args: [{ selector: 'tp-survey-navigation-button', standalone: true, imports: [
17
+ MatButton,
18
+ MatIcon
19
+ ], changeDetection: ChangeDetectionStrategy.OnPush, template: "<button mat-flat-button (click)=\"onClick.emit(direction())\" class=\"navigation-button\">\r\n @if (direction() === 'back') {\r\n <mat-icon svgIcon=\"iconButtonBack\" aria-hidden=\"false\" class=\"navigation-button-icon\"/>\r\n }\r\n\r\n <span class=\"navigation-button-label\">{{ caption() }}</span>\r\n\r\n @if (direction() === 'next') {\r\n <mat-icon iconPositionEnd svgIcon=\"iconButtonNext\" aria-hidden=\"false\" class=\"navigation-button-icon\"/>\r\n }\r\n</button>\r\n\r\n", styles: ["mat-icon.navigation-button-icon{width:46px;height:46px}.navigation-button{width:130px}\n"] }]
20
+ }] });
21
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF2aWdhdGlvbi5idXR0b24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHAuc3VydmV5L3NyYy9saWIvY29tcG9uZW50L25hdmlnYXRpb24uYnV0dG9uL25hdmlnYXRpb24uYnV0dG9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RwLnN1cnZleS9zcmMvbGliL2NvbXBvbmVudC9uYXZpZ2F0aW9uLmJ1dHRvbi9uYXZpZ2F0aW9uLmJ1dHRvbi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDaEYsT0FBTyxFQUFDLFNBQVMsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBQ25ELE9BQU8sRUFBQyxPQUFPLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQzs7QUFjL0MsTUFBTSxPQUFPLHlCQUF5QjtJQVh0QztRQVlFLGNBQVMsR0FBRyxLQUFLLENBQUMsUUFBUSxFQUE2QixDQUFBO1FBQ3ZELFlBQU8sR0FBRyxLQUFLLEVBQVUsQ0FBQztRQUMxQixZQUFPLEdBQUcsTUFBTSxFQUE2QixDQUFBO0tBQzlDOzhHQUpZLHlCQUF5QjtrR0FBekIseUJBQXlCLHFZQ2hCdEMsb2VBWUEsa0pESEksU0FBUyxpTEFDVCxPQUFPOzsyRkFNRSx5QkFBeUI7a0JBWHJDLFNBQVM7K0JBQ0UsNkJBQTZCLGNBQzNCLElBQUksV0FDUDt3QkFDUCxTQUFTO3dCQUNULE9BQU87cUJBQ1IsbUJBR2dCLHVCQUF1QixDQUFDLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGlucHV0LCBvdXRwdXR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQge01hdEJ1dHRvbn0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvYnV0dG9uJztcclxuaW1wb3J0IHtNYXRJY29ufSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pY29uJztcclxuaW1wb3J0IHtOYXZpZ2F0aW9uQnV0dG9uRGlyZWN0aW9ufSBmcm9tICcuLi8uLi90cC5zdXJ2ZXkudHlwZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ3RwLXN1cnZleS1uYXZpZ2F0aW9uLWJ1dHRvbicsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBpbXBvcnRzOiBbXHJcbiAgICBNYXRCdXR0b24sXHJcbiAgICBNYXRJY29uXHJcbiAgXSxcclxuICB0ZW1wbGF0ZVVybDogJy4vbmF2aWdhdGlvbi5idXR0b24uY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsOiAnLi9uYXZpZ2F0aW9uLmJ1dHRvbi5jb21wb25lbnQuc2NzcycsXHJcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2hcclxufSlcclxuZXhwb3J0IGNsYXNzIE5hdmlnYXRpb25CdXR0b25Db21wb25lbnQge1xyXG4gIGRpcmVjdGlvbiA9IGlucHV0LnJlcXVpcmVkPE5hdmlnYXRpb25CdXR0b25EaXJlY3Rpb24+KClcclxuICBjYXB0aW9uID0gaW5wdXQ8c3RyaW5nPigpO1xyXG4gIG9uQ2xpY2sgPSBvdXRwdXQ8TmF2aWdhdGlvbkJ1dHRvbkRpcmVjdGlvbj4oKVxyXG59XHJcblxyXG4iLCI8YnV0dG9uIG1hdC1mbGF0LWJ1dHRvbiAoY2xpY2spPVwib25DbGljay5lbWl0KGRpcmVjdGlvbigpKVwiIGNsYXNzPVwibmF2aWdhdGlvbi1idXR0b25cIj5cclxuIEBpZiAoZGlyZWN0aW9uKCkgPT09ICdiYWNrJykge1xyXG4gIDxtYXQtaWNvbiBzdmdJY29uPVwiaWNvbkJ1dHRvbkJhY2tcIiBhcmlhLWhpZGRlbj1cImZhbHNlXCIgY2xhc3M9XCJuYXZpZ2F0aW9uLWJ1dHRvbi1pY29uXCIvPlxyXG4gfVxyXG5cclxuIDxzcGFuIGNsYXNzPVwibmF2aWdhdGlvbi1idXR0b24tbGFiZWxcIj57eyBjYXB0aW9uKCkgfX08L3NwYW4+XHJcblxyXG4gQGlmIChkaXJlY3Rpb24oKSA9PT0gJ25leHQnKSB7XHJcbiAgPG1hdC1pY29uIGljb25Qb3NpdGlvbkVuZCBzdmdJY29uPVwiaWNvbkJ1dHRvbk5leHRcIiBhcmlhLWhpZGRlbj1cImZhbHNlXCIgY2xhc3M9XCJuYXZpZ2F0aW9uLWJ1dHRvbi1pY29uXCIvPlxyXG4gfVxyXG48L2J1dHRvbj5cclxuXHJcbiJdfQ==
@@ -0,0 +1,15 @@
1
+ import { ChangeDetectionStrategy, Component, input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class QuestionCaptionComponent {
4
+ constructor() {
5
+ this.caption = input();
6
+ this.captionHelp = input();
7
+ }
8
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: QuestionCaptionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
9
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.0.6", type: QuestionCaptionComponent, isStandalone: true, selector: "tp-survey-question-caption", inputs: { caption: { classPropertyName: "caption", publicName: "caption", isSignal: true, isRequired: false, transformFunction: null }, captionHelp: { classPropertyName: "captionHelp", publicName: "captionHelp", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"container-main\">\r\n <div [innerHTML]= \"caption()\" class=\"question-caption-font\"></div>\r\n <div [innerHTML]= \"captionHelp()\" class=\"question-caption-helper-font\"></div>\r\n</div>\r\n", styles: [".container-main{display:flex;flex-flow:column nowrap;justify-content:center;align-items:center;gap:1em;width:100%;white-space:pre-wrap;line-height:1;box-sizing:border-box;padding:1em}.question-caption-font{font-size:1.2em;line-height:1.2;width:100%;text-align:center}.question-caption-helper-font{font-size:1.1em;font-style:italic;width:100%;text-align:center}:host-context(.tp-view-desktop) .container-main{max-width:896px;margin:0 auto}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
10
+ }
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.6", ngImport: i0, type: QuestionCaptionComponent, decorators: [{
12
+ type: Component,
13
+ args: [{ selector: 'tp-survey-question-caption', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, template: "<div class=\"container-main\">\r\n <div [innerHTML]= \"caption()\" class=\"question-caption-font\"></div>\r\n <div [innerHTML]= \"captionHelp()\" class=\"question-caption-helper-font\"></div>\r\n</div>\r\n", styles: [".container-main{display:flex;flex-flow:column nowrap;justify-content:center;align-items:center;gap:1em;width:100%;white-space:pre-wrap;line-height:1;box-sizing:border-box;padding:1em}.question-caption-font{font-size:1.2em;line-height:1.2;width:100%;text-align:center}.question-caption-helper-font{font-size:1.1em;font-style:italic;width:100%;text-align:center}:host-context(.tp-view-desktop) .container-main{max-width:896px;margin:0 auto}\n"] }]
14
+ }] });
15
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlc3Rpb24uY2FwdGlvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cC5zdXJ2ZXkvc3JjL2xpYi9jb21wb25lbnQvcXVlc3Rpb24uY2FwdGlvbi9xdWVzdGlvbi5jYXB0aW9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RwLnN1cnZleS9zcmMvbGliL2NvbXBvbmVudC9xdWVzdGlvbi5jYXB0aW9uL3F1ZXN0aW9uLmNhcHRpb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUMsTUFBTSxlQUFlLENBQUM7O0FBVXhFLE1BQU0sT0FBTyx3QkFBd0I7SUFQckM7UUFRRSxZQUFPLEdBQUcsS0FBSyxFQUFZLENBQUM7UUFDNUIsZ0JBQVcsR0FBRyxLQUFLLEVBQVksQ0FBQztLQUNqQzs4R0FIWSx3QkFBd0I7a0dBQXhCLHdCQUF3QiwwV0NWckMsK01BSUE7OzJGRE1hLHdCQUF3QjtrQkFQcEMsU0FBUzsrQkFDRSw0QkFBNEIsbUJBR3JCLHVCQUF1QixDQUFDLE1BQU0sY0FDbkMsSUFBSSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5wdXR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQge1NhZmVIdG1sfSBmcm9tICdAYW5ndWxhci9wbGF0Zm9ybS1icm93c2VyJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAndHAtc3VydmV5LXF1ZXN0aW9uLWNhcHRpb24nLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9xdWVzdGlvbi5jYXB0aW9uLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi9xdWVzdGlvbi5jYXB0aW9uLmNvbXBvbmVudC5zY3NzJ10sXHJcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxufSlcclxuZXhwb3J0IGNsYXNzIFF1ZXN0aW9uQ2FwdGlvbkNvbXBvbmVudCB7XHJcbiAgY2FwdGlvbiA9IGlucHV0PFNhZmVIdG1sPigpO1xyXG4gIGNhcHRpb25IZWxwID0gaW5wdXQ8U2FmZUh0bWw+KCk7XHJcbn1cclxuIiwiPGRpdiBjbGFzcz1cImNvbnRhaW5lci1tYWluXCI+XHJcbiA8ZGl2IFtpbm5lckhUTUxdPSBcImNhcHRpb24oKVwiIGNsYXNzPVwicXVlc3Rpb24tY2FwdGlvbi1mb250XCI+PC9kaXY+XHJcbiA8ZGl2IFtpbm5lckhUTUxdPSBcImNhcHRpb25IZWxwKClcIiBjbGFzcz1cInF1ZXN0aW9uLWNhcHRpb24taGVscGVyLWZvbnRcIj48L2Rpdj5cclxuPC9kaXY+XHJcbiJdfQ==