mapa-library-ui 0.42.0 → 0.43.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 (178) hide show
  1. package/esm2020/src/lib/components/group-report/filters.mjs +7 -0
  2. package/esm2020/src/lib/components/group-report/group-report.mjs +5 -0
  3. package/esm2020/src/lib/components/group-report/lib/components/button/public-api.mjs +6 -0
  4. package/esm2020/src/lib/components/group-report/lib/components/button/src/button.component.mjs +23 -0
  5. package/esm2020/src/lib/components/group-report/lib/components/button/src/button.module.mjs +19 -0
  6. package/esm2020/src/lib/components/group-report/lib/components/capability/public-api.mjs +26 -0
  7. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-comparative/capability-comparative.component.mjs +17 -0
  8. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-comparative/capability-comparative.module.mjs +32 -0
  9. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-comparative-chart/capability-comparative-chart.component.mjs +24 -0
  10. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-comparative-chart/capability-comparative-chart.module.mjs +19 -0
  11. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-comparative-header/capability-comparative-header.component.mjs +20 -0
  12. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-comparative-header/capability-comparative-header.module.mjs +19 -0
  13. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-comparative-indicator/capability-comparative-indicator.component.mjs +19 -0
  14. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-comparative-indicator/capability-comparative-indicator.module.mjs +19 -0
  15. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-detail/capability-detail.component.mjs +73 -0
  16. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-detail/capability-detail.module.mjs +64 -0
  17. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-dot/capability-dot.component.mjs +31 -0
  18. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-dot/capability-dot.module.mjs +22 -0
  19. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-expand/capability-expand.component.mjs +27 -0
  20. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-expand/capability-expand.module.mjs +22 -0
  21. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-indicator/capability-indicator.component.mjs +14 -0
  22. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-indicator/capability-indicator.module.mjs +18 -0
  23. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-indicator-chart/capability-indicator-chart.component.mjs +33 -0
  24. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-indicator-chart/capability-indicator-chart.module.mjs +21 -0
  25. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-indicator-list/capability-indicator-list.component.mjs +27 -0
  26. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-indicator-list/capability-indicator-list.module.mjs +21 -0
  27. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-interval/capability-interval.component.mjs +81 -0
  28. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-interval/capability-interval.module.mjs +18 -0
  29. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-interval-bar/capability-interval-bar.component.mjs +31 -0
  30. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-interval-bar/capability-interval-bar.module.mjs +20 -0
  31. package/esm2020/src/lib/components/group-report/lib/components/capability/src/essentials/consts/capability-classification.const.mjs +57 -0
  32. package/esm2020/src/lib/components/group-report/lib/components/capability/src/essentials/interfaces/capability-classification.interface.mjs +2 -0
  33. package/esm2020/src/lib/components/group-report/lib/components/capability/src/essentials/interfaces/capability-comparative.interface.mjs +2 -0
  34. package/esm2020/src/lib/components/group-report/lib/components/capability/src/essentials/interfaces/capability-item.interface.mjs +2 -0
  35. package/esm2020/src/lib/components/group-report/lib/components/capability/src/essentials/interfaces/capability.interface.mjs +2 -0
  36. package/esm2020/src/lib/components/group-report/lib/components/capability/src/essentials/interfaces/index.mjs +4 -0
  37. package/esm2020/src/lib/components/group-report/lib/components/capability/src/essentials/services/capability-classification.service.mjs +14 -0
  38. package/esm2020/src/lib/components/group-report/lib/components/capability/src/essentials/services/reusable-interval-bar.service.mjs +32 -0
  39. package/esm2020/src/lib/components/group-report/lib/components/dropdown/public-api.mjs +6 -0
  40. package/esm2020/src/lib/components/group-report/lib/components/dropdown/src/dropdown.component.mjs +168 -0
  41. package/esm2020/src/lib/components/group-report/lib/components/dropdown/src/dropdown.module.mjs +71 -0
  42. package/esm2020/src/lib/components/group-report/lib/components/filters/public-api.mjs +6 -0
  43. package/esm2020/src/lib/components/group-report/lib/components/filters/src/filters.component.mjs +34 -0
  44. package/esm2020/src/lib/components/group-report/lib/components/filters/src/filters.module.mjs +38 -0
  45. package/esm2020/src/lib/components/group-report/lib/components/group-report/public-api.mjs +6 -0
  46. package/esm2020/src/lib/components/group-report/lib/components/group-report/src/group-report-interface.mjs +2 -0
  47. package/esm2020/src/lib/components/group-report/lib/components/group-report/src/group-report.component.mjs +200 -0
  48. package/esm2020/src/lib/components/group-report/lib/components/group-report/src/group-report.module.mjs +36 -0
  49. package/esm2020/src/lib/components/group-report/lib/components/icon/public-api.mjs +6 -0
  50. package/esm2020/src/lib/components/group-report/lib/components/icon/src/icon.component.mjs +26 -0
  51. package/esm2020/src/lib/components/group-report/lib/components/icon/src/icon.module.mjs +19 -0
  52. package/esm2020/src/lib/components/group-report/lib/components/tag/public-api.mjs +6 -0
  53. package/esm2020/src/lib/components/group-report/lib/components/tag/src/tag.component.mjs +14 -0
  54. package/esm2020/src/lib/components/group-report/lib/components/tag/src/tag.module.mjs +24 -0
  55. package/esm2020/src/lib/components/group-report/lib/components/tooltip/src/tooltip.component.mjs +21 -0
  56. package/esm2020/src/lib/components/group-report/lib/components/tooltip/src/tooltip.directive.mjs +140 -0
  57. package/esm2020/src/lib/components/group-report/lib/components/tooltip/src/tooltip.enums.mjs +16 -0
  58. package/esm2020/src/lib/components/group-report/lib/components/tooltip/src/tooltip.module.mjs +19 -0
  59. package/esm2020/src/lib/components/group-report/lib/core/elements/action-button.mjs +2 -0
  60. package/esm2020/src/lib/components/group-report/lib/core/elements/dropdown.mjs +8 -0
  61. package/esm2020/src/lib/components/group-report/lib/core/elements/element-base.mjs +32 -0
  62. package/esm2020/src/lib/components/group-report/lib/core/elements/element-search.mjs +2 -0
  63. package/esm2020/src/lib/components/group-report/lib/core/elements/errors.mjs +2 -0
  64. package/esm2020/src/lib/components/group-report/lib/core/interfaces/classification.interface.mjs +2 -0
  65. package/esm2020/src/lib/components/group-report/lib/core/interfaces/element-group.interface.mjs +2 -0
  66. package/esm2020/src/lib/components/group-report/lib/core/interfaces/element-option.interface.mjs +2 -0
  67. package/esm2020/src/lib/components/group-report/lib/core/interfaces/table-column.interface.mjs +2 -0
  68. package/esm2020/src/lib/components/group-report/mapa-library-ui-src-lib-components-group-report.mjs +5 -0
  69. package/esm2020/src/lib/components/scale/lib/components/group-report/src/group-report-interface.mjs +2 -0
  70. package/esm2020/src/lib/components/scale/lib/components/scale/public-api.mjs +8 -0
  71. package/esm2020/src/lib/components/scale/lib/components/scale/src/details/details.component.mjs +11 -0
  72. package/esm2020/src/lib/components/scale/lib/components/scale/src/progressbar/progressbar.component.mjs +19 -0
  73. package/esm2020/src/lib/components/scale/lib/components/scale/src/scale.component.mjs +51 -0
  74. package/esm2020/src/lib/components/scale/lib/components/scale/src/scale.interface.mjs +2 -0
  75. package/esm2020/src/lib/components/scale/lib/components/scale/src/scale.module.mjs +32 -0
  76. package/esm2020/src/lib/components/scale/lib/core/interfaces/classification.interface.mjs +2 -0
  77. package/esm2020/src/lib/components/scale/mapa-library-ui-src-lib-components-scale.mjs +5 -0
  78. package/esm2020/src/lib/components/scale/scale.mjs +5 -0
  79. package/esm2020/src/lib/components/table/lib/components/table/src/table.component.mjs +6 -79
  80. package/esm2020/src/lib/components/table/lib/core/interfaces/classification.interface.mjs +2 -0
  81. package/esm2020/src/lib/components/table/lib/core/interfaces/table-column.interface.mjs +1 -3
  82. package/fesm2015/mapa-library-ui-src-lib-components-group-report.mjs +285 -0
  83. package/fesm2015/mapa-library-ui-src-lib-components-group-report.mjs.map +1 -0
  84. package/fesm2015/mapa-library-ui-src-lib-components-scale.mjs +117 -0
  85. package/fesm2015/mapa-library-ui-src-lib-components-scale.mjs.map +1 -0
  86. package/fesm2015/mapa-library-ui-src-lib-components-table.mjs +5 -80
  87. package/fesm2015/mapa-library-ui-src-lib-components-table.mjs.map +1 -1
  88. package/fesm2020/mapa-library-ui-src-lib-components-group-report.mjs +280 -0
  89. package/fesm2020/mapa-library-ui-src-lib-components-group-report.mjs.map +1 -0
  90. package/fesm2020/mapa-library-ui-src-lib-components-scale.mjs +117 -0
  91. package/fesm2020/mapa-library-ui-src-lib-components-scale.mjs.map +1 -0
  92. package/fesm2020/mapa-library-ui-src-lib-components-table.mjs +5 -78
  93. package/fesm2020/mapa-library-ui-src-lib-components-table.mjs.map +1 -1
  94. package/mapa-library-ui-0.43.1.tgz +0 -0
  95. package/package.json +17 -1
  96. package/src/lib/components/group-report/filters.d.ts +3 -0
  97. package/src/lib/components/group-report/group-report.d.ts +1 -0
  98. package/src/lib/components/group-report/index.d.ts +5 -0
  99. package/src/lib/components/group-report/lib/components/button/public-api.d.ts +2 -0
  100. package/src/lib/components/group-report/lib/components/button/src/button.component.d.ts +10 -0
  101. package/src/lib/components/group-report/lib/components/button/src/button.module.d.ts +9 -0
  102. package/src/lib/components/group-report/lib/components/capability/public-api.d.ts +22 -0
  103. package/src/lib/components/group-report/lib/components/capability/src/capability-comparative/capability-comparative.component.d.ts +10 -0
  104. package/src/lib/components/group-report/lib/components/capability/src/capability-comparative/capability-comparative.module.d.ts +11 -0
  105. package/src/lib/components/group-report/lib/components/capability/src/capability-comparative-chart/capability-comparative-chart.component.d.ts +9 -0
  106. package/src/lib/components/group-report/lib/components/capability/src/capability-comparative-chart/capability-comparative-chart.module.d.ts +9 -0
  107. package/src/lib/components/group-report/lib/components/capability/src/capability-comparative-header/capability-comparative-header.component.d.ts +9 -0
  108. package/src/lib/components/group-report/lib/components/capability/src/capability-comparative-header/capability-comparative-header.module.d.ts +9 -0
  109. package/src/lib/components/group-report/lib/components/capability/src/capability-comparative-indicator/capability-comparative-indicator.component.d.ts +9 -0
  110. package/src/lib/components/group-report/lib/components/capability/src/capability-comparative-indicator/capability-comparative-indicator.module.d.ts +9 -0
  111. package/src/lib/components/group-report/lib/components/capability/src/capability-detail/capability-detail.component.d.ts +29 -0
  112. package/src/lib/components/group-report/lib/components/capability/src/capability-detail/capability-detail.module.d.ts +17 -0
  113. package/src/lib/components/group-report/lib/components/capability/src/capability-dot/capability-dot.component.d.ts +17 -0
  114. package/src/lib/components/group-report/lib/components/capability/src/capability-dot/capability-dot.module.d.ts +10 -0
  115. package/src/lib/components/group-report/lib/components/capability/src/capability-expand/capability-expand.component.d.ts +16 -0
  116. package/src/lib/components/group-report/lib/components/capability/src/capability-expand/capability-expand.module.d.ts +10 -0
  117. package/src/lib/components/group-report/lib/components/capability/src/capability-indicator/capability-indicator.component.d.ts +7 -0
  118. package/src/lib/components/group-report/lib/components/capability/src/capability-indicator/capability-indicator.module.d.ts +8 -0
  119. package/src/lib/components/group-report/lib/components/capability/src/capability-indicator-chart/capability-indicator-chart.component.d.ts +12 -0
  120. package/src/lib/components/group-report/lib/components/capability/src/capability-indicator-chart/capability-indicator-chart.module.d.ts +9 -0
  121. package/src/lib/components/group-report/lib/components/capability/src/capability-indicator-list/capability-indicator-list.component.d.ts +14 -0
  122. package/src/lib/components/group-report/lib/components/capability/src/capability-indicator-list/capability-indicator-list.module.d.ts +9 -0
  123. package/src/lib/components/group-report/lib/components/capability/src/capability-interval/capability-interval.component.d.ts +29 -0
  124. package/src/lib/components/group-report/lib/components/capability/src/capability-interval/capability-interval.module.d.ts +8 -0
  125. package/src/lib/components/group-report/lib/components/capability/src/capability-interval-bar/capability-interval-bar.component.d.ts +16 -0
  126. package/src/lib/components/group-report/lib/components/capability/src/capability-interval-bar/capability-interval-bar.module.d.ts +10 -0
  127. package/src/lib/components/group-report/lib/components/capability/src/essentials/consts/capability-classification.const.d.ts +2 -0
  128. package/src/lib/components/group-report/lib/components/capability/src/essentials/interfaces/capability-classification.interface.d.ts +6 -0
  129. package/src/lib/components/group-report/lib/components/capability/src/essentials/interfaces/capability-comparative.interface.d.ts +10 -0
  130. package/src/lib/components/group-report/lib/components/capability/src/essentials/interfaces/capability-item.interface.d.ts +20 -0
  131. package/src/lib/components/group-report/lib/components/capability/src/essentials/interfaces/capability.interface.d.ts +8 -0
  132. package/src/lib/components/group-report/lib/components/capability/src/essentials/interfaces/index.d.ts +3 -0
  133. package/src/lib/components/group-report/lib/components/capability/src/essentials/services/capability-classification.service.d.ts +8 -0
  134. package/src/lib/components/group-report/lib/components/capability/src/essentials/services/reusable-interval-bar.service.d.ts +15 -0
  135. package/src/lib/components/group-report/lib/components/dropdown/public-api.d.ts +2 -0
  136. package/src/lib/components/group-report/lib/components/dropdown/src/dropdown.component.d.ts +40 -0
  137. package/src/lib/components/group-report/lib/components/dropdown/src/dropdown.module.d.ts +15 -0
  138. package/src/lib/components/group-report/lib/components/filters/public-api.d.ts +2 -0
  139. package/src/lib/components/group-report/lib/components/filters/src/filters.component.d.ts +14 -0
  140. package/src/lib/components/group-report/lib/components/filters/src/filters.module.d.ts +12 -0
  141. package/src/lib/components/group-report/lib/components/group-report/public-api.d.ts +2 -0
  142. package/src/lib/components/{table/lib/components/table → group-report/lib/components/group-report}/src/group-report-interface.d.ts +5 -11
  143. package/src/lib/components/group-report/lib/components/group-report/src/group-report.component.d.ts +46 -0
  144. package/src/lib/components/group-report/lib/components/group-report/src/group-report.module.d.ts +12 -0
  145. package/src/lib/components/group-report/lib/components/icon/public-api.d.ts +2 -0
  146. package/src/lib/components/group-report/lib/components/icon/src/icon.component.d.ts +13 -0
  147. package/src/lib/components/group-report/lib/components/icon/src/icon.module.d.ts +9 -0
  148. package/src/lib/components/group-report/lib/components/tag/public-api.d.ts +2 -0
  149. package/src/lib/components/group-report/lib/components/tag/src/tag.component.d.ts +12 -0
  150. package/src/lib/components/group-report/lib/components/tag/src/tag.module.d.ts +8 -0
  151. package/src/lib/components/group-report/lib/components/tooltip/src/tooltip.component.d.ts +15 -0
  152. package/src/lib/components/group-report/lib/components/tooltip/src/tooltip.directive.d.ts +32 -0
  153. package/src/lib/components/group-report/lib/components/tooltip/src/tooltip.enums.d.ts +13 -0
  154. package/src/lib/components/group-report/lib/components/tooltip/src/tooltip.module.d.ts +9 -0
  155. package/src/lib/components/group-report/lib/core/elements/action-button.d.ts +5 -0
  156. package/src/lib/components/group-report/lib/core/elements/dropdown.d.ts +4 -0
  157. package/src/lib/components/group-report/lib/core/elements/element-base.d.ts +64 -0
  158. package/src/lib/components/group-report/lib/core/elements/element-search.d.ts +6 -0
  159. package/src/lib/components/group-report/lib/core/elements/errors.d.ts +12 -0
  160. package/src/lib/components/group-report/lib/core/interfaces/classification.interface.d.ts +5 -0
  161. package/src/lib/components/group-report/lib/core/interfaces/element-group.interface.d.ts +5 -0
  162. package/src/lib/components/group-report/lib/core/interfaces/element-option.interface.d.ts +4 -0
  163. package/src/lib/components/group-report/lib/core/interfaces/table-column.interface.d.ts +17 -0
  164. package/src/lib/components/scale/index.d.ts +5 -0
  165. package/src/lib/components/scale/lib/components/group-report/src/group-report-interface.d.ts +23 -0
  166. package/src/lib/components/scale/lib/components/scale/public-api.d.ts +4 -0
  167. package/src/lib/components/scale/lib/components/scale/src/details/details.component.d.ts +5 -0
  168. package/src/lib/components/scale/lib/components/scale/src/progressbar/progressbar.component.d.ts +8 -0
  169. package/src/lib/components/scale/lib/components/scale/src/scale.component.d.ts +13 -0
  170. package/src/lib/components/scale/lib/components/scale/src/scale.interface.d.ts +31 -0
  171. package/src/lib/components/scale/lib/components/scale/src/scale.module.d.ts +10 -0
  172. package/src/lib/components/scale/lib/core/interfaces/classification.interface.d.ts +5 -0
  173. package/src/lib/components/scale/scale.d.ts +1 -0
  174. package/src/lib/components/table/lib/components/table/src/table.component.d.ts +3 -11
  175. package/src/lib/components/table/lib/core/interfaces/classification.interface.d.ts +5 -0
  176. package/src/lib/components/table/lib/core/interfaces/table-column.interface.d.ts +2 -0
  177. package/esm2020/src/lib/components/table/lib/components/table/src/group-report-interface.mjs +0 -2
  178. package/mapa-library-ui-0.42.0.tgz +0 -0
@@ -0,0 +1,14 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { FormControl, FormGroup } from '@angular/forms';
3
+ import { ElementBase } from 'mapa-library-ui';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FiltersComponent {
6
+ form: FormGroup;
7
+ elements: ElementBase[];
8
+ selectedValues: EventEmitter<any>;
9
+ getFormControl(filterKey: string): FormControl;
10
+ clearFilters(): void;
11
+ emitSelectedValues(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<FiltersComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<FiltersComponent, "mapa-filters", never, { "form": "form"; "elements": "elements"; }, { "selectedValues": "selectedValues"; }, never, never, false, never>;
14
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./filters.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "mapa-library-ui/src/lib/components/button";
5
+ import * as i4 from "mapa-library-ui/src/lib/components/checkbox";
6
+ import * as i5 from "mapa-library-ui/src/lib/components/dropdown";
7
+ import * as i6 from "mapa-library-ui/src/lib/components/input";
8
+ export declare class MapaFiltersModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaFiltersModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MapaFiltersModule, [typeof i1.FiltersComponent], [typeof i2.CommonModule, typeof i3.MapaButtonModule, typeof i4.MapaCheckboxModule, typeof i5.MapaDropdownModule, typeof i6.MapaInputModule], [typeof i1.FiltersComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<MapaFiltersModule>;
12
+ }
@@ -0,0 +1,2 @@
1
+ export * from './src/group-report.component';
2
+ export * from './src/group-report.module';
@@ -6,24 +6,18 @@ export interface Candidate {
6
6
  export interface Dimension {
7
7
  dimensionName: string;
8
8
  direction: string;
9
- escoreT: number;
9
+ escoreT?: number;
10
10
  average?: number;
11
+ percentage?: number;
11
12
  percentil?: any;
12
13
  sort?: boolean;
13
14
  classificationId?: number;
14
15
  classificationColor?: string;
15
- }
16
- export interface Indicator {
17
- name: string;
18
- direction: string;
19
- interval: number;
20
- average?: number;
21
- sort?: boolean;
22
- classificationId?: number;
23
- classificationColor?: string;
16
+ classificationName?: string;
17
+ count?: number;
18
+ dimensionClassificationMessage?: string;
24
19
  }
25
20
  export interface GroupReportItem {
26
21
  candidate: Candidate;
27
22
  dimensions?: Dimension[];
28
- indicators?: Indicator[];
29
23
  }
@@ -0,0 +1,46 @@
1
+ import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnInit, SimpleChanges } from "@angular/core";
2
+ import { MatSort, Sort } from "@angular/material/sort";
3
+ import { MatTableDataSource } from "@angular/material/table";
4
+ import { TableColumn } from "../../../core/interfaces/table-column.interface";
5
+ import { GroupReportItem } from "./group-report-interface";
6
+ import { Dimension } from "./group-report-interface";
7
+ import * as i0 from "@angular/core";
8
+ export declare class MapaGroupReportComponent implements OnInit, AfterViewInit {
9
+ private cdr;
10
+ groupReport: GroupReportItem[];
11
+ showGroupReportGeneral: boolean | undefined;
12
+ onSortChange: EventEmitter<Sort>;
13
+ sort: MatSort;
14
+ dataSource: MatTableDataSource<Object>;
15
+ displayedColumns: string[];
16
+ currentSort: Sort | undefined;
17
+ columns: TableColumn[];
18
+ data: Object[];
19
+ constructor(cdr: ChangeDetectorRef);
20
+ ngOnInit(): void;
21
+ ngAfterViewInit(): void;
22
+ ngOnChanges(changes: SimpleChanges): void;
23
+ sortData(column: TableColumn): void;
24
+ sortDataFunction(sort: Sort): void;
25
+ compare(a: any, b: any, isAsc: boolean): number;
26
+ generateColumns(): void;
27
+ columnExists(columns: TableColumn[], key: string): boolean;
28
+ generateGroupData(): void;
29
+ isBoolean(column: TableColumn, row: any): boolean;
30
+ isMaskedData(column: TableColumn, row: any): boolean;
31
+ getValueAsDate(column: TableColumn, row: any): Date;
32
+ getValue(row: any): any;
33
+ getBackgroundColor(column: TableColumn, row: any): string;
34
+ hasCustomClass(column: TableColumn, row: any, key: string): boolean;
35
+ getCustomClass(column: TableColumn, row: any, key: string): string;
36
+ hasCellStyleClass(row: any, key: string): boolean;
37
+ getCellStyleClass(row: any, key: string): string;
38
+ hasIndividualMenu(row: any): boolean;
39
+ createTag(item: Dimension): {
40
+ bgColor: string;
41
+ fontSize: string;
42
+ size: string;
43
+ };
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaGroupReportComponent, never>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapaGroupReportComponent, "mapa-group-report", never, { "groupReport": "groupReport"; "showGroupReportGeneral": "showGroupReportGeneral"; }, { "onSortChange": "onSortChange"; }, never, never, false, never>;
46
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./group-report.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/icon";
5
+ import * as i4 from "@angular/material/table";
6
+ import * as i5 from "@angular/material/sort";
7
+ import * as i6 from "../../tag/src/tag.module";
8
+ export declare class MapaGroupReportModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaGroupReportModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MapaGroupReportModule, [typeof i1.MapaGroupReportComponent], [typeof i2.CommonModule, typeof i3.MatIconModule, typeof i4.MatTableModule, typeof i5.MatSortModule, typeof i6.MapaTagModule], [typeof i1.MapaGroupReportComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<MapaGroupReportModule>;
12
+ }
@@ -0,0 +1,2 @@
1
+ export * from './src/icon.component';
2
+ export * from './src/icon.module';
@@ -0,0 +1,13 @@
1
+ import { MatIconRegistry } from "@angular/material/icon";
2
+ import { DomSanitizer } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ export declare class IconComponent {
5
+ private matIconRegistry;
6
+ private domSanitizer;
7
+ svg: string | null | undefined;
8
+ constructor(matIconRegistry: MatIconRegistry, domSanitizer: DomSanitizer);
9
+ ngOnChanges(): void;
10
+ registerCustomIcons(svg: string): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "mapa-icon", never, { "svg": "svg"; }, {}, never, ["*"], false, never>;
13
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./icon.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/icon";
5
+ export declare class MapaIconModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaIconModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MapaIconModule, [typeof i1.IconComponent], [typeof i2.CommonModule, typeof i3.MatIconModule], [typeof i1.IconComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<MapaIconModule>;
9
+ }
@@ -0,0 +1,2 @@
1
+ export * from './src/tag.component';
2
+ export * from './src/tag.module';
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ export interface Tag {
3
+ bgColor?: string | null | undefined;
4
+ color?: "highlight" | "selected" | string | null | undefined;
5
+ size?: "small" | string | null | undefined;
6
+ fontSize?: string | null | undefined;
7
+ }
8
+ export declare class TagComponent {
9
+ tag: Tag | undefined;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "mapa-tag", never, { "tag": "tag"; }, {}, never, ["*"], false, never>;
12
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tag.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class MapaTagModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaTagModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MapaTagModule, [typeof i1.TagComponent], [typeof i2.CommonModule], [typeof i1.TagComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<MapaTagModule>;
8
+ }
@@ -0,0 +1,15 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { TooltipPosition, TooltipTheme } from './tooltip.enums';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MapaTooltipComponent {
5
+ tooltip: TemplateRef<any>;
6
+ position: TooltipPosition;
7
+ theme: TooltipTheme;
8
+ visible: boolean;
9
+ left: number;
10
+ top: number;
11
+ constructor();
12
+ ngOnInit(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaTooltipComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapaTooltipComponent, "lib-tooltip", never, {}, {}, never, never, false, never>;
15
+ }
@@ -0,0 +1,32 @@
1
+ import { ApplicationRef, ComponentFactoryResolver, ElementRef, Injector, TemplateRef } from "@angular/core";
2
+ import { TooltipPosition, TooltipTheme } from "./tooltip.enums";
3
+ import * as i0 from "@angular/core";
4
+ export declare class MapaTooltipDirective {
5
+ private elementRef;
6
+ private appRef;
7
+ private componentFactoryResolver;
8
+ private injector;
9
+ tooltip: TemplateRef<any>;
10
+ position: TooltipPosition;
11
+ theme: TooltipTheme;
12
+ showDelay: number;
13
+ hideDelay: number;
14
+ private componentRef;
15
+ private showTimeout?;
16
+ private hideTimeout?;
17
+ private touchTimeout?;
18
+ constructor(elementRef: ElementRef, appRef: ApplicationRef, componentFactoryResolver: ComponentFactoryResolver, injector: Injector);
19
+ onMouseEnter(): void;
20
+ onMouseLeave(): void;
21
+ onMouseMove($event: MouseEvent): void;
22
+ onTouchStart($event: TouchEvent): void;
23
+ onTouchEnd(): void;
24
+ private initializeTooltip;
25
+ private setTooltipComponentProperties;
26
+ private showTooltip;
27
+ private setHideTooltipTimeout;
28
+ ngOnDestroy(): void;
29
+ destroy(): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaTooltipDirective, never>;
31
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MapaTooltipDirective, "[tooltip]", never, { "tooltip": "tooltip"; "position": "position"; "theme": "theme"; "showDelay": "showDelay"; "hideDelay": "hideDelay"; }, {}, never, never, false, never>;
32
+ }
@@ -0,0 +1,13 @@
1
+ export declare enum TooltipPosition {
2
+ ABOVE = "above",
3
+ BELOW = "below",
4
+ LEFT = "left",
5
+ RIGHT = "right",
6
+ DYNAMIC = "dynamic",
7
+ DEFAULT = "below"
8
+ }
9
+ export declare enum TooltipTheme {
10
+ DARK = "dark",
11
+ LIGHT = "light",
12
+ DEFAULT = "light"
13
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tooltip.component";
3
+ import * as i2 from "./tooltip.directive";
4
+ import * as i3 from "@angular/common";
5
+ export declare class MapaTooltipModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaTooltipModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MapaTooltipModule, [typeof i1.MapaTooltipComponent, typeof i2.MapaTooltipDirective], [typeof i3.CommonModule], [typeof i1.MapaTooltipComponent, typeof i2.MapaTooltipDirective]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<MapaTooltipModule>;
9
+ }
@@ -0,0 +1,5 @@
1
+ import { EventEmitter } from "@angular/core";
2
+ export interface ActionButton {
3
+ label: string;
4
+ action: EventEmitter<any>;
5
+ }
@@ -0,0 +1,4 @@
1
+ import { ElementBase } from './element-base';
2
+ export declare class Dropdown extends ElementBase {
3
+ controlType: string;
4
+ }
@@ -0,0 +1,64 @@
1
+ import { ElementGroup } from "../interfaces/element-group.interface";
2
+ import { ElementOption } from "../interfaces/element-option.interface";
3
+ import { ActionButton } from "./action-button";
4
+ import { ElementSearch } from "./element-search";
5
+ import { Errors } from "./errors";
6
+ export interface Status {
7
+ label: string;
8
+ }
9
+ export declare class ElementBase {
10
+ value: string;
11
+ key: string;
12
+ label: string;
13
+ required: boolean;
14
+ order: number;
15
+ controlType: string;
16
+ type: string;
17
+ placeholder?: string;
18
+ hint?: string;
19
+ prefix?: string;
20
+ suffix?: string;
21
+ autosize?: boolean;
22
+ autosizeMinWidth?: string;
23
+ autosizeMaxWidth?: string;
24
+ autosizeMinRow?: number;
25
+ autosizeMaxRow?: number;
26
+ options: ElementOption[] | ElementGroup[];
27
+ multiple?: boolean;
28
+ search?: ElementSearch;
29
+ maxLength: string | number | null;
30
+ errors?: Errors;
31
+ actionButton?: ActionButton;
32
+ mask?: string;
33
+ autocomplete?: string;
34
+ clearValue?: boolean;
35
+ status?: Status[];
36
+ constructor(options?: {
37
+ value?: string;
38
+ key?: string;
39
+ label?: string;
40
+ required?: boolean;
41
+ order?: number;
42
+ controlType?: string;
43
+ type?: string;
44
+ placeholder?: string;
45
+ hint?: string;
46
+ prefix?: string;
47
+ suffix?: string;
48
+ autosize?: boolean;
49
+ autosizeMinWidth?: string;
50
+ autosizeMaxWidth?: string;
51
+ autosizeMinRow?: number;
52
+ autosizeMaxRow?: number;
53
+ options?: ElementOption[] | ElementGroup[];
54
+ multiple?: boolean;
55
+ search?: ElementSearch;
56
+ maxLength?: string | number | null;
57
+ errors?: Errors;
58
+ actionButton?: ActionButton;
59
+ mask?: string;
60
+ autocomplete?: string;
61
+ clearValue?: boolean;
62
+ status?: Status[];
63
+ });
64
+ }
@@ -0,0 +1,6 @@
1
+ import { FormControl } from "@angular/forms";
2
+ export interface ElementSearch {
3
+ placeholder?: string;
4
+ noEntriesFoundLabel?: string;
5
+ formControl?: FormControl;
6
+ }
@@ -0,0 +1,12 @@
1
+ export interface Errors {
2
+ required?: string;
3
+ minlength?: string;
4
+ cpf?: string;
5
+ cnpj?: string;
6
+ email?: string;
7
+ pattern?: string;
8
+ min?: string;
9
+ max?: string;
10
+ minLength?: string;
11
+ maxLength?: string;
12
+ }
@@ -0,0 +1,5 @@
1
+ export interface Classification {
2
+ classificationId?: number;
3
+ classificationName?: string;
4
+ classificationColor?: string;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { ElementOption } from "./element-option.interface";
2
+ export interface ElementGroup {
3
+ label: string;
4
+ options: ElementOption[];
5
+ }
@@ -0,0 +1,4 @@
1
+ export interface ElementOption {
2
+ key: string;
3
+ value: string;
4
+ }
@@ -0,0 +1,17 @@
1
+ import { Classification } from "./classification.interface";
2
+ export interface TableColumnStatus {
3
+ label?: string[];
4
+ color?: string[];
5
+ }
6
+ export interface TableColumn {
7
+ key: string;
8
+ label: string;
9
+ sort?: boolean;
10
+ status?: TableColumnStatus;
11
+ mask?: string;
12
+ width?: string;
13
+ collapse?: string;
14
+ align?: string;
15
+ class?: string;
16
+ classification?: Classification;
17
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="mapa-library-ui/src/lib/components/scale" />
5
+ export * from './scale';
@@ -0,0 +1,23 @@
1
+ export interface Candidate {
2
+ name: string;
3
+ cpf?: string;
4
+ general?: number;
5
+ }
6
+ export interface Dimension {
7
+ dimensionName: string;
8
+ direction: string;
9
+ escoreT?: number;
10
+ average?: number;
11
+ percentage?: number;
12
+ percentil?: any;
13
+ sort?: boolean;
14
+ classificationId?: number;
15
+ classificationColor?: string;
16
+ classificationName?: string;
17
+ count?: number;
18
+ dimensionClassificationMessage?: string;
19
+ }
20
+ export interface GroupReportItem {
21
+ candidate: Candidate;
22
+ dimensions?: Dimension[];
23
+ }
@@ -0,0 +1,4 @@
1
+ export * from './src/scale.component';
2
+ export * from './src/scale.module';
3
+ export * from './src/progressbar/progressbar.component';
4
+ export * from './src/details/details.component';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class MapaDetailsComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaDetailsComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapaDetailsComponent, "mapa-details", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,8 @@
1
+ import { ProgressBar } from "../scale.interface";
2
+ import * as i0 from "@angular/core";
3
+ export declare class MapaProgressbarComponent {
4
+ data: ProgressBar;
5
+ showInterval: boolean;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaProgressbarComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapaProgressbarComponent, "mapa-progressbar", never, { "data": "data"; "showInterval": "showInterval"; }, {}, never, never, false, never>;
8
+ }
@@ -0,0 +1,13 @@
1
+ import { Dimension } from "../../group-report/src/group-report-interface";
2
+ import { Competence, Scale, ProgressBar } from "./scale.interface";
3
+ import * as i0 from "@angular/core";
4
+ export declare class MapaScaleComponent {
5
+ data: Competence[];
6
+ showProgressbar: boolean;
7
+ getProgressbarData(scale: Scale): ProgressBar;
8
+ isPositive(dimension: Dimension): boolean;
9
+ showSummarized(dimension: Dimension): boolean;
10
+ getCompetenceImg(competence: Competence): string;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaScaleComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapaScaleComponent, "mapa-scale", never, { "data": "data"; "showProgressbar": "showProgressbar"; }, {}, never, never, false, never>;
13
+ }
@@ -0,0 +1,31 @@
1
+ import { Classification } from "../../../core/interfaces/classification.interface";
2
+ export interface Dimension {
3
+ dimensionName: string;
4
+ direction: string;
5
+ escoreT?: number;
6
+ average?: number;
7
+ percentage?: number;
8
+ percentil?: number;
9
+ dimensionClassificationMessage?: string;
10
+ dimensionConcept?: string;
11
+ classification?: Classification;
12
+ }
13
+ export interface ProgressBar {
14
+ interval: number;
15
+ classification?: Classification;
16
+ }
17
+ export interface Scale {
18
+ scaleName: string;
19
+ interval: number;
20
+ classification?: Classification;
21
+ scaleConcept?: string;
22
+ scaleDirection?: string;
23
+ average?: number;
24
+ percentage?: number;
25
+ dimensions: Dimension[];
26
+ }
27
+ export interface Competence {
28
+ competenceName: string;
29
+ scales: Scale[];
30
+ percentage?: number;
31
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./scale.component";
3
+ import * as i2 from "./progressbar/progressbar.component";
4
+ import * as i3 from "./details/details.component";
5
+ import * as i4 from "@angular/common";
6
+ export declare class MapaScaleModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapaScaleModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MapaScaleModule, [typeof i1.MapaScaleComponent, typeof i2.MapaProgressbarComponent, typeof i3.MapaDetailsComponent], [typeof i4.CommonModule], [typeof i1.MapaScaleComponent, typeof i2.MapaProgressbarComponent, typeof i3.MapaDetailsComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<MapaScaleModule>;
10
+ }
@@ -0,0 +1,5 @@
1
+ export interface Classification {
2
+ classificationId?: number;
3
+ classificationName?: string;
4
+ classificationColor?: string;
5
+ }
@@ -0,0 +1 @@
1
+ export * from './lib/components/scale/public-api';
@@ -1,16 +1,15 @@
1
1
  import { SelectionModel } from "@angular/cdk/collections";
2
- import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnInit, SimpleChanges } from "@angular/core";
2
+ import { AfterViewInit, ChangeDetectorRef, EventEmitter, SimpleChanges } from "@angular/core";
3
3
  import { FormGroup, FormControl } from "@angular/forms";
4
4
  import { MatPaginator, PageEvent } from "@angular/material/paginator";
5
5
  import { MatSort, Sort } from "@angular/material/sort";
6
6
  import { MatTableDataSource } from "@angular/material/table";
7
7
  import { RowClickEvent } from "../../../core/interfaces/table-row-click-event.interface";
8
8
  import { TableColumn } from "../../../core/interfaces/table-column.interface";
9
- import { GroupReportItem } from "./group-report-interface";
10
9
  import { MatMenuTrigger } from "@angular/material/menu";
11
10
  import { MenuItem } from "../../menu/public-api";
12
11
  import * as i0 from "@angular/core";
13
- export declare class MapaTableComponent implements OnInit, AfterViewInit {
12
+ export declare class MapaTableComponent implements AfterViewInit {
14
13
  private cdr;
15
14
  columns: TableColumn[];
16
15
  data: Object[];
@@ -22,9 +21,6 @@ export declare class MapaTableComponent implements OnInit, AfterViewInit {
22
21
  selection: SelectionModel<any> | undefined;
23
22
  actions?: MenuItem[] | undefined;
24
23
  filterControl: FormControl | undefined;
25
- groupReport: GroupReportItem[];
26
- isGroupReport: boolean | undefined;
27
- showGroupReportGeneral: boolean | undefined;
28
24
  menuItems: MenuItem[];
29
25
  menu: boolean | undefined;
30
26
  showPaginator: boolean;
@@ -40,7 +36,6 @@ export declare class MapaTableComponent implements OnInit, AfterViewInit {
40
36
  displayedColumns: string[];
41
37
  currentSort: Sort | undefined;
42
38
  constructor(cdr: ChangeDetectorRef);
43
- ngOnInit(): void;
44
39
  ngAfterViewInit(): void;
45
40
  ngOnChanges(changes: SimpleChanges): void;
46
41
  setupFilter(): void;
@@ -61,9 +56,6 @@ export declare class MapaTableComponent implements OnInit, AfterViewInit {
61
56
  getCellClass(column: TableColumn, row: any): string;
62
57
  getCellBg(column: TableColumn, row: any): string;
63
58
  getCellTextColor(column: TableColumn, row: any): string;
64
- getRowClass(): {
65
- [key: string]: boolean;
66
- };
67
59
  getValue(row: {
68
60
  value: string;
69
61
  }): string;
@@ -77,5 +69,5 @@ export declare class MapaTableComponent implements OnInit, AfterViewInit {
77
69
  handleMenu(selected: any): void;
78
70
  hasIndividualMenu(row: any): boolean;
79
71
  static ɵfac: i0.ɵɵFactoryDeclaration<MapaTableComponent, never>;
80
- static ɵcmp: i0.ɵɵComponentDeclaration<MapaTableComponent, "mapa-table", never, { "columns": "columns"; "data": "data"; "pageIndex": "pageIndex"; "pageSize": "pageSize"; "totalCount": "totalCount"; "totalPages": "totalPages"; "checkbox": "checkbox"; "selection": "selection"; "actions": "actions"; "filterControl": "filterControl"; "groupReport": "groupReport"; "isGroupReport": "isGroupReport"; "showGroupReportGeneral": "showGroupReportGeneral"; "menuItems": "menuItems"; "menu": "menu"; "showPaginator": "showPaginator"; }, { "rowClick": "rowClick"; "selectedRows": "selectedRows"; "onChangePage": "onChangePage"; "onSortChange": "onSortChange"; }, never, never, false, never>;
72
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapaTableComponent, "mapa-table", never, { "columns": "columns"; "data": "data"; "pageIndex": "pageIndex"; "pageSize": "pageSize"; "totalCount": "totalCount"; "totalPages": "totalPages"; "checkbox": "checkbox"; "selection": "selection"; "actions": "actions"; "filterControl": "filterControl"; "menuItems": "menuItems"; "menu": "menu"; "showPaginator": "showPaginator"; }, { "rowClick": "rowClick"; "selectedRows": "selectedRows"; "onChangePage": "onChangePage"; "onSortChange": "onSortChange"; }, never, never, false, never>;
81
73
  }
@@ -0,0 +1,5 @@
1
+ export interface Classification {
2
+ classificationId?: number;
3
+ classificationName?: string;
4
+ classificationColor?: string;
5
+ }
@@ -1,3 +1,4 @@
1
+ import { Classification } from "./classification.interface";
1
2
  export interface TableColumnStatus {
2
3
  label?: string[];
3
4
  color?: string[];
@@ -12,4 +13,5 @@ export interface TableColumn {
12
13
  collapse?: string;
13
14
  align?: string;
14
15
  class?: string;
16
+ classification?: Classification;
15
17
  }
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ3JvdXAtcmVwb3J0LWludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL21hcGEtbGlicmFyeS11aS9zcmMvbGliL2NvbXBvbmVudHMvdGFibGUvc3JjL2dyb3VwLXJlcG9ydC1pbnRlcmZhY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgQ2FuZGlkYXRlIHtcbiAgbmFtZTogc3RyaW5nO1xuICBjcGY/OiBzdHJpbmc7XG4gIGdlbmVyYWw/OiBudW1iZXI7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgRGltZW5zaW9uIHtcbiAgZGltZW5zaW9uTmFtZTogc3RyaW5nO1xuICBkaXJlY3Rpb246IHN0cmluZztcbiAgZXNjb3JlVDogbnVtYmVyO1xuICBhdmVyYWdlPzogbnVtYmVyO1xuICBwZXJjZW50aWw/OiBhbnk7XG4gIHNvcnQ/OiBib29sZWFuO1xuICBjbGFzc2lmaWNhdGlvbklkPzogbnVtYmVyO1xuICBjbGFzc2lmaWNhdGlvbkNvbG9yPzogc3RyaW5nO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEluZGljYXRvciB7XG4gIG5hbWU6IHN0cmluZztcbiAgZGlyZWN0aW9uOiBzdHJpbmc7XG4gIGludGVydmFsOiBudW1iZXI7XG4gIGF2ZXJhZ2U/OiBudW1iZXI7XG4gIHNvcnQ/OiBib29sZWFuO1xuICBjbGFzc2lmaWNhdGlvbklkPzogbnVtYmVyO1xuICBjbGFzc2lmaWNhdGlvbkNvbG9yPzogc3RyaW5nO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEdyb3VwUmVwb3J0SXRlbSB7XG4gIGNhbmRpZGF0ZTogQ2FuZGlkYXRlO1xuICBkaW1lbnNpb25zPzogRGltZW5zaW9uW107XG4gIGluZGljYXRvcnM/OiBJbmRpY2F0b3JbXTtcbn1cbiJdfQ==
Binary file