@sapphire-ion/framework 0.30.20 → 1.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 (101) hide show
  1. package/esm2022/lib/components/default/default-list/list.mjs +1 -1
  2. package/esm2022/lib/components/default/default-table/default-table.component.mjs +6 -5
  3. package/esm2022/lib/components/default/default-table/th-filter/th-filter.component.mjs +10 -9
  4. package/esm2022/lib/components/default/default-view/default-view.component.mjs +10 -10
  5. package/esm2022/lib/components/default/default.module.mjs +12 -4
  6. package/esm2022/lib/components/filter/filter.component.mjs +2 -2
  7. package/esm2022/lib/components/inputs/custom-input.mjs +57 -49
  8. package/esm2022/lib/components/inputs/input-bool/input-bool.component.mjs +31 -34
  9. package/esm2022/lib/components/inputs/input-bool/input-bool.configuration.mjs +4 -4
  10. package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.mjs +33 -46
  11. package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.mjs +2 -2
  12. package/esm2022/lib/components/inputs/input-date/input-date.component.mjs +86 -97
  13. package/esm2022/lib/components/inputs/input-decimal/input-decimal.component.mjs +158 -190
  14. package/esm2022/lib/components/inputs/input-decimal/input-decimal.configuration.mjs +6 -1
  15. package/esm2022/lib/components/inputs/input-file/download-button/download-button.component.mjs +12 -10
  16. package/esm2022/lib/components/inputs/input-file/input-file.component.mjs +60 -98
  17. package/esm2022/lib/components/inputs/input-file/input-file.configuration.mjs +18 -5
  18. package/esm2022/lib/components/inputs/input-provider-factory.mjs +4 -7
  19. package/esm2022/lib/components/inputs/input-select/directives/sion-label-template.directive.mjs +16 -0
  20. package/esm2022/lib/components/inputs/input-select/directives/sion-option-template.directive.mjs +18 -0
  21. package/esm2022/lib/components/inputs/input-select/directives/sion-placeholder-template.directive.mjs +16 -0
  22. package/esm2022/lib/components/inputs/input-select/input-select.component.mjs +233 -264
  23. package/esm2022/lib/components/inputs/input-select/input.select.configuration.mjs +45 -29
  24. package/esm2022/lib/components/inputs/input-string/input-string.component.mjs +27 -42
  25. package/esm2022/lib/components/inputs/input-string/input-string.configuration.mjs +1 -1
  26. package/esm2022/lib/components/inputs/input-textarea/input-textarea.component.mjs +26 -38
  27. package/esm2022/lib/components/inputs/input-textarea/input-textarea.configuration.mjs +7 -0
  28. package/esm2022/lib/components/inputs/inputs.module.mjs +72 -81
  29. package/esm2022/lib/components/login/login-admin/login-admin.component.mjs +1 -1
  30. package/esm2022/lib/components/popover/sion-popover/sion-popover.component.mjs +132 -0
  31. package/esm2022/lib/components/popover/sion-popover.module.mjs +23 -0
  32. package/esm2022/lib/components/popover/sion-popover.service.mjs +33 -0
  33. package/esm2022/lib/components/stepper/step/step.component.mjs +3 -3
  34. package/esm2022/lib/components/stepper/stepper.component.mjs +13 -13
  35. package/esm2022/lib/index.mjs +10 -6
  36. package/esm2022/lib/services/utils.service.mjs +3 -3
  37. package/esm2022/lib/services/web/http.ativo.service.mjs +2 -2
  38. package/fesm2022/sapphire-ion-framework.mjs +1179 -1733
  39. package/fesm2022/sapphire-ion-framework.mjs.map +1 -1
  40. package/lib/components/default/default.module.d.ts +3 -1
  41. package/lib/components/inputs/custom-input.d.ts +26 -22
  42. package/lib/components/inputs/input-bool/input-bool.component.d.ts +13 -16
  43. package/lib/components/inputs/input-bool/input-bool.configuration.d.ts +2 -2
  44. package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.d.ts +13 -18
  45. package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.d.ts +1 -1
  46. package/lib/components/inputs/input-date/input-date.component.d.ts +21 -24
  47. package/lib/components/inputs/input-decimal/input-decimal.component.d.ts +21 -36
  48. package/lib/components/inputs/input-decimal/input-decimal.configuration.d.ts +3 -0
  49. package/lib/components/inputs/input-file/download-button/download-button.component.d.ts +2 -1
  50. package/lib/components/inputs/input-file/input-file.component.d.ts +20 -32
  51. package/lib/components/inputs/input-file/input-file.configuration.d.ts +2 -5
  52. package/lib/components/inputs/input-provider-factory.d.ts +1 -1
  53. package/lib/components/inputs/input-select/directives/sion-label-template.directive.d.ts +12 -0
  54. package/lib/components/inputs/input-select/directives/sion-option-template.directive.d.ts +11 -0
  55. package/lib/components/inputs/input-select/directives/sion-placeholder-template.directive.d.ts +12 -0
  56. package/lib/components/inputs/input-select/input-select.component.d.ts +60 -58
  57. package/lib/components/inputs/input-select/input.select.configuration.d.ts +11 -9
  58. package/lib/components/inputs/input-string/input-string.component.d.ts +11 -16
  59. package/lib/components/inputs/input-textarea/input-textarea.component.d.ts +11 -15
  60. package/lib/components/inputs/input-textarea/input-textarea.configuration.d.ts +4 -0
  61. package/lib/components/inputs/inputs.module.d.ts +18 -21
  62. package/lib/components/popover/sion-popover/sion-popover.component.d.ts +30 -0
  63. package/lib/components/popover/sion-popover.module.d.ts +8 -0
  64. package/lib/components/popover/sion-popover.service.d.ts +12 -0
  65. package/lib/components/stepper/step/step.component.d.ts +1 -1
  66. package/lib/components/stepper/stepper.component.d.ts +3 -6
  67. package/lib/index.d.ts +5 -4
  68. package/lib/services/utils.service.d.ts +1 -1
  69. package/package.json +2 -1
  70. package/themes/compiled-styles.scss +157 -4
  71. package/themes/components/default/default-table/default-table.component.scss +0 -13
  72. package/themes/components/default/default-table/th-filter/th-filter.component.scss +0 -3
  73. package/themes/components/inputs/input-bool/input-bool.component.scss +2 -13
  74. package/themes/components/inputs/input-date/input-date.component.scss +33 -34
  75. package/themes/components/inputs/input-decimal/input-decimal.component.scss +8 -42
  76. package/themes/components/inputs/input-file/input-file.component.scss +16 -2
  77. package/themes/components/inputs/input-select/input-select.component.scss +47 -24
  78. package/themes/components/inputs/input-textarea/input-textarea.component.scss +7 -0
  79. package/themes/components/inputs/inputs.scss +103 -49
  80. package/themes/components/inputs_old/inputs.scss +67 -0
  81. package/themes/components/popover/sion-popover/sion-popover.component.scss +48 -0
  82. package/themes/styles/components.scss +34 -0
  83. package/themes/styles/ionic/ion-datetime.scss +3 -2
  84. package/esm2022/lib/components/inputs/custom-signal-input.mjs +0 -74
  85. package/esm2022/lib/components/inputs/input-color/input-color.component.mjs +0 -487
  86. package/esm2022/lib/components/inputs/input-loading/input-loading.component.mjs +0 -16
  87. package/esm2022/lib/components/inputs/input-select/ISelect.mjs +0 -11
  88. package/esm2022/lib/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.mjs +0 -42
  89. package/esm2022/lib/components/inputs/input-select/input-select-option/input-select-option.component.mjs +0 -46
  90. package/esm2022/lib/components/inputs/input-select/input-select-template.directive.mjs +0 -16
  91. package/lib/components/inputs/custom-signal-input.d.ts +0 -38
  92. package/lib/components/inputs/input-color/input-color.component.d.ts +0 -80
  93. package/lib/components/inputs/input-loading/input-loading.component.d.ts +0 -7
  94. package/lib/components/inputs/input-select/ISelect.d.ts +0 -21
  95. package/lib/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.d.ts +0 -18
  96. package/lib/components/inputs/input-select/input-select-option/input-select-option.component.d.ts +0 -24
  97. package/lib/components/inputs/input-select/input-select-template.directive.d.ts +0 -8
  98. package/themes/components/inputs/input-loading/input-loading.component.scss +0 -0
  99. package/themes/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.scss +0 -0
  100. package/themes/components/inputs/input-select/input-select-option/input-select-option.component.scss +0 -0
  101. /package/themes/components/{inputs → inputs_old}/input-color/input-color.component.scss +0 -0
@@ -1,15 +1,12 @@
1
1
  import { forwardRef } from "@angular/core";
2
2
  import { NG_VALUE_ACCESSOR } from "@angular/forms";
3
3
  export class InputProviderFactory {
4
- static GetProvider(component, providers = []) {
5
- return [
6
- ...providers,
7
- {
4
+ static GetProviders(component) {
5
+ return [{
8
6
  provide: NG_VALUE_ACCESSOR,
9
7
  useExisting: forwardRef(() => component),
10
8
  multi: true,
11
- },
12
- ];
9
+ }];
13
10
  }
14
11
  }
15
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtcHJvdmlkZXItZmFjdG9yeS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9saWIvY29tcG9uZW50cy9pbnB1dHMvaW5wdXQtcHJvdmlkZXItZmFjdG9yeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFZLE1BQU0sZUFBZSxDQUFDO0FBQ3JELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRW5ELE1BQU0sT0FBTyxvQkFBb0I7SUFDL0IsTUFBTSxDQUFDLFdBQVcsQ0FBQyxTQUFrQixFQUFFLFlBQXdCLEVBQUU7UUFDL0QsT0FBTztZQUNMLEdBQUcsU0FBUztZQUNaO2dCQUNFLE9BQU8sRUFBRSxpQkFBaUI7Z0JBQzFCLFdBQVcsRUFBRSxVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMsU0FBUyxDQUFDO2dCQUN4QyxLQUFLLEVBQUUsSUFBSTthQUNaO1NBQ0YsQ0FBQTtJQUNILENBQUM7Q0FDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGZvcndhcmRSZWYsIFByb3ZpZGVyIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgTkdfVkFMVUVfQUNDRVNTT1IgfSBmcm9tIFwiQGFuZ3VsYXIvZm9ybXNcIjtcclxuXHJcbmV4cG9ydCBjbGFzcyBJbnB1dFByb3ZpZGVyRmFjdG9yeXtcclxuICBzdGF0aWMgR2V0UHJvdmlkZXIoY29tcG9uZW50OiB1bmtub3duLCBwcm92aWRlcnM6IFByb3ZpZGVyW10gPSBbXSk6IFByb3ZpZGVyW117XHJcbiAgICByZXR1cm4gWyBcclxuICAgICAgLi4ucHJvdmlkZXJzLFxyXG4gICAgICB7XHJcbiAgICAgICAgcHJvdmlkZTogTkdfVkFMVUVfQUNDRVNTT1IsXHJcbiAgICAgICAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gY29tcG9uZW50KSxcclxuICAgICAgICBtdWx0aTogdHJ1ZSxcclxuICAgICAgfSxcclxuICAgIF1cclxuICB9XHJcbn0iXX0=
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtcHJvdmlkZXItZmFjdG9yeS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9saWIvY29tcG9uZW50cy9pbnB1dHMvaW5wdXQtcHJvdmlkZXItZmFjdG9yeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFZLE1BQU0sZUFBZSxDQUFDO0FBQ3JELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRW5ELE1BQU0sT0FBTyxvQkFBb0I7SUFDL0IsTUFBTSxDQUFDLFlBQVksQ0FBQyxTQUFrQjtRQUNwQyxPQUFPLENBQUU7Z0JBQ0wsT0FBTyxFQUFFLGlCQUFpQjtnQkFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxTQUFTLENBQUM7Z0JBQ3hDLEtBQUssRUFBRSxJQUFJO2FBQ2QsQ0FBRSxDQUFBO0lBQ0wsQ0FBQztDQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgZm9yd2FyZFJlZiwgUHJvdmlkZXIgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBOR19WQUxVRV9BQ0NFU1NPUiB9IGZyb20gXCJAYW5ndWxhci9mb3Jtc1wiO1xyXG5cclxuZXhwb3J0IGNsYXNzIElucHV0UHJvdmlkZXJGYWN0b3J5e1xyXG4gIHN0YXRpYyBHZXRQcm92aWRlcnMoY29tcG9uZW50OiB1bmtub3duKTogUHJvdmlkZXJbXSB7XHJcbiAgICByZXR1cm4gWyB7XHJcbiAgICAgICAgcHJvdmlkZTogTkdfVkFMVUVfQUNDRVNTT1IsXHJcbiAgICAgICAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gY29tcG9uZW50KSxcclxuICAgICAgICBtdWx0aTogdHJ1ZSxcclxuICAgIH0gXVxyXG4gIH1cclxufSJdfQ==
@@ -0,0 +1,16 @@
1
+ import { Directive, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class SIonLabelTemplateDirective {
4
+ constructor(template) {
5
+ this.template = template;
6
+ }
7
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SIonLabelTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
8
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: SIonLabelTemplateDirective, selector: "[sionLabelTemplate]", ngImport: i0 }); }
9
+ }
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SIonLabelTemplateDirective, decorators: [{
11
+ type: Directive,
12
+ args: [{
13
+ selector: '[sionLabelTemplate]',
14
+ }]
15
+ }], ctorParameters: () => [{ type: i0.TemplateRef }] });
16
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lvbi1sYWJlbC10ZW1wbGF0ZS5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvbGliL2NvbXBvbmVudHMvaW5wdXRzL2lucHV0LXNlbGVjdC9kaXJlY3RpdmVzL3Npb24tbGFiZWwtdGVtcGxhdGUuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsV0FBVyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUt2RCxNQUFNLE9BQU8sMEJBQTBCO0lBQ3JDLFlBQW1CLFFBQThDO1FBQTlDLGFBQVEsR0FBUixRQUFRLENBQXNDO0lBQUcsQ0FBQzsrR0FEMUQsMEJBQTBCO21HQUExQiwwQkFBMEI7OzRGQUExQiwwQkFBMEI7a0JBSHRDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLHFCQUFxQjtpQkFDaEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5ARGlyZWN0aXZlKHtcclxuICBzZWxlY3RvcjogJ1tzaW9uTGFiZWxUZW1wbGF0ZV0nLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgU0lvbkxhYmVsVGVtcGxhdGVEaXJlY3RpdmU8VD4ge1xyXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyB0ZW1wbGF0ZTogVGVtcGxhdGVSZWY8TGFiZWxUZW1wbGF0ZUNvbnRleHQ8VD4+KSB7fVxyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIExhYmVsVGVtcGxhdGVDb250ZXh0PFQ+IHtcclxuICAkaW1wbGljaXQ6IHN0cmluZztcclxuICBpdGVtOiBUO1xyXG59Il19
@@ -0,0 +1,18 @@
1
+ import { Directive, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class SIonOptionTemplateDirective {
4
+ constructor(template) {
5
+ this.template = template;
6
+ }
7
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SIonOptionTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
8
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: SIonOptionTemplateDirective, selector: "[sionOptionTemplate]", ngImport: i0 }); }
9
+ }
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SIonOptionTemplateDirective, decorators: [{
11
+ type: Directive,
12
+ args: [{
13
+ selector: '[sionOptionTemplate]',
14
+ }]
15
+ }], ctorParameters: () => [{ type: i0.TemplateRef }] });
16
+ export class OptionTemplateContext {
17
+ }
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lvbi1vcHRpb24tdGVtcGxhdGUuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2xpYi9jb21wb25lbnRzL2lucHV0cy9pbnB1dC1zZWxlY3QvZGlyZWN0aXZlcy9zaW9uLW9wdGlvbi10ZW1wbGF0ZS5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBS3ZELE1BQU0sT0FBTywyQkFBMkI7SUFDdEMsWUFBbUIsUUFBK0M7UUFBL0MsYUFBUSxHQUFSLFFBQVEsQ0FBdUM7SUFBRyxDQUFDOytHQUQzRCwyQkFBMkI7bUdBQTNCLDJCQUEyQjs7NEZBQTNCLDJCQUEyQjtrQkFIdkMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsc0JBQXNCO2lCQUNqQzs7QUFNRCxNQUFNLE9BQU8scUJBQXFCO0NBRWpDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQERpcmVjdGl2ZSh7XHJcbiAgc2VsZWN0b3I6ICdbc2lvbk9wdGlvblRlbXBsYXRlXScsXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBTSW9uT3B0aW9uVGVtcGxhdGVEaXJlY3RpdmU8VD4ge1xyXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyB0ZW1wbGF0ZTogVGVtcGxhdGVSZWY8T3B0aW9uVGVtcGxhdGVDb250ZXh0PFQ+Pikge31cclxufVxyXG5cclxuXHJcbmV4cG9ydCBjbGFzcyBPcHRpb25UZW1wbGF0ZUNvbnRleHQ8VD4ge1xyXG4gIGl0ZW06IFQ7XHJcbn0iXX0=
@@ -0,0 +1,16 @@
1
+ import { Directive, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class SIonPlaceholderTemplateDirective {
4
+ constructor(template) {
5
+ this.template = template;
6
+ }
7
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SIonPlaceholderTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
8
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: SIonPlaceholderTemplateDirective, selector: "[sionPlaceholderTemplate]", ngImport: i0 }); }
9
+ }
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SIonPlaceholderTemplateDirective, decorators: [{
11
+ type: Directive,
12
+ args: [{
13
+ selector: '[sionPlaceholderTemplate]',
14
+ }]
15
+ }], ctorParameters: () => [{ type: i0.TemplateRef }] });
16
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lvbi1wbGFjZWhvbGRlci10ZW1wbGF0ZS5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvbGliL2NvbXBvbmVudHMvaW5wdXRzL2lucHV0LXNlbGVjdC9kaXJlY3RpdmVzL3Npb24tcGxhY2Vob2xkZXItdGVtcGxhdGUuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsV0FBVyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUt2RCxNQUFNLE9BQU8sZ0NBQWdDO0lBQzNDLFlBQW1CLFFBQTBCO1FBQTFCLGFBQVEsR0FBUixRQUFRLENBQWtCO0lBQUcsQ0FBQzsrR0FEdEMsZ0NBQWdDO21HQUFoQyxnQ0FBZ0M7OzRGQUFoQyxnQ0FBZ0M7a0JBSDVDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLDJCQUEyQjtpQkFDdEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5ARGlyZWN0aXZlKHtcclxuICBzZWxlY3RvcjogJ1tzaW9uUGxhY2Vob2xkZXJUZW1wbGF0ZV0nLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgU0lvblBsYWNlaG9sZGVyVGVtcGxhdGVEaXJlY3RpdmUge1xyXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyB0ZW1wbGF0ZTogVGVtcGxhdGVSZWY8YW55Pikge31cclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBQbGFjZWhvbGRlclRlbXBsYXRlQ29udGV4dCB7XHJcbiAgJGltcGxpY2l0OiBzdHJpbmc7XHJcbiAgcGxhY2Vob2xkZXI6IHN0cmluZztcclxufVxyXG4iXX0=