info-library 2.10.81 → 2.14.0-beta

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 (176) hide show
  1. package/controls/alert/alert.component.d.ts +3 -0
  2. package/controls/autocomplete/autocomplete.component.d.ts +5 -2
  3. package/controls/big-checkbox/big-checkbox.component.d.ts +3 -0
  4. package/controls/card/card.component.d.ts +3 -0
  5. package/controls/card-menu/card-menu.component.d.ts +3 -0
  6. package/controls/checkbox/checkbox.component.d.ts +3 -0
  7. package/controls/chips/chips.component.d.ts +3 -0
  8. package/controls/date/date.component.d.ts +3 -0
  9. package/controls/date-month/date-month.component.d.ts +3 -0
  10. package/controls/editor/editor.component.d.ts +3 -0
  11. package/controls/grid/grid.component.d.ts +12 -0
  12. package/controls/input/input.component.d.ts +3 -0
  13. package/controls/input-list/input-list.component.d.ts +3 -0
  14. package/controls/list-checkbox/list-checkbox.component.d.ts +3 -0
  15. package/controls/message/message.component.d.ts +3 -0
  16. package/controls/multi-select/multi-select.component.d.ts +3 -0
  17. package/controls/paginator/paginator.component.d.ts +3 -0
  18. package/controls/select/select.component.d.ts +3 -0
  19. package/controls/timeline/timeline.component.d.ts +3 -0
  20. package/directives/mask.directive.d.ts +3 -0
  21. package/directives/unmask.directive.d.ts +3 -0
  22. package/esm2020/controls/alert/alert.component.mjs +74 -0
  23. package/esm2020/controls/autocomplete/autocomplete.component.mjs +258 -0
  24. package/esm2020/controls/big-checkbox/big-checkbox.component.mjs +298 -0
  25. package/esm2020/controls/card/card.component.mjs +77 -0
  26. package/esm2020/controls/card-menu/card-menu.component.mjs +145 -0
  27. package/esm2020/controls/checkbox/checkbox.component.mjs +93 -0
  28. package/esm2020/controls/chips/chips.component.mjs +113 -0
  29. package/esm2020/controls/date/date.component.mjs +141 -0
  30. package/esm2020/controls/date-month/date-month.component.mjs +148 -0
  31. package/esm2020/controls/editor/editor.component.mjs +135 -0
  32. package/esm2020/controls/grid/grid.component.mjs +1800 -0
  33. package/esm2020/controls/input/input.component.mjs +314 -0
  34. package/esm2020/controls/input-list/input-list.component.mjs +258 -0
  35. package/esm2020/controls/list-checkbox/list-checkbox.component.mjs +238 -0
  36. package/esm2020/controls/message/message.component.mjs +50 -0
  37. package/esm2020/controls/multi-select/multi-select.component.mjs +161 -0
  38. package/esm2020/controls/paginator/paginator.component.mjs +178 -0
  39. package/esm2020/controls/select/select.component.mjs +180 -0
  40. package/esm2020/controls/timeline/timeline.component.mjs +117 -0
  41. package/esm2020/directives/mask.directive.mjs +125 -0
  42. package/esm2020/directives/unmask.directive.mjs +28 -0
  43. package/esm2020/enum/dialog-buttons.enum.mjs +9 -0
  44. package/esm2020/enum/index.mjs +4 -0
  45. package/esm2020/enum/modal-action.enum.mjs +12 -0
  46. package/esm2020/enum/page-action.enum.mjs +10 -0
  47. package/esm2020/global-config.mjs +4 -0
  48. package/esm2020/info-library.mjs +5 -0
  49. package/esm2020/info-library.module.mjs +278 -0
  50. package/esm2020/layouts/dialog/dialog.component.mjs +188 -0
  51. package/esm2020/layouts/loading/loading.component.mjs +42 -0
  52. package/esm2020/layouts/main/main.component.mjs +258 -0
  53. package/esm2020/layouts/modal/modal.component.mjs +258 -0
  54. package/esm2020/layouts/pagebar/pagebar.component.mjs +404 -0
  55. package/esm2020/layouts/sidebar/sidebar.component.mjs +395 -0
  56. package/esm2020/layouts/topbar/topbar.component.mjs +868 -0
  57. package/esm2020/layouts/topmenu/topmenu.component.mjs +165 -0
  58. package/esm2020/model/app-config.model.mjs +14 -0
  59. package/esm2020/model/data-access.model.mjs +35 -0
  60. package/esm2020/model/dialog-result.model.mjs +8 -0
  61. package/esm2020/model/dialog.model.mjs +16 -0
  62. package/esm2020/model/form-prop.model.mjs +35 -0
  63. package/esm2020/model/grid-button.model.mjs +21 -0
  64. package/esm2020/model/index.mjs +15 -0
  65. package/esm2020/model/last-search.model.mjs +9 -0
  66. package/esm2020/model/login.model.mjs +9 -0
  67. package/esm2020/model/method-grid-button.model.mjs +9 -0
  68. package/esm2020/model/notification.model.mjs +9 -0
  69. package/esm2020/model/pagebar-buttons.model.mjs +15 -0
  70. package/esm2020/model/permission.model.mjs +3 -0
  71. package/esm2020/model/platform.model.mjs +21 -0
  72. package/esm2020/model/session.model.mjs +8 -0
  73. package/esm2020/pipe/index.mjs +3 -0
  74. package/esm2020/pipe/mask.pipe.mjs +34 -0
  75. package/esm2020/pipe/translate.pipe.mjs +26 -0
  76. package/esm2020/public_api.mjs +36 -0
  77. package/esm2020/service/authentication.service.mjs +358 -0
  78. package/esm2020/service/configuration.service.mjs +59 -0
  79. package/esm2020/service/data.service.mjs +112 -0
  80. package/esm2020/service/index.mjs +6 -0
  81. package/esm2020/service/theme.service.mjs +79 -0
  82. package/esm2020/service/translate.service.mjs +53 -0
  83. package/esm2020/utils/utilities.mjs +142 -0
  84. package/fesm2015/info-library.mjs +9312 -0
  85. package/fesm2015/info-library.mjs.map +1 -0
  86. package/fesm2020/info-library.mjs +8462 -0
  87. package/fesm2020/info-library.mjs.map +1 -0
  88. package/index.d.ts +5 -0
  89. package/info-library.module.d.ts +58 -0
  90. package/layouts/dialog/dialog.component.d.ts +5 -0
  91. package/layouts/loading/loading.component.d.ts +3 -0
  92. package/layouts/main/main.component.d.ts +3 -0
  93. package/layouts/modal/modal.component.d.ts +3 -0
  94. package/layouts/pagebar/pagebar.component.d.ts +5 -0
  95. package/layouts/sidebar/sidebar.component.d.ts +3 -0
  96. package/layouts/topbar/topbar.component.d.ts +3 -0
  97. package/layouts/topmenu/topmenu.component.d.ts +3 -0
  98. package/package.json +32 -17
  99. package/pipe/mask.pipe.d.ts +3 -0
  100. package/pipe/translate.pipe.d.ts +3 -0
  101. package/service/authentication.service.d.ts +5 -0
  102. package/service/configuration.service.d.ts +3 -0
  103. package/service/data.service.d.ts +3 -0
  104. package/service/theme.service.d.ts +3 -0
  105. package/service/translate.service.d.ts +3 -0
  106. package/utils/utilities.d.ts +3 -0
  107. package/bundles/info-library.umd.js +0 -9545
  108. package/bundles/info-library.umd.js.map +0 -1
  109. package/bundles/info-library.umd.min.js +0 -2
  110. package/bundles/info-library.umd.min.js.map +0 -1
  111. package/esm2015/controls/alert/alert.component.js +0 -43
  112. package/esm2015/controls/autocomplete/autocomplete.component.js +0 -386
  113. package/esm2015/controls/big-checkbox/big-checkbox.component.js +0 -282
  114. package/esm2015/controls/card/card.component.js +0 -64
  115. package/esm2015/controls/card-menu/card-menu.component.js +0 -90
  116. package/esm2015/controls/checkbox/checkbox.component.js +0 -130
  117. package/esm2015/controls/chips/chips.component.js +0 -124
  118. package/esm2015/controls/date/date.component.js +0 -167
  119. package/esm2015/controls/date-month/date-month.component.js +0 -181
  120. package/esm2015/controls/editor/editor.component.js +0 -237
  121. package/esm2015/controls/grid/grid.component.js +0 -1346
  122. package/esm2015/controls/input/input.component.js +0 -196
  123. package/esm2015/controls/input-list/input-list.component.js +0 -160
  124. package/esm2015/controls/list-checkbox/list-checkbox.component.js +0 -151
  125. package/esm2015/controls/message/message.component.js +0 -47
  126. package/esm2015/controls/multi-select/multi-select.component.js +0 -213
  127. package/esm2015/controls/paginator/paginator.component.js +0 -151
  128. package/esm2015/controls/select/select.component.js +0 -231
  129. package/esm2015/controls/timeline/timeline.component.js +0 -73
  130. package/esm2015/directives/mask.directive.js +0 -202
  131. package/esm2015/directives/unmask.directive.js +0 -51
  132. package/esm2015/enum/dialog-buttons.enum.js +0 -20
  133. package/esm2015/enum/index.js +0 -9
  134. package/esm2015/enum/modal-action.enum.js +0 -26
  135. package/esm2015/enum/page-action.enum.js +0 -22
  136. package/esm2015/global-config.js +0 -11
  137. package/esm2015/info-library.js +0 -27
  138. package/esm2015/info-library.module.js +0 -174
  139. package/esm2015/layouts/dialog/dialog.component.js +0 -173
  140. package/esm2015/layouts/loading/loading.component.js +0 -42
  141. package/esm2015/layouts/main/main.component.js +0 -312
  142. package/esm2015/layouts/modal/modal.component.js +0 -232
  143. package/esm2015/layouts/pagebar/pagebar.component.js +0 -286
  144. package/esm2015/layouts/sidebar/sidebar.component.js +0 -231
  145. package/esm2015/layouts/topbar/topbar.component.js +0 -413
  146. package/esm2015/layouts/topmenu/topmenu.component.js +0 -181
  147. package/esm2015/model/app-config.model.js +0 -39
  148. package/esm2015/model/data-access.model.js +0 -65
  149. package/esm2015/model/dialog-result.model.js +0 -23
  150. package/esm2015/model/dialog.model.js +0 -47
  151. package/esm2015/model/form-prop.model.js +0 -61
  152. package/esm2015/model/grid-button.model.js +0 -62
  153. package/esm2015/model/index.js +0 -20
  154. package/esm2015/model/last-search.model.js +0 -24
  155. package/esm2015/model/login.model.js +0 -27
  156. package/esm2015/model/method-grid-button.model.js +0 -27
  157. package/esm2015/model/notification.model.js +0 -34
  158. package/esm2015/model/pagebar-buttons.model.js +0 -39
  159. package/esm2015/model/permission.model.js +0 -16
  160. package/esm2015/model/platform.model.js +0 -56
  161. package/esm2015/model/session.model.js +0 -53
  162. package/esm2015/pipe/index.js +0 -8
  163. package/esm2015/pipe/mask.pipe.js +0 -47
  164. package/esm2015/pipe/translate.pipe.js +0 -45
  165. package/esm2015/public_api.js +0 -41
  166. package/esm2015/service/authentication.service.js +0 -732
  167. package/esm2015/service/configuration.service.js +0 -107
  168. package/esm2015/service/data.service.js +0 -292
  169. package/esm2015/service/index.js +0 -11
  170. package/esm2015/service/theme.service.js +0 -133
  171. package/esm2015/service/translate.service.js +0 -105
  172. package/esm2015/utils/utilities.js +0 -256
  173. package/fesm2015/info-library.js +0 -8747
  174. package/fesm2015/info-library.js.map +0 -1
  175. package/info-library.d.ts +0 -21
  176. package/info-library.metadata.json +0 -1
@@ -1,4 +1,7 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class InfoAlertComponent {
2
3
  messages: string[];
3
4
  onClose(): void;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoAlertComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoAlertComponent, "info-alert", never, { "messages": "messages"; }, {}, never, ["*"], false>;
4
7
  }
@@ -1,10 +1,11 @@
1
1
  import { OnInit, EventEmitter } from "@angular/core";
2
- import { FormControl, ControlValueAccessor } from "@angular/forms";
2
+ import { UntypedFormControl, ControlValueAccessor } from "@angular/forms";
3
3
  import { InfoDataService } from "../../service/data.service";
4
4
  import { Observable } from "rxjs";
5
+ import * as i0 from "@angular/core";
5
6
  export declare class InfoAutoCompleteComponent implements OnInit, ControlValueAccessor {
6
7
  private _dataAcess;
7
- control: FormControl;
8
+ control: UntypedFormControl;
8
9
  placeholder: string;
9
10
  name: string;
10
11
  required: boolean;
@@ -45,4 +46,6 @@ export declare class InfoAutoCompleteComponent implements OnInit, ControlValueAc
45
46
  registerOnChange(fn: any): void;
46
47
  registerOnTouched(fn: any): void;
47
48
  setDisabledState?(isDisabled: boolean): void;
49
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoAutoCompleteComponent, never>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoAutoCompleteComponent, "info-autocomplete", never, { "placeholder": "placeholder"; "name": "name"; "required": "required"; "selectfirst": "selectfirst"; "disablednoregisters": "disablednoregisters"; "getdataonchange": "getdataonchange"; "getdataonchangetime": "getdataonchangetime"; "api": "api"; "method": "method"; "maxlist": "maxlist"; "startwith": "startwith"; "minchar": "minchar"; "loading": "loading"; "params": "params"; "disabled": "disabled"; "data": "data"; }, { "onselecteditem": "onselecteditem"; }, never, never, false>;
48
51
  }
@@ -1,5 +1,6 @@
1
1
  import { OnInit } from "@angular/core";
2
2
  import { InfoDataService } from "../../service/data.service";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class InfoBigCheckboxComponent implements OnInit {
4
5
  private _dataService;
5
6
  readonly: boolean;
@@ -35,4 +36,6 @@ export declare class InfoBigCheckboxComponent implements OnInit {
35
36
  existData(): boolean;
36
37
  add(item: any): void;
37
38
  selectAll(): void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoBigCheckboxComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoBigCheckboxComponent, "info-big-checkbox", never, { "readonly": "readonly"; "preload": "preload"; "enabledcheckall": "enabledcheckall"; "labelselectall": "labelselectall"; "labelsearch": "labelsearch"; "minchar": "minchar"; "max": "max"; "message": "message"; "submessage": "submessage"; "value": "value"; "api": "api"; "method": "method"; "model": "model"; "data": "data"; "aux": "aux"; "params": "params"; "paramsmodel": "paramsmodel"; }, {}, never, never, false>;
38
41
  }
@@ -1,5 +1,6 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { Router } from '@angular/router';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class InfoCardComponent {
4
5
  private _router;
5
6
  label: string;
@@ -10,4 +11,6 @@ export declare class InfoCardComponent {
10
11
  onclick: EventEmitter<any>;
11
12
  constructor(_router: Router);
12
13
  onCardClick(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoCardComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoCardComponent, "info-card", never, { "label": "label"; "description": "description"; "mark": "mark"; "url": "url"; "icon": "icon"; }, { "onclick": "onclick"; }, never, never, false>;
13
16
  }
@@ -1,4 +1,5 @@
1
1
  import { OnInit } from "@angular/core";
2
+ import * as i0 from "@angular/core";
2
3
  /**
3
4
  * O atributo `menu` recebe uma lista responsável pela criação do menu:
4
5
  * ```
@@ -17,4 +18,6 @@ export declare class InfoMenuCardComponent implements OnInit {
17
18
  colClass: string;
18
19
  ngOnInit(): void;
19
20
  load(): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoMenuCardComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoMenuCardComponent, "info-card-menu", never, { "label": "label"; "description": "description"; "icon": "icon"; "menu": "menu"; "cols": "cols"; "loadinit": "loadinit"; }, {}, never, never, false>;
20
23
  }
@@ -1,5 +1,6 @@
1
1
  import { OnInit } from "@angular/core";
2
2
  import { ControlValueAccessor } from "@angular/forms";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class InfoCheckboxComponent implements OnInit, ControlValueAccessor {
4
5
  placeholder: string;
5
6
  type: string;
@@ -21,4 +22,6 @@ export declare class InfoCheckboxComponent implements OnInit, ControlValueAccess
21
22
  registerOnTouched(fn: any): void;
22
23
  setDisabledState?(isDisabled: boolean): void;
23
24
  onChangeValue(): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoCheckboxComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoCheckboxComponent, "info-checkbox", never, { "placeholder": "placeholder"; "type": "type"; "min": "min"; "checked": "checked"; }, {}, never, never, false>;
24
27
  }
@@ -1,5 +1,6 @@
1
1
  import { EventEmitter } from "@angular/core";
2
2
  import { ControlValueAccessor } from "@angular/forms";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class InfoChipsComponent implements ControlValueAccessor {
4
5
  placeholder: string;
5
6
  disabled: boolean;
@@ -17,4 +18,6 @@ export declare class InfoChipsComponent implements ControlValueAccessor {
17
18
  registerOnChange(fn: any): void;
18
19
  registerOnTouched(fn: any): void;
19
20
  setDisabledState?(isDisabled: boolean): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoChipsComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoChipsComponent, "info-chips", never, { "placeholder": "placeholder"; "disabled": "disabled"; "readonly": "readonly"; }, { "onblur": "onblur"; }, never, never, false>;
20
23
  }
@@ -1,4 +1,5 @@
1
1
  import { ControlValueAccessor } from "@angular/forms";
2
+ import * as i0 from "@angular/core";
2
3
  export declare const PT_BR_DATE_FORMATS: {
3
4
  parse: {
4
5
  dateInput: string;
@@ -31,4 +32,6 @@ export declare class InfoDateComponent implements ControlValueAccessor {
31
32
  registerOnTouched(fn: any): void;
32
33
  setDisabledState?(isDisabled: boolean): void;
33
34
  onKeyPress(e: any): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoDateComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoDateComponent, "info-date", never, { "placeholder": "placeholder"; "disabled": "disabled"; "required": "required"; "minDate": "minDate"; "maxDate": "maxDate"; "datefilter": "datefilter"; "dateclass": "dateclass"; }, {}, never, never, false>;
34
37
  }
@@ -1,6 +1,7 @@
1
1
  import { ControlValueAccessor } from "@angular/forms";
2
2
  import { MatDatepicker } from '@angular/material/datepicker';
3
3
  import { Moment } from "moment";
4
+ import * as i0 from "@angular/core";
4
5
  export declare const PT_BR_DATE_MONTH_FORMATS: {
5
6
  parse: {
6
7
  dateInput: string;
@@ -33,4 +34,6 @@ export declare class InfoDateMonthComponent implements ControlValueAccessor {
33
34
  chosenYearHandler(value: Moment): void;
34
35
  chosenMonthHandler(value: Moment, datepicker: MatDatepicker<Moment>): void;
35
36
  onKeyPress(e: any): void;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoDateMonthComponent, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoDateMonthComponent, "info-date-month", never, { "placeholder": "placeholder"; "disabled": "disabled"; "required": "required"; "changeonlyonmonth": "changeonlyonmonth"; "minDate": "minDate"; }, {}, never, never, false>;
36
39
  }
@@ -1,6 +1,7 @@
1
1
  import { ControlValueAccessor } from '@angular/forms';
2
2
  import { DomSanitizer } from '@angular/platform-browser';
3
3
  import { AngularEditorComponent, AngularEditorConfig } from '@kolkov/angular-editor';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class InfoEditorComponent implements ControlValueAccessor {
5
6
  private _sanitizer;
6
7
  editor: AngularEditorComponent;
@@ -34,4 +35,6 @@ export declare class InfoEditorComponent implements ControlValueAccessor {
34
35
  registerOnChange(fn: any): void;
35
36
  registerOnTouched(fn: any): void;
36
37
  setDisabledState?(isDisabled: boolean): void;
38
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoEditorComponent, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoEditorComponent, "info-editor", never, { "required": "required"; "enabledhtmlmode": "enabledhtmlmode"; "sanitize": "sanitize"; "disabled": "disabled"; "height": "height"; "minheight": "minheight"; "maxheight": "maxheight"; "width": "width"; "minwidth": "minwidth"; }, {}, never, never, false>;
37
40
  }
@@ -14,6 +14,7 @@ import { InfoMethodGridButtonModel } from "../../model/method-grid-button.model"
14
14
  import { NgModel, NgForm } from '@angular/forms';
15
15
  import { QueryList } from '@angular/core';
16
16
  import { InfoPlatformModel } from "../../model/platform.model";
17
+ import * as i0 from "@angular/core";
17
18
  export declare class InfoGridComponent implements OnInit, AfterViewInit {
18
19
  private _dialog;
19
20
  _platform: InfoPlatformModel;
@@ -59,6 +60,7 @@ export declare class InfoGridComponent implements OnInit, AfterViewInit {
59
60
  enabledclassicons: boolean;
60
61
  enabledclickaccess: boolean;
61
62
  enabledclickevent: boolean;
63
+ enabledexpand: boolean;
62
64
  searchopened: boolean;
63
65
  searchonlyonebutton: boolean;
64
66
  disablesearchlast: boolean;
@@ -102,10 +104,13 @@ export declare class InfoGridComponent implements OnInit, AfterViewInit {
102
104
  colunasWidth: any[];
103
105
  colunasTranslate: any[];
104
106
  colunasHtml: any[];
107
+ colunasItensExpandidos: any[];
105
108
  currentUrl: string;
106
109
  url: string;
107
110
  chaveStorage: string;
108
111
  identificador: string;
112
+ limitcharacters: number;
113
+ callTimeout: any;
109
114
  paginator: InfoPaginatorComponent;
110
115
  parentIdUrlChange: EventEmitter<any>;
111
116
  parentIdUrlValue: number;
@@ -117,7 +122,9 @@ export declare class InfoGridComponent implements OnInit, AfterViewInit {
117
122
  constructor(_dialog: InfoDialogModal, _platform: InfoPlatformModel, modal: MatDialog, _prop: InfoFormPropModel, _dataAccessService: InfoDataService, _router: Router, _activatedRoute: ActivatedRoute, _authenticationService: InfoAuthenticationService, _changeDetectorRef: ChangeDetectorRef, _translate: InfoTranslateService, _lastSearch: InfoLastSearchModel, _renderer: Renderer2, _element: ElementRef);
118
123
  ngOnInit(): void;
119
124
  ngAfterViewInit(): void;
125
+ ngOnDestroy(): void;
120
126
  setColumns(): void;
127
+ setItensExpandidos(): void;
121
128
  setPagebarTitle(): void;
122
129
  navigateTo(url: string, passId: boolean, id?: string): void;
123
130
  openCustomModal(modalComponent: any, width: Number, model?: any): void;
@@ -132,6 +139,7 @@ export declare class InfoGridComponent implements OnInit, AfterViewInit {
132
139
  search(): void;
133
140
  add(): void;
134
141
  detail(model: any): void;
142
+ mostrarMais(linha: any, coluna: any): void;
135
143
  access(model: any): void;
136
144
  view(model: any): void;
137
145
  edit(model: any): void;
@@ -145,6 +153,8 @@ export declare class InfoGridComponent implements OnInit, AfterViewInit {
145
153
  getPermission(): void;
146
154
  download(arquivoId: any): void;
147
155
  eventButton(model: any, api: any, method: string, confirm?: boolean): void;
156
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoGridComponent, never>;
157
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoGridComponent, "info-grid", never, { "pagetitle": "pagetitle"; "prefixtitle": "prefixtitle"; "description": "description"; "pagebarbuttons": "pagebarbuttons"; "fullarea": "fullarea"; "api": "api"; "method": "method"; "form": "form"; "width": "width"; "parent": "parent"; "apidownload": "apidownload"; "methoddownload": "methoddownload"; "backurl": "backurl"; "newurl": "newurl"; "newlabel": "newlabel"; "editurl": "editurl"; "viewurl": "viewurl"; "templateurl": "templateurl"; "paged": "paged"; "size": "size"; "autorefresh": "autorefresh"; "enabledcols": "enabledcols"; "enablednew": "enablednew"; "enablededit": "enablededit"; "enableddelete": "enableddelete"; "enabledview": "enabledview"; "enabledcancelsearch": "enabledcancelsearch"; "enableddetail": "enableddetail"; "enabledclassicons": "enabledclassicons"; "enabledclickaccess": "enabledclickaccess"; "enabledclickevent": "enabledclickevent"; "enabledexpand": "enabledexpand"; "searchopened": "searchopened"; "searchonlyonebutton": "searchonlyonebutton"; "disablesearchlast": "disablesearchlast"; "statictitle": "statictitle"; "disabledcol": "disabledcol"; "accessicon": "accessicon"; "loadoninit": "loadoninit"; "data": "data"; "searchmodel": "searchmodel"; "dynamiccols": "dynamiccols"; "buttons": "buttons"; "searchbuttons": "searchbuttons"; "showmessageerror": "showmessageerror"; "defaultnewobject": "defaultnewobject"; "parentIdUrl": "parentIdUrl"; "cols": "cols"; }, { "onbeforesearch": "onbeforesearch"; "onloadcomplete": "onloadcomplete"; "onclosemodal": "onclosemodal"; "onnew": "onnew"; "onedit": "onedit"; "onview": "onview"; "ondelete": "ondelete"; "customdelete": "customdelete"; "parentIdUrlChange": "parentIdUrlChange"; }, ["formModel"], ["*"], false>;
148
158
  }
149
159
  export declare class InfoGridModalComponent {
150
160
  _prop: InfoFormPropModel;
@@ -157,4 +167,6 @@ export declare class InfoGridModalComponent {
157
167
  constructor(_prop: InfoFormPropModel, _ref: MatDialogRef<InfoGridModalComponent>, _modal: MatDialog);
158
168
  ngOnInit(): void;
159
169
  save(): void;
170
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoGridModalComponent, never>;
171
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoGridModalComponent, "ng-component", never, {}, {}, never, never, false>;
160
172
  }
@@ -1,5 +1,6 @@
1
1
  import { OnInit, EventEmitter } from "@angular/core";
2
2
  import { ControlValueAccessor } from "@angular/forms";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class InfoInputComponent implements OnInit, ControlValueAccessor {
4
5
  placeholder: string;
5
6
  disabled: boolean;
@@ -31,4 +32,6 @@ export declare class InfoInputComponent implements OnInit, ControlValueAccessor
31
32
  registerOnChange(fn: any): void;
32
33
  registerOnTouched(fn: any): void;
33
34
  setDisabledState?(isDisabled: boolean): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoInputComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoInputComponent, "info-input", never, { "placeholder": "placeholder"; "disabled": "disabled"; "readonly": "readonly"; "required": "required"; "maxlength": "maxlength"; "type": "type"; "rows": "rows"; "tabindex": "tabindex"; "iconPrefix": "iconPrefix"; "iconSuffix": "iconSuffix"; "min": "min"; "max": "max"; "step": "step"; "ismask": "ismask"; }, { "onblur": "onblur"; }, never, never, false>;
34
37
  }
@@ -1,5 +1,6 @@
1
1
  import { OnChanges } from "@angular/core";
2
2
  import { InfoDialogModal } from "../../layouts/dialog/dialog.component";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class InfoInputListComponent implements OnChanges {
4
5
  private _dialog;
5
6
  model: any;
@@ -23,4 +24,6 @@ export declare class InfoInputListComponent implements OnChanges {
23
24
  add(): void;
24
25
  remover(item: any): void;
25
26
  ordernar(): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoInputListComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoInputListComponent, "info-input-list", never, { "model": "model"; "readonly": "readonly"; "percent": "percent"; "hiddenDe": "hiddenDe"; "disabled": "disabled"; "ismask": "ismask"; }, {}, never, never, false>;
26
29
  }
@@ -1,5 +1,6 @@
1
1
  import { OnInit } from "@angular/core";
2
2
  import { InfoTranslateService } from "../../service/translate.service";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class InfoListCheckboxComponent implements OnInit {
4
5
  private _translate;
5
6
  filterlabel: string;
@@ -20,4 +21,6 @@ export declare class InfoListCheckboxComponent implements OnInit {
20
21
  getModel(valor: string, selecionados?: boolean, todos?: boolean): any[];
21
22
  marcarFiltrados(valor: string, marcar: boolean, selecionados?: boolean): void;
22
23
  marcarTodos(marcar: boolean): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoListCheckboxComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoListCheckboxComponent, "info-list-checkbox", never, { "filterlabel": "filterlabel"; "filterdescription": "filterdescription"; "selectedlabel": "selectedlabel"; "selecteddescription": "selecteddescription"; "model": "model"; "max": "max"; "onelist": "onelist"; "disabled": "disabled"; }, {}, never, never, false>;
23
26
  }
@@ -1,7 +1,10 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class InfoMessageComponent {
2
3
  color: string;
3
4
  outline: boolean;
4
5
  close: boolean;
5
6
  min: boolean;
6
7
  delete(event: any, message: any): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoMessageComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoMessageComponent, "info-message", never, { "color": "color"; "outline": "outline"; "close": "close"; "min": "min"; }, {}, never, ["*"], false>;
7
10
  }
@@ -1,6 +1,7 @@
1
1
  import { OnInit, EventEmitter } from "@angular/core";
2
2
  import { ControlValueAccessor } from "@angular/forms";
3
3
  import { InfoDataService } from "../../service/data.service";
4
+ import * as i0 from "@angular/core";
4
5
  export declare class InfoMultiSelectComponent implements OnInit, ControlValueAccessor {
5
6
  private _dataAcessService;
6
7
  placeholder: string;
@@ -31,4 +32,6 @@ export declare class InfoMultiSelectComponent implements OnInit, ControlValueAcc
31
32
  registerOnChange(fn: any): void;
32
33
  registerOnTouched(fn: any): void;
33
34
  setDisabledState?(isDisabled: boolean): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoMultiSelectComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoMultiSelectComponent, "info-multi-select", never, { "placeholder": "placeholder"; "name": "name"; "required": "required"; "selectfirst": "selectfirst"; "disablednoregisters": "disablednoregisters"; "api": "api"; "method": "method"; "loading": "loading"; "disabled": "disabled"; "params": "params"; "data": "data"; }, { "onselecteditem": "onselecteditem"; }, never, never, false>;
34
37
  }
@@ -1,4 +1,5 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class InfoPaginatorComponent {
3
4
  size: number;
4
5
  min: boolean;
@@ -19,4 +20,6 @@ export declare class InfoPaginatorComponent {
19
20
  next(): void;
20
21
  previous(): void;
21
22
  setDescription(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoPaginatorComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoPaginatorComponent, "info-paginator", never, { "size": "size"; "min": "min"; "show": "show"; "total": "total"; }, { "index": "index"; "change": "change"; }, never, never, false>;
22
25
  }
@@ -1,6 +1,7 @@
1
1
  import { OnInit, EventEmitter } from "@angular/core";
2
2
  import { ControlValueAccessor } from "@angular/forms";
3
3
  import { InfoDataService } from "../../service/data.service";
4
+ import * as i0 from "@angular/core";
4
5
  export declare class InfoSelectComponent implements OnInit, ControlValueAccessor {
5
6
  private _dataAcessService;
6
7
  placeholder: string;
@@ -35,4 +36,6 @@ export declare class InfoSelectComponent implements OnInit, ControlValueAccessor
35
36
  registerOnChange(fn: any): void;
36
37
  registerOnTouched(fn: any): void;
37
38
  setDisabledState?(isDisabled: boolean): void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoSelectComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoSelectComponent, "info-select", never, { "placeholder": "placeholder"; "name": "name"; "required": "required"; "selectfirst": "selectfirst"; "disablednoregisters": "disablednoregisters"; "api": "api"; "method": "method"; "blank": "blank"; "blankItem": "blankItem"; "loading": "loading"; "disabled": "disabled"; "notranslate": "notranslate"; "params": "params"; "data": "data"; }, { "onselecteditem": "onselecteditem"; }, never, never, false>;
38
41
  }
@@ -1,4 +1,5 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class InfoTimelineComponent implements OnInit {
3
4
  showdate: boolean;
4
5
  align: string;
@@ -11,4 +12,6 @@ export declare class InfoTimelineComponent implements OnInit {
11
12
  alignBetween: boolean;
12
13
  constructor();
13
14
  ngOnInit(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoTimelineComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoTimelineComponent, "info-timeline", never, { "showdate": "showdate"; "align": "align"; "style": "style"; "label": "label"; "data": "data"; }, {}, never, never, false>;
14
17
  }
@@ -1,5 +1,6 @@
1
1
  import { ElementRef, Renderer2, OnChanges, SimpleChanges } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class InfoMaskDirective implements ControlValueAccessor, OnChanges {
4
5
  private renderer;
5
6
  private element;
@@ -18,4 +19,6 @@ export declare class InfoMaskDirective implements ControlValueAccessor, OnChange
18
19
  setDisabledState(isDisabled: boolean): void;
19
20
  onInput(value: any): void;
20
21
  private setupMask;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoMaskDirective, never>;
23
+ static ɵdir: i0.ɵɵDirectiveDeclaration<InfoMaskDirective, "[setmask]", never, { "maskType": "setmask"; }, {}, never, never, false>;
21
24
  }
@@ -1,8 +1,11 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { NgControl } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class InfoUnmaskDirective {
4
5
  private elementRef;
5
6
  private model;
6
7
  constructor(elementRef: ElementRef, model: NgControl);
7
8
  inputChange(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoUnmaskDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<InfoUnmaskDirective, "[unmask]", never, {}, {}, never, never, false>;
8
11
  }
@@ -0,0 +1,74 @@
1
+ import { Component, Input } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "@angular/material/icon";
5
+ import * as i3 from "../../pipe/translate.pipe";
6
+ function InfoAlertComponent_div_0_li_8_Template(rf, ctx) { if (rf & 1) {
7
+ i0.ɵɵelementStart(0, "li")(1, "mat-icon");
8
+ i0.ɵɵtext(2, "error_outline");
9
+ i0.ɵɵelementEnd();
10
+ i0.ɵɵelement(3, "label", 6);
11
+ i0.ɵɵpipe(4, "translate");
12
+ i0.ɵɵelementEnd();
13
+ } if (rf & 2) {
14
+ const m_r3 = ctx.$implicit;
15
+ i0.ɵɵadvance(3);
16
+ i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(4, 1, m_r3), i0.ɵɵsanitizeHtml);
17
+ } }
18
+ function InfoAlertComponent_div_0_Template(rf, ctx) { if (rf & 1) {
19
+ const _r5 = i0.ɵɵgetCurrentView();
20
+ i0.ɵɵelementStart(0, "div")(1, "div", 1, 2)(3, "h5");
21
+ i0.ɵɵtext(4);
22
+ i0.ɵɵpipe(5, "translate");
23
+ i0.ɵɵelementEnd();
24
+ i0.ɵɵprojection(6);
25
+ i0.ɵɵelementStart(7, "ul");
26
+ i0.ɵɵtemplate(8, InfoAlertComponent_div_0_li_8_Template, 5, 3, "li", 3);
27
+ i0.ɵɵelementEnd();
28
+ i0.ɵɵelementStart(9, "a", 4);
29
+ i0.ɵɵlistener("click", function InfoAlertComponent_div_0_Template_a_click_9_listener() { i0.ɵɵrestoreView(_r5); const ctx_r4 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r4.onClose()); });
30
+ i0.ɵɵelementStart(10, "i", 5);
31
+ i0.ɵɵtext(11, "clear");
32
+ i0.ɵɵelementEnd()()()();
33
+ } if (rf & 2) {
34
+ const ctx_r0 = i0.ɵɵnextContext();
35
+ i0.ɵɵadvance(4);
36
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 2, "Atencao"));
37
+ i0.ɵɵadvance(4);
38
+ i0.ɵɵproperty("ngForOf", ctx_r0.messages);
39
+ } }
40
+ const _c0 = function () { return []; };
41
+ const _c1 = ["*"];
42
+ export class InfoAlertComponent {
43
+ constructor() {
44
+ this.messages = [];
45
+ }
46
+ onClose() {
47
+ this.messages = [];
48
+ }
49
+ }
50
+ /** @nocollapse */ InfoAlertComponent.ɵfac = function InfoAlertComponent_Factory(t) { return new (t || InfoAlertComponent)(); };
51
+ /** @nocollapse */ InfoAlertComponent.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: InfoAlertComponent, selectors: [["info-alert"]], inputs: { messages: "messages" }, ngContentSelectors: _c1, decls: 1, vars: 2, consts: [[4, "ngIf"], [1, "alert"], ["alert", ""], [4, "ngFor", "ngForOf"], [1, "close", 3, "click"], [1, "material-icons"], [3, "innerHTML"]], template: function InfoAlertComponent_Template(rf, ctx) { if (rf & 1) {
52
+ i0.ɵɵprojectionDef();
53
+ i0.ɵɵtemplate(0, InfoAlertComponent_div_0_Template, 12, 4, "div", 0);
54
+ } if (rf & 2) {
55
+ i0.ɵɵproperty("ngIf", ctx.messages != i0.ɵɵpureFunction0(1, _c0) && ctx.messages.length > 0);
56
+ } }, dependencies: [i1.NgForOf, i1.NgIf, i2.MatIcon, i3.InfoTranslatePipe], styles: ["[_nghost-%COMP%]{display:block;position:fixed;bottom:70px;right:30px;margin-left:280px;min-width:350px;z-index:100}[_nghost-%COMP%]:last-child{margin-bottom:0}[_nghost-%COMP%] .alert[_ngcontent-%COMP%]{box-shadow:0 5px 5px 2px #00000040;padding:1.0476190667rem 1.5714286rem;position:relative}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] h5[_ngcontent-%COMP%]{text-align:center;padding-bottom:10px;margin:0 -20px 5px;border-bottom:solid 1px rgba(255,255,255,.1)}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{padding:0;margin:0;list-style:none}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{border-bottom:solid 1px rgba(255,255,255,.1);padding:7px 5px}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:last-child{border-bottom:none}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]{color:#fff;font-size:20px;line-height:1;position:absolute;right:10px;top:15px;transition:background .2s ease-in-out,color .2s ease-in-out}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] .close[_ngcontent-%COMP%]:hover{cursor:pointer;color:#ddd}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] .close[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{color:inherit;font-size:inherit;margin:0;vertical-align:top}[_nghost-%COMP%] .alert[_ngcontent-%COMP%] .material-icons{color:main-color(A100);margin:0 1.5714286rem 0 0;vertical-align:top}"] });
57
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoAlertComponent, [{
58
+ type: Component,
59
+ args: [{ selector: 'info-alert', template: `
60
+ <div *ngIf="messages != [] && messages.length > 0">
61
+ <div class="alert" #alert >
62
+ <h5>{{ 'Atencao' | translate }}</h5>
63
+ <ng-content></ng-content>
64
+ <ul>
65
+ <li *ngFor="let m of messages"><mat-icon>error_outline</mat-icon><label [innerHTML]="m | translate"></label></li>
66
+ </ul>
67
+ <a class="close" (click)="onClose()"><i class="material-icons">clear</i></a>
68
+ </div>
69
+ </div>
70
+ `, styles: [":host{display:block;position:fixed;bottom:70px;right:30px;margin-left:280px;min-width:350px;z-index:100}:host:last-child{margin-bottom:0}:host .alert{box-shadow:0 5px 5px 2px #00000040;padding:1.0476190667rem 1.5714286rem;position:relative}:host .alert h5{text-align:center;padding-bottom:10px;margin:0 -20px 5px;border-bottom:solid 1px rgba(255,255,255,.1)}:host .alert ul{padding:0;margin:0;list-style:none}:host .alert ul li{border-bottom:solid 1px rgba(255,255,255,.1);padding:7px 5px}:host .alert ul li:last-child{border-bottom:none}:host .alert .close{color:#fff;font-size:20px;line-height:1;position:absolute;right:10px;top:15px;transition:background .2s ease-in-out,color .2s ease-in-out}:host .alert .close:hover{cursor:pointer;color:#ddd}:host .alert .close .material-icons{color:inherit;font-size:inherit;margin:0;vertical-align:top}:host .alert ::ng-deep .material-icons{color:main-color(A100);margin:0 1.5714286rem 0 0;vertical-align:top}\n"] }]
71
+ }], null, { messages: [{
72
+ type: Input
73
+ }] }); })();
74
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaW5mby1saWJyYXJ5L3NyYy9jb250cm9scy9hbGVydC9hbGVydC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7OztJQVU3QiwwQkFBK0IsZUFBQTtJQUFVLDZCQUFhO0lBQUEsaUJBQVc7SUFBQSwyQkFBMkM7O0lBQUEsaUJBQUs7OztJQUF6QyxlQUEyQjtJQUEzQix5RUFBMkI7Ozs7SUFML0csMkJBQW1ELGdCQUFBLFNBQUE7SUFFdkMsWUFBMkI7O0lBQUEsaUJBQUs7SUFDcEMsa0JBQXlCO0lBQ3pCLDBCQUFJO0lBQ0EsdUVBQWlIO0lBQ3JILGlCQUFLO0lBQ0wsNEJBQXFDO0lBQXBCLDBKQUFTLGVBQUEsZ0JBQVMsQ0FBQSxJQUFDO0lBQUMsNkJBQTBCO0lBQUEsc0JBQUs7SUFBQSxpQkFBSSxFQUFBLEVBQUEsRUFBQTs7O0lBTHBFLGVBQTJCO0lBQTNCLHFEQUEyQjtJQUdULGVBQVc7SUFBWCx5Q0FBVzs7OztBQVFqRCxNQUFNLE9BQU8sa0JBQWtCO0lBaEIvQjtRQWtCYSxhQUFRLEdBQWEsRUFBRSxDQUFDO0tBS3BDO0lBSEcsT0FBTztRQUNILElBQUksQ0FBQyxRQUFRLEdBQUcsRUFBRSxDQUFDO0lBQ3ZCLENBQUM7O3VHQU5RLGtCQUFrQjtvR0FBbEIsa0JBQWtCOztRQWJ2QixvRUFTTTs7UUFUQSw0RkFBMkM7O3VGQWE1QyxrQkFBa0I7Y0FoQjlCLFNBQVM7MkJBQ0ksWUFBWSxZQUNaOzs7Ozs7Ozs7OztLQVdUO2dCQUtRLFFBQVE7a0JBQWhCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gICAgc2VsZWN0b3I6ICdpbmZvLWFsZXJ0JyxcclxuICAgIHRlbXBsYXRlOiBgXHJcbiAgICAgICAgPGRpdiAqbmdJZj1cIm1lc3NhZ2VzICE9IFtdICYmIG1lc3NhZ2VzLmxlbmd0aCA+IDBcIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImFsZXJ0XCIgI2FsZXJ0ID5cclxuICAgICAgICAgICAgICAgIDxoNT57eyAnQXRlbmNhbycgfCB0cmFuc2xhdGUgfX08L2g1PlxyXG4gICAgICAgICAgICAgICAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxyXG4gICAgICAgICAgICAgICAgPHVsPlxyXG4gICAgICAgICAgICAgICAgICAgIDxsaSAqbmdGb3I9XCJsZXQgbSBvZiBtZXNzYWdlc1wiPjxtYXQtaWNvbj5lcnJvcl9vdXRsaW5lPC9tYXQtaWNvbj48bGFiZWwgW2lubmVySFRNTF09XCJtIHwgdHJhbnNsYXRlXCI+PC9sYWJlbD48L2xpPlxyXG4gICAgICAgICAgICAgICAgPC91bD5cclxuICAgICAgICAgICAgICAgIDxhIGNsYXNzPVwiY2xvc2VcIiAoY2xpY2spPVwib25DbG9zZSgpXCI+PGkgY2xhc3M9XCJtYXRlcmlhbC1pY29uc1wiPmNsZWFyPC9pPjwvYT5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICBgLFxyXG4gICAgc3R5bGVVcmxzOiBbJ2FsZXJ0LmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIEluZm9BbGVydENvbXBvbmVudCB7XHJcblxyXG4gICAgQElucHV0KCkgbWVzc2FnZXM6IHN0cmluZ1tdID0gW107XHJcblxyXG4gICAgb25DbG9zZSgpIHtcclxuICAgICAgICB0aGlzLm1lc3NhZ2VzID0gW107XHJcbiAgICB9XHJcbn0iXX0=