keevo-components 1.8.37 → 1.8.39

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 (215) hide show
  1. package/README.md +24 -24
  2. package/esm2022/keevo-components.mjs +4 -4
  3. package/esm2022/lib/api/base-components/base-component-button.mjs +36 -36
  4. package/esm2022/lib/api/base-components/base-component-chart.mjs +92 -92
  5. package/esm2022/lib/api/base-components/base-component-crud-form.mjs +298 -298
  6. package/esm2022/lib/api/base-components/base-component-crud-list.mjs +78 -78
  7. package/esm2022/lib/api/base-components/base-component-crud.mjs +65 -65
  8. package/esm2022/lib/api/base-components/base-component-dropdown-external.mjs +31 -31
  9. package/esm2022/lib/api/base-components/base-component-dropdown.mjs +169 -169
  10. package/esm2022/lib/api/base-components/base-component-input.mjs +94 -94
  11. package/esm2022/lib/api/base-components/base-component-multi-select.mjs +130 -130
  12. package/esm2022/lib/api/base-components/base-component.mjs +51 -51
  13. package/esm2022/lib/api/components/chart/chart.config.mjs +2 -2
  14. package/esm2022/lib/api/components/chart/chart.model.mjs +2 -2
  15. package/esm2022/lib/api/components/chart/orchart.config.mjs +2 -2
  16. package/esm2022/lib/api/components/chart/orchart.item.mjs +2 -2
  17. package/esm2022/lib/api/components/dropdown/filtro.combo.mjs +2 -2
  18. package/esm2022/lib/api/components/table/action-item.mjs +2 -2
  19. package/esm2022/lib/api/components/table/kv-menuitem.mjs +3 -3
  20. package/esm2022/lib/api/components/table/table-dropdown-control.mjs +2 -2
  21. package/esm2022/lib/api/components/table/table.config.column.mjs +2 -2
  22. package/esm2022/lib/api/components/table/table.config.mjs +2 -2
  23. package/esm2022/lib/api/components/table/table.paginate.mjs +9 -9
  24. package/esm2022/lib/api/components/table/tabledit.config.mjs +2 -2
  25. package/esm2022/lib/api/components/table/tableedit.config.column.mjs +2 -2
  26. package/esm2022/lib/api/directives/template/template.directive.mjs +24 -24
  27. package/esm2022/lib/api/helpers/component-providers.mjs +16 -16
  28. package/esm2022/lib/api/helpers/keevo-validators.mjs +72 -72
  29. package/esm2022/lib/api/helpers/translate-primeng.mjs +23 -23
  30. package/esm2022/lib/api/models/menu/menu.model.mjs +2 -2
  31. package/esm2022/lib/api/models/menu/menucompleto.model.mjs +2 -2
  32. package/esm2022/lib/api/models/menu/sistemamenu.model.mjs +2 -2
  33. package/esm2022/lib/api/modules/primeng.module.mjs +251 -251
  34. package/esm2022/lib/api/pipes/codigofile.pipe.mjs +19 -19
  35. package/esm2022/lib/api/pipes/cpfcnpj.pipe.mjs +25 -25
  36. package/esm2022/lib/api/pipes/mask.pipe.mjs +29 -29
  37. package/esm2022/lib/api/pipes/pipes.module.mjs +39 -39
  38. package/esm2022/lib/api/pipes/telefone.pipe.mjs +45 -45
  39. package/esm2022/lib/api/services/base.api.service.mjs +74 -74
  40. package/esm2022/lib/api/services/breadcrumbs.service.mjs +57 -57
  41. package/esm2022/lib/api/services/component.service.mjs +27 -27
  42. package/esm2022/lib/api/services/form.service.mjs +85 -85
  43. package/esm2022/lib/api/services/imagens.service.mjs +28 -28
  44. package/esm2022/lib/api/services/notification.service.mjs +67 -67
  45. package/esm2022/lib/api/services/object.service.mjs +39 -39
  46. package/esm2022/lib/components/keevo-components.module.mjs +144 -144
  47. package/esm2022/lib/components/kv-avatar/kv-avatar.component.mjs +78 -78
  48. package/esm2022/lib/components/kv-avatar/kv-avatar.module.mjs +32 -32
  49. package/esm2022/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.mjs +31 -17
  50. package/esm2022/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.mjs +31 -31
  51. package/esm2022/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.mjs +17 -17
  52. package/esm2022/lib/components/kv-buttons/kv-button-success/kv-button-success.component.mjs +17 -17
  53. package/esm2022/lib/components/kv-buttons/kv-button.module.mjs +39 -39
  54. package/esm2022/lib/components/kv-carousel/kv-carousel.component.mjs +92 -92
  55. package/esm2022/lib/components/kv-carousel/kv-carousel.module.mjs +28 -28
  56. package/esm2022/lib/components/kv-chart/kv-chart.component.mjs +145 -145
  57. package/esm2022/lib/components/kv-chart/kv-chart.module.mjs +32 -0
  58. package/esm2022/lib/components/kv-error/kv-error.component.mjs +26 -26
  59. package/esm2022/lib/components/kv-error/kv-error.module.mjs +35 -35
  60. package/esm2022/lib/components/kv-inputs/kv-check/kv-check.component.mjs +26 -26
  61. package/esm2022/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.mjs +37 -37
  62. package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.component.mjs +88 -88
  63. package/esm2022/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.mjs +89 -89
  64. package/esm2022/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.mjs +29 -29
  65. package/esm2022/lib/components/kv-inputs/kv-input-number/kv-input-number.component.mjs +59 -59
  66. package/esm2022/lib/components/kv-inputs/kv-input-password/kv-input-password.component.mjs +33 -33
  67. package/esm2022/lib/components/kv-inputs/kv-input-text/kv-input-text.component.mjs +21 -21
  68. package/esm2022/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.mjs +42 -42
  69. package/esm2022/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.mjs +43 -43
  70. package/esm2022/lib/components/kv-inputs/kv-input-time/kv-input-time.component.mjs +24 -24
  71. package/esm2022/lib/components/kv-inputs/kv-inputs.module.mjs +108 -108
  72. package/esm2022/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.mjs +44 -44
  73. package/esm2022/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.mjs +53 -53
  74. package/esm2022/lib/components/kv-inputs/kv-switch/kv-switch.component.mjs +34 -34
  75. package/esm2022/lib/components/kv-label/kv-label.component.mjs +15 -15
  76. package/esm2022/lib/components/kv-label/kv-label.module.mjs +24 -24
  77. package/esm2022/lib/components/kv-loader/kv-loader.component.mjs +17 -17
  78. package/esm2022/lib/components/kv-loader/kv-loader.module.mjs +28 -28
  79. package/esm2022/lib/components/kv-loader/kv-loader.service.mjs +29 -29
  80. package/esm2022/lib/components/kv-login/kv-login.component.mjs +52 -52
  81. package/esm2022/lib/components/kv-login/kv-login.module.mjs +47 -47
  82. package/esm2022/lib/components/kv-menu/kv-menu.component.mjs +188 -188
  83. package/esm2022/lib/components/kv-menu/kv-menu.module.mjs +47 -47
  84. package/esm2022/lib/components/kv-modal/kv-modal.component.mjs +67 -67
  85. package/esm2022/lib/components/kv-modal/kv-modal.module.mjs +31 -31
  86. package/esm2022/lib/components/kv-orgchart/kv-orgchart.component.mjs +100 -100
  87. package/esm2022/lib/components/kv-orgchart/kv-orgchart.module.mjs +24 -24
  88. package/esm2022/lib/components/kv-page-form/kv-page-form.component.mjs +147 -147
  89. package/esm2022/lib/components/kv-page-form/kv-page-form.module.mjs +38 -38
  90. package/esm2022/lib/components/kv-pick-list/kv-pick-list.component.mjs +48 -48
  91. package/esm2022/lib/components/kv-pick-list/kv-pick-list.module.mjs +32 -32
  92. package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.component.mjs +58 -58
  93. package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.module.mjs +28 -28
  94. package/esm2022/lib/components/kv-table/kv-table.component.mjs +554 -554
  95. package/esm2022/lib/components/kv-table/kv-table.module.mjs +36 -36
  96. package/esm2022/lib/components/kv-table-edit/kv-table-edit.component.mjs +567 -567
  97. package/esm2022/lib/components/kv-table-edit/kv-table-edit.module.mjs +34 -34
  98. package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +215 -215
  99. package/esm2022/lib/components/kv-tree-table/kv-tree-table.module.mjs +28 -28
  100. package/esm2022/lib/components/kv-tree-view/kv-tree-view.component.mjs +30 -30
  101. package/esm2022/lib/components/kv-tree-view/kv-tree-view.module.mjs +28 -28
  102. package/esm2022/lib/components/kv-treetable/kv-treetable.component.mjs +371 -371
  103. package/esm2022/lib/components/kv-treetable/kv-treetable.module.mjs +32 -32
  104. package/esm2022/lib/components/kv-workspace/kv-workspace.component.mjs +178 -178
  105. package/esm2022/lib/components/kv-workspace/kv-workspace.module.mjs +51 -51
  106. package/esm2022/public-api.mjs +169 -169
  107. package/fesm2022/keevo-components.mjs +5786 -5772
  108. package/fesm2022/keevo-components.mjs.map +1 -1
  109. package/index.d.ts +5 -5
  110. package/lib/api/base-components/base-component-button.d.ts +14 -14
  111. package/lib/api/base-components/base-component-chart.d.ts +40 -40
  112. package/lib/api/base-components/base-component-crud-form.d.ts +145 -145
  113. package/lib/api/base-components/base-component-crud-list.d.ts +63 -63
  114. package/lib/api/base-components/base-component-crud.d.ts +36 -36
  115. package/lib/api/base-components/base-component-dropdown-external.d.ts +15 -15
  116. package/lib/api/base-components/base-component-dropdown.d.ts +44 -44
  117. package/lib/api/base-components/base-component-input.d.ts +31 -31
  118. package/lib/api/base-components/base-component-multi-select.d.ts +35 -35
  119. package/lib/api/base-components/base-component.d.ts +22 -22
  120. package/lib/api/components/chart/chart.config.d.ts +11 -11
  121. package/lib/api/components/chart/chart.model.d.ts +9 -9
  122. package/lib/api/components/chart/orchart.config.d.ts +35 -35
  123. package/lib/api/components/chart/orchart.item.d.ts +26 -26
  124. package/lib/api/components/dropdown/filtro.combo.d.ts +4 -4
  125. package/lib/api/components/table/action-item.d.ts +11 -9
  126. package/lib/api/components/table/kv-menuitem.d.ts +10 -10
  127. package/lib/api/components/table/table-dropdown-control.d.ts +6 -6
  128. package/lib/api/components/table/table.config.column.d.ts +25 -25
  129. package/lib/api/components/table/table.config.d.ts +19 -19
  130. package/lib/api/components/table/table.paginate.d.ts +6 -6
  131. package/lib/api/components/table/tabledit.config.d.ts +8 -8
  132. package/lib/api/components/table/tableedit.config.column.d.ts +10 -10
  133. package/lib/api/directives/template/template.directive.d.ts +11 -11
  134. package/lib/api/helpers/component-providers.d.ts +2 -2
  135. package/lib/api/helpers/keevo-validators.d.ts +11 -11
  136. package/lib/api/helpers/translate-primeng.d.ts +4 -4
  137. package/lib/api/models/menu/menu.model.d.ts +10 -10
  138. package/lib/api/models/menu/menucompleto.model.d.ts +6 -6
  139. package/lib/api/models/menu/sistemamenu.model.d.ts +8 -8
  140. package/lib/api/modules/primeng.module.d.ts +61 -61
  141. package/lib/api/pipes/codigofile.pipe.d.ts +7 -7
  142. package/lib/api/pipes/cpfcnpj.pipe.d.ts +7 -7
  143. package/lib/api/pipes/mask.pipe.d.ts +7 -7
  144. package/lib/api/pipes/pipes.module.d.ts +11 -11
  145. package/lib/api/pipes/telefone.pipe.d.ts +7 -7
  146. package/lib/api/services/base.api.service.d.ts +25 -25
  147. package/lib/api/services/breadcrumbs.service.d.ts +16 -16
  148. package/lib/api/services/component.service.d.ts +11 -11
  149. package/lib/api/services/form.service.d.ts +28 -28
  150. package/lib/api/services/imagens.service.d.ts +10 -10
  151. package/lib/api/services/notification.service.d.ts +25 -25
  152. package/lib/api/services/object.service.d.ts +9 -9
  153. package/lib/components/keevo-components.module.d.ts +25 -25
  154. package/lib/components/kv-avatar/kv-avatar.component.d.ts +22 -22
  155. package/lib/components/kv-avatar/kv-avatar.module.d.ts +10 -10
  156. package/lib/components/kv-buttons/kv-button-personalize/kv-button-personalize.component.d.ts +13 -7
  157. package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +13 -13
  158. package/lib/components/kv-buttons/kv-button-secondary/kv-button-secondary.component.d.ts +7 -7
  159. package/lib/components/kv-buttons/kv-button-success/kv-button-success.component.d.ts +7 -7
  160. package/lib/components/kv-buttons/kv-button.module.d.ts +11 -11
  161. package/lib/components/kv-carousel/kv-carousel.component.d.ts +16 -16
  162. package/lib/components/kv-carousel/kv-carousel.module.d.ts +9 -9
  163. package/lib/components/kv-chart/kv-chart.component.d.ts +56 -56
  164. package/lib/components/kv-chart/{kvchart.module.d.ts → kv-chart.module.d.ts} +10 -10
  165. package/lib/components/kv-error/kv-error.component.d.ts +12 -12
  166. package/lib/components/kv-error/kv-error.module.d.ts +10 -10
  167. package/lib/components/kv-inputs/kv-check/kv-check.component.d.ts +11 -11
  168. package/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.d.ts +14 -14
  169. package/lib/components/kv-inputs/kv-editor/kv-editor.component.d.ts +36 -36
  170. package/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.d.ts +27 -27
  171. package/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.d.ts +12 -12
  172. package/lib/components/kv-inputs/kv-input-number/kv-input-number.component.d.ts +19 -19
  173. package/lib/components/kv-inputs/kv-input-password/kv-input-password.component.d.ts +13 -13
  174. package/lib/components/kv-inputs/kv-input-text/kv-input-text.component.d.ts +9 -9
  175. package/lib/components/kv-inputs/kv-input-text-checkbox/kv-input-text-checkbox.component.d.ts +16 -16
  176. package/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.d.ts +16 -16
  177. package/lib/components/kv-inputs/kv-input-time/kv-input-time.component.d.ts +10 -10
  178. package/lib/components/kv-inputs/kv-inputs.module.d.ts +25 -25
  179. package/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.d.ts +15 -15
  180. package/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.d.ts +18 -18
  181. package/lib/components/kv-inputs/kv-switch/kv-switch.component.d.ts +14 -14
  182. package/lib/components/kv-label/kv-label.component.d.ts +7 -7
  183. package/lib/components/kv-label/kv-label.module.d.ts +8 -8
  184. package/lib/components/kv-loader/kv-loader.component.d.ts +8 -8
  185. package/lib/components/kv-loader/kv-loader.module.d.ts +9 -9
  186. package/lib/components/kv-loader/kv-loader.service.d.ts +10 -10
  187. package/lib/components/kv-login/kv-login.component.d.ts +30 -30
  188. package/lib/components/kv-login/kv-login.module.d.ts +13 -13
  189. package/lib/components/kv-menu/kv-menu.component.d.ts +61 -61
  190. package/lib/components/kv-menu/kv-menu.module.d.ts +13 -13
  191. package/lib/components/kv-modal/kv-modal.component.d.ts +20 -20
  192. package/lib/components/kv-modal/kv-modal.module.d.ts +10 -10
  193. package/lib/components/kv-orgchart/kv-orgchart.component.d.ts +27 -27
  194. package/lib/components/kv-orgchart/kv-orgchart.module.d.ts +9 -9
  195. package/lib/components/kv-page-form/kv-page-form.component.d.ts +70 -70
  196. package/lib/components/kv-page-form/kv-page-form.module.d.ts +11 -11
  197. package/lib/components/kv-pick-list/kv-pick-list.component.d.ts +20 -20
  198. package/lib/components/kv-pick-list/kv-pick-list.module.d.ts +10 -10
  199. package/lib/components/kv-progress-bar/kv-progress-bar.component.d.ts +67 -67
  200. package/lib/components/kv-progress-bar/kv-progress-bar.module.d.ts +9 -9
  201. package/lib/components/kv-table/kv-table.component.d.ts +113 -113
  202. package/lib/components/kv-table/kv-table.module.d.ts +11 -11
  203. package/lib/components/kv-table-edit/kv-table-edit.component.d.ts +116 -116
  204. package/lib/components/kv-table-edit/kv-table-edit.module.d.ts +12 -12
  205. package/lib/components/kv-tree-table/kv-tree-table.component.d.ts +42 -42
  206. package/lib/components/kv-tree-table/kv-tree-table.module.d.ts +9 -9
  207. package/lib/components/kv-tree-view/kv-tree-view.component.d.ts +14 -14
  208. package/lib/components/kv-tree-view/kv-tree-view.module.d.ts +9 -9
  209. package/lib/components/kv-treetable/kv-treetable.component.d.ts +85 -85
  210. package/lib/components/kv-treetable/kv-treetable.module.d.ts +11 -11
  211. package/lib/components/kv-workspace/kv-workspace.component.d.ts +46 -46
  212. package/lib/components/kv-workspace/kv-workspace.module.d.ts +14 -14
  213. package/package.json +2 -2
  214. package/public-api.d.ts +165 -165
  215. package/esm2022/lib/components/kv-chart/kvchart.module.mjs +0 -32
@@ -1,27 +1,27 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { CalendarTypeView } from 'primeng/calendar';
3
- import { BaseComponentInput } from '../../../api/base-components/base-component-input';
4
- import { ComponentService } from '../../../api/services/component.service';
5
- import * as i0 from "@angular/core";
6
- export declare class KvInputCalendarComponent extends BaseComponentInput<Date> implements OnInit {
7
- isYear: boolean;
8
- isMonthYear: boolean;
9
- minDate: Date;
10
- maxDate: Date;
11
- showButtonBar: boolean;
12
- showIcon: boolean;
13
- showTime: boolean;
14
- selectionMode: 'single' | 'multiple' | 'range';
15
- onSelectionChange: EventEmitter<any>;
16
- onSelectionValue: EventEmitter<any>;
17
- private dateFilter;
18
- typeView: CalendarTypeView;
19
- dateFormat: string;
20
- constructor(componentService: ComponentService);
21
- writeValue(value: Date): void;
22
- ngOnInit(): void;
23
- protected onInputChange(event: any): void;
24
- hideOnRangeMode(): void;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<KvInputCalendarComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<KvInputCalendarComponent, "kv-input-calendar", never, { "isYear": { "alias": "isYear"; "required": false; }; "isMonthYear": { "alias": "isMonthYear"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "showButtonBar": { "alias": "showButtonBar"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "showTime": { "alias": "showTime"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; }, { "onSelectionChange": "onSelectionChange"; "onSelectionValue": "onSelectionValue"; }, never, ["*"], false, never>;
27
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { CalendarTypeView } from 'primeng/calendar';
3
+ import { BaseComponentInput } from '../../../api/base-components/base-component-input';
4
+ import { ComponentService } from '../../../api/services/component.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class KvInputCalendarComponent extends BaseComponentInput<Date> implements OnInit {
7
+ isYear: boolean;
8
+ isMonthYear: boolean;
9
+ minDate: Date;
10
+ maxDate: Date;
11
+ showButtonBar: boolean;
12
+ showIcon: boolean;
13
+ showTime: boolean;
14
+ selectionMode: 'single' | 'multiple' | 'range';
15
+ onSelectionChange: EventEmitter<any>;
16
+ onSelectionValue: EventEmitter<any>;
17
+ private dateFilter;
18
+ typeView: CalendarTypeView;
19
+ dateFormat: string;
20
+ constructor(componentService: ComponentService);
21
+ writeValue(value: Date): void;
22
+ ngOnInit(): void;
23
+ protected onInputChange(event: any): void;
24
+ hideOnRangeMode(): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvInputCalendarComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvInputCalendarComponent, "kv-input-calendar", never, { "isYear": { "alias": "isYear"; "required": false; }; "isMonthYear": { "alias": "isMonthYear"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "showButtonBar": { "alias": "showButtonBar"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "showTime": { "alias": "showTime"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; }, { "onSelectionChange": "onSelectionChange"; "onSelectionValue": "onSelectionValue"; }, never, ["*"], false, never>;
27
+ }
@@ -1,12 +1,12 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
- import { ComponentService } from '../../../api/services/component.service';
4
- import * as i0 from "@angular/core";
5
- export declare class KvInputMaskComponent extends BaseComponentInput<string> implements OnInit {
6
- mask: string;
7
- onComplete: EventEmitter<any>;
8
- constructor(componentService: ComponentService);
9
- onCompleteComplete($event: any): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<KvInputMaskComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<KvInputMaskComponent, "kv-input-mask", never, { "mask": { "alias": "mask"; "required": false; }; }, { "onComplete": "onComplete"; }, never, ["*"], false, never>;
12
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
+ import { ComponentService } from '../../../api/services/component.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class KvInputMaskComponent extends BaseComponentInput<string> implements OnInit {
6
+ mask: string;
7
+ onComplete: EventEmitter<any>;
8
+ constructor(componentService: ComponentService);
9
+ onCompleteComplete($event: any): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvInputMaskComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvInputMaskComponent, "kv-input-mask", never, { "mask": { "alias": "mask"; "required": false; }; }, { "onComplete": "onComplete"; }, never, ["*"], false, never>;
12
+ }
@@ -1,19 +1,19 @@
1
- import { OnInit } from '@angular/core';
2
- import { InputNumber } from 'primeng/inputnumber';
3
- import { BaseComponentInput } from '../../../api/base-components/base-component-input';
4
- import { ComponentService } from '../../../api/services/component.service';
5
- import * as i0 from "@angular/core";
6
- export declare class KvInputNumberComponent extends BaseComponentInput<string> implements OnInit {
7
- mode: 'currency' | 'decimal';
8
- digits: number;
9
- min: number;
10
- max: number;
11
- suffix: string;
12
- inputNumber: InputNumber;
13
- constructor(componentService: ComponentService);
14
- ngOnInit(): void;
15
- private configDecimal;
16
- private configCurrency;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<KvInputNumberComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<KvInputNumberComponent, "kv-input-number", never, { "mode": { "alias": "mode"; "required": false; }; "digits": { "alias": "digits"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; }, {}, never, ["*"], false, never>;
19
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { InputNumber } from 'primeng/inputnumber';
3
+ import { BaseComponentInput } from '../../../api/base-components/base-component-input';
4
+ import { ComponentService } from '../../../api/services/component.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class KvInputNumberComponent extends BaseComponentInput<string> implements OnInit {
7
+ mode: 'currency' | 'decimal';
8
+ digits: number;
9
+ min: number;
10
+ max: number;
11
+ suffix: string;
12
+ inputNumber: InputNumber;
13
+ constructor(componentService: ComponentService);
14
+ ngOnInit(): void;
15
+ private configDecimal;
16
+ private configCurrency;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvInputNumberComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvInputNumberComponent, "kv-input-number", never, { "mode": { "alias": "mode"; "required": false; }; "digits": { "alias": "digits"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; }, {}, never, ["*"], false, never>;
19
+ }
@@ -1,13 +1,13 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
- import { ComponentService } from '../../../api/services/component.service';
4
- import * as i0 from "@angular/core";
5
- export declare class KvInputPasswordComponent extends BaseComponentInput<string> implements OnInit {
6
- feedback: boolean;
7
- mediumRegex: string;
8
- strongRegex: string;
9
- toggleMask: boolean;
10
- constructor(componentService: ComponentService);
11
- static ɵfac: i0.ɵɵFactoryDeclaration<KvInputPasswordComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<KvInputPasswordComponent, "kv-input-password", never, { "feedback": { "alias": "feedback"; "required": false; }; "mediumRegex": { "alias": "mediumRegex"; "required": false; }; "strongRegex": { "alias": "strongRegex"; "required": false; }; "toggleMask": { "alias": "toggleMask"; "required": false; }; }, {}, never, ["*"], false, never>;
13
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
+ import { ComponentService } from '../../../api/services/component.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class KvInputPasswordComponent extends BaseComponentInput<string> implements OnInit {
6
+ feedback: boolean;
7
+ mediumRegex: string;
8
+ strongRegex: string;
9
+ toggleMask: boolean;
10
+ constructor(componentService: ComponentService);
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvInputPasswordComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvInputPasswordComponent, "kv-input-password", never, { "feedback": { "alias": "feedback"; "required": false; }; "mediumRegex": { "alias": "mediumRegex"; "required": false; }; "strongRegex": { "alias": "strongRegex"; "required": false; }; "toggleMask": { "alias": "toggleMask"; "required": false; }; }, {}, never, ["*"], false, never>;
13
+ }
@@ -1,9 +1,9 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
- import { ComponentService } from '../../../api/services/component.service';
4
- import * as i0 from "@angular/core";
5
- export declare class KvInputTextComponent extends BaseComponentInput<string> implements OnInit {
6
- constructor(componentService: ComponentService);
7
- static ɵfac: i0.ɵɵFactoryDeclaration<KvInputTextComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<KvInputTextComponent, "kv-input-text", never, {}, {}, never, ["*"], false, never>;
9
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
+ import { ComponentService } from '../../../api/services/component.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class KvInputTextComponent extends BaseComponentInput<string> implements OnInit {
6
+ constructor(componentService: ComponentService);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvInputTextComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvInputTextComponent, "kv-input-text", never, {}, {}, never, ["*"], false, never>;
9
+ }
@@ -1,16 +1,16 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
- import { ComponentService } from '../../../api/services/component.service';
4
- import * as i0 from "@angular/core";
5
- export declare class KvInputTextCheckboxComponent extends BaseComponentInput<string> implements OnInit {
6
- constructor(componentService: ComponentService);
7
- checkBoxEmit: EventEmitter<boolean>;
8
- tooltipCheckbox: string;
9
- disabledCheckbox: boolean;
10
- private _checkBoxValue;
11
- set checkBoxValue(value: boolean);
12
- get checkBoxValue(): boolean;
13
- emitCheckBoxValue(): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<KvInputTextCheckboxComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<KvInputTextCheckboxComponent, "kv-input-text-checkbox", never, { "tooltipCheckbox": { "alias": "tooltipCheckbox"; "required": false; }; "disabledCheckbox": { "alias": "disabledCheckbox"; "required": false; }; }, { "checkBoxEmit": "checkBoxEmit"; }, never, never, false, never>;
16
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
+ import { ComponentService } from '../../../api/services/component.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class KvInputTextCheckboxComponent extends BaseComponentInput<string> implements OnInit {
6
+ constructor(componentService: ComponentService);
7
+ checkBoxEmit: EventEmitter<boolean>;
8
+ tooltipCheckbox: string;
9
+ disabledCheckbox: boolean;
10
+ private _checkBoxValue;
11
+ set checkBoxValue(value: boolean);
12
+ get checkBoxValue(): boolean;
13
+ emitCheckBoxValue(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvInputTextCheckboxComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvInputTextCheckboxComponent, "kv-input-text-checkbox", never, { "tooltipCheckbox": { "alias": "tooltipCheckbox"; "required": false; }; "disabledCheckbox": { "alias": "disabledCheckbox"; "required": false; }; }, { "checkBoxEmit": "checkBoxEmit"; }, never, never, false, never>;
16
+ }
@@ -1,16 +1,16 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
- import { ComponentService } from '../../../api/services/component.service';
4
- import * as i0 from "@angular/core";
5
- export declare class KvInputTextareaComponent extends BaseComponentInput<string> implements OnInit {
6
- multiline: boolean;
7
- rows: number;
8
- cols: number;
9
- autoResize: boolean;
10
- maxValueLength: number;
11
- counterValueLength: number;
12
- constructor(componentService: ComponentService);
13
- ngOnInit(): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<KvInputTextareaComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<KvInputTextareaComponent, "kv-input-textarea", never, { "multiline": { "alias": "multiline"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "autoResize": { "alias": "autoResize"; "required": false; }; "maxValueLength": { "alias": "maxValueLength"; "required": false; }; }, {}, never, ["*"], false, never>;
16
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
+ import { ComponentService } from '../../../api/services/component.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class KvInputTextareaComponent extends BaseComponentInput<string> implements OnInit {
6
+ multiline: boolean;
7
+ rows: number;
8
+ cols: number;
9
+ autoResize: boolean;
10
+ maxValueLength: number;
11
+ counterValueLength: number;
12
+ constructor(componentService: ComponentService);
13
+ ngOnInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvInputTextareaComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvInputTextareaComponent, "kv-input-textarea", never, { "multiline": { "alias": "multiline"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "autoResize": { "alias": "autoResize"; "required": false; }; "maxValueLength": { "alias": "maxValueLength"; "required": false; }; }, {}, never, ["*"], false, never>;
16
+ }
@@ -1,10 +1,10 @@
1
- import { OnInit } from '@angular/core';
2
- import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
- import { ComponentService } from '../../../api/services/component.service';
4
- import * as i0 from "@angular/core";
5
- export declare class KvInputTimeComponent extends BaseComponentInput<string> implements OnInit {
6
- showIcon: boolean;
7
- constructor(componentService: ComponentService);
8
- static ɵfac: i0.ɵɵFactoryDeclaration<KvInputTimeComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<KvInputTimeComponent, "kv-input-time", never, { "showIcon": { "alias": "showIcon"; "required": false; }; }, {}, never, ["*"], false, never>;
10
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
+ import { ComponentService } from '../../../api/services/component.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class KvInputTimeComponent extends BaseComponentInput<string> implements OnInit {
6
+ showIcon: boolean;
7
+ constructor(componentService: ComponentService);
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvInputTimeComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvInputTimeComponent, "kv-input-time", never, { "showIcon": { "alias": "showIcon"; "required": false; }; }, {}, never, ["*"], false, never>;
10
+ }
@@ -1,25 +1,25 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./kv-check/kv-check.component";
3
- import * as i2 from "./kv-dropdown/kv-dropdown.component";
4
- import * as i3 from "./kv-editor/kv-editor.component";
5
- import * as i4 from "./kv-input-calendar/kv-input-calendar.component";
6
- import * as i5 from "./kv-input-mask/kv-input-mask.component";
7
- import * as i6 from "./kv-input-number/kv-input-number.component";
8
- import * as i7 from "./kv-input-password/kv-input-password.component";
9
- import * as i8 from "./kv-input-textarea/kv-input-textarea.component";
10
- import * as i9 from "./kv-input-text-checkbox/kv-input-text-checkbox.component";
11
- import * as i10 from "./kv-input-text/kv-input-text.component";
12
- import * as i11 from "./kv-input-time/kv-input-time.component";
13
- import * as i12 from "./kv-multi-select/kv-multi-select.component";
14
- import * as i13 from "./kv-radio-group/kv-radio-group.component";
15
- import * as i14 from "./kv-switch/kv-switch.component";
16
- import * as i15 from "@angular/common";
17
- import * as i16 from "@angular/forms";
18
- import * as i17 from "../kv-error/kv-error.module";
19
- import * as i18 from "../kv-label/kv-label.module";
20
- import * as i19 from "../../api/modules/primeng.module";
21
- export declare class KvInputsModule {
22
- static ɵfac: i0.ɵɵFactoryDeclaration<KvInputsModule, never>;
23
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvInputsModule, [typeof i1.KvCheckComponent, typeof i2.KvDropdownComponent, typeof i3.KvEditorComponent, typeof i4.KvInputCalendarComponent, typeof i5.KvInputMaskComponent, typeof i6.KvInputNumberComponent, typeof i7.KvInputPasswordComponent, typeof i8.KvInputTextareaComponent, typeof i9.KvInputTextCheckboxComponent, typeof i10.KvInputTextComponent, typeof i11.KvInputTimeComponent, typeof i12.KvMultiSelectComponent, typeof i13.KvRadioGroupComponent, typeof i14.KvSwitchComponent], [typeof i15.CommonModule, typeof i16.FormsModule, typeof i17.kvErrorModule, typeof i18.KvLabelModule, typeof i19.PrimeNgModule, typeof i16.ReactiveFormsModule], [typeof i1.KvCheckComponent, typeof i2.KvDropdownComponent, typeof i3.KvEditorComponent, typeof i4.KvInputCalendarComponent, typeof i5.KvInputMaskComponent, typeof i6.KvInputNumberComponent, typeof i7.KvInputPasswordComponent, typeof i8.KvInputTextareaComponent, typeof i9.KvInputTextCheckboxComponent, typeof i10.KvInputTextComponent, typeof i11.KvInputTimeComponent, typeof i12.KvMultiSelectComponent, typeof i13.KvRadioGroupComponent, typeof i14.KvSwitchComponent]>;
24
- static ɵinj: i0.ɵɵInjectorDeclaration<KvInputsModule>;
25
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./kv-check/kv-check.component";
3
+ import * as i2 from "./kv-dropdown/kv-dropdown.component";
4
+ import * as i3 from "./kv-editor/kv-editor.component";
5
+ import * as i4 from "./kv-input-calendar/kv-input-calendar.component";
6
+ import * as i5 from "./kv-input-mask/kv-input-mask.component";
7
+ import * as i6 from "./kv-input-number/kv-input-number.component";
8
+ import * as i7 from "./kv-input-password/kv-input-password.component";
9
+ import * as i8 from "./kv-input-textarea/kv-input-textarea.component";
10
+ import * as i9 from "./kv-input-text-checkbox/kv-input-text-checkbox.component";
11
+ import * as i10 from "./kv-input-text/kv-input-text.component";
12
+ import * as i11 from "./kv-input-time/kv-input-time.component";
13
+ import * as i12 from "./kv-multi-select/kv-multi-select.component";
14
+ import * as i13 from "./kv-radio-group/kv-radio-group.component";
15
+ import * as i14 from "./kv-switch/kv-switch.component";
16
+ import * as i15 from "@angular/common";
17
+ import * as i16 from "@angular/forms";
18
+ import * as i17 from "../kv-error/kv-error.module";
19
+ import * as i18 from "../kv-label/kv-label.module";
20
+ import * as i19 from "../../api/modules/primeng.module";
21
+ export declare class KvInputsModule {
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvInputsModule, never>;
23
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KvInputsModule, [typeof i1.KvCheckComponent, typeof i2.KvDropdownComponent, typeof i3.KvEditorComponent, typeof i4.KvInputCalendarComponent, typeof i5.KvInputMaskComponent, typeof i6.KvInputNumberComponent, typeof i7.KvInputPasswordComponent, typeof i8.KvInputTextareaComponent, typeof i9.KvInputTextCheckboxComponent, typeof i10.KvInputTextComponent, typeof i11.KvInputTimeComponent, typeof i12.KvMultiSelectComponent, typeof i13.KvRadioGroupComponent, typeof i14.KvSwitchComponent], [typeof i15.CommonModule, typeof i16.FormsModule, typeof i17.kvErrorModule, typeof i18.KvLabelModule, typeof i19.PrimeNgModule, typeof i16.ReactiveFormsModule], [typeof i1.KvCheckComponent, typeof i2.KvDropdownComponent, typeof i3.KvEditorComponent, typeof i4.KvInputCalendarComponent, typeof i5.KvInputMaskComponent, typeof i6.KvInputNumberComponent, typeof i7.KvInputPasswordComponent, typeof i8.KvInputTextareaComponent, typeof i9.KvInputTextCheckboxComponent, typeof i10.KvInputTextComponent, typeof i11.KvInputTimeComponent, typeof i12.KvMultiSelectComponent, typeof i13.KvRadioGroupComponent, typeof i14.KvSwitchComponent]>;
24
+ static ɵinj: i0.ɵɵInjectorDeclaration<KvInputsModule>;
25
+ }
@@ -1,15 +1,15 @@
1
- import { TemplateRef } from '@angular/core';
2
- import { BaseComponentMultiSelect } from '../../../api/base-components/base-component-multi-select';
3
- import { ComponentService } from '../../../api/services/component.service';
4
- import * as i0 from "@angular/core";
5
- export declare class KvMultiSelectComponent extends BaseComponentMultiSelect {
6
- group: boolean;
7
- itemTemplate: TemplateRef<any>;
8
- maxSelectedLabels: number;
9
- optionInactive: boolean;
10
- inactiveOptions: string;
11
- ngOnInit(): void;
12
- constructor(componentService: ComponentService);
13
- static ɵfac: i0.ɵɵFactoryDeclaration<KvMultiSelectComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<KvMultiSelectComponent, "kv-multi-select", never, { "group": { "alias": "group"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; }; "maxSelectedLabels": { "alias": "maxSelectedLabels"; "required": false; }; "optionInactive": { "alias": "optionInactive"; "required": false; }; }, {}, never, ["*"], false, never>;
15
- }
1
+ import { TemplateRef } from '@angular/core';
2
+ import { BaseComponentMultiSelect } from '../../../api/base-components/base-component-multi-select';
3
+ import { ComponentService } from '../../../api/services/component.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class KvMultiSelectComponent extends BaseComponentMultiSelect {
6
+ group: boolean;
7
+ itemTemplate: TemplateRef<any>;
8
+ maxSelectedLabels: number;
9
+ optionInactive: boolean;
10
+ inactiveOptions: string;
11
+ ngOnInit(): void;
12
+ constructor(componentService: ComponentService);
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvMultiSelectComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvMultiSelectComponent, "kv-multi-select", never, { "group": { "alias": "group"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; }; "maxSelectedLabels": { "alias": "maxSelectedLabels"; "required": false; }; "optionInactive": { "alias": "optionInactive"; "required": false; }; }, {}, never, ["*"], false, never>;
15
+ }
@@ -1,18 +1,18 @@
1
- import { DoCheck, EventEmitter, OnInit } from '@angular/core';
2
- import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
- import { ComponentService } from '../../../api/services/component.service';
4
- import * as i0 from "@angular/core";
5
- export declare class KvRadioGroupComponent extends BaseComponentInput<any> implements OnInit, DoCheck {
6
- options: any[];
7
- optionValueDefault: any;
8
- vertical: boolean;
9
- onSelectedOption: EventEmitter<any>;
10
- selectedOpt: any;
11
- constructor(componentService: ComponentService);
12
- ngOnInit(): void;
13
- ngDoCheck(): void;
14
- selectedDefault(): void;
15
- selectedOption(event: any): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<KvRadioGroupComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<KvRadioGroupComponent, "kv-radio-group", never, { "options": { "alias": "options"; "required": false; }; "optionValueDefault": { "alias": "optionValueDefault"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, { "onSelectedOption": "onSelectedOption"; }, never, never, false, never>;
18
- }
1
+ import { DoCheck, EventEmitter, OnInit } from '@angular/core';
2
+ import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
+ import { ComponentService } from '../../../api/services/component.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class KvRadioGroupComponent extends BaseComponentInput<any> implements OnInit, DoCheck {
6
+ options: any[];
7
+ optionValueDefault: any;
8
+ vertical: boolean;
9
+ onSelectedOption: EventEmitter<any>;
10
+ selectedOpt: any;
11
+ constructor(componentService: ComponentService);
12
+ ngOnInit(): void;
13
+ ngDoCheck(): void;
14
+ selectedDefault(): void;
15
+ selectedOption(event: any): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvRadioGroupComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvRadioGroupComponent, "kv-radio-group", never, { "options": { "alias": "options"; "required": false; }; "optionValueDefault": { "alias": "optionValueDefault"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, { "onSelectedOption": "onSelectedOption"; }, never, never, false, never>;
18
+ }
@@ -1,14 +1,14 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
- import { ComponentService } from '../../../api/services/component.service';
4
- import * as i0 from "@angular/core";
5
- export declare class KvSwitchComponent extends BaseComponentInput<boolean> implements OnInit {
6
- readonly: boolean;
7
- switchValue: boolean;
8
- onSwitchChange: EventEmitter<any>;
9
- constructor(componentService: ComponentService);
10
- ngOnInit(): void;
11
- emitOnSwitchChange(event: any): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<KvSwitchComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<KvSwitchComponent, "kv-switch", never, { "readonly": { "alias": "readonly"; "required": false; }; "switchValue": { "alias": "switchValue"; "required": false; }; }, { "onSwitchChange": "onSwitchChange"; }, never, never, false, never>;
14
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { BaseComponentInput } from '../../../api/base-components/base-component-input';
3
+ import { ComponentService } from '../../../api/services/component.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class KvSwitchComponent extends BaseComponentInput<boolean> implements OnInit {
6
+ readonly: boolean;
7
+ switchValue: boolean;
8
+ onSwitchChange: EventEmitter<any>;
9
+ constructor(componentService: ComponentService);
10
+ ngOnInit(): void;
11
+ emitOnSwitchChange(event: any): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvSwitchComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvSwitchComponent, "kv-switch", never, { "readonly": { "alias": "readonly"; "required": false; }; "switchValue": { "alias": "switchValue"; "required": false; }; }, { "onSwitchChange": "onSwitchChange"; }, never, never, false, never>;
14
+ }
@@ -1,7 +1,7 @@
1
- import * as i0 from "@angular/core";
2
- export declare class KvLabelComponent {
3
- componentId: string;
4
- label: string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<KvLabelComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<KvLabelComponent, "kv-label", never, { "componentId": { "alias": "componentId"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, never, false, never>;
7
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class KvLabelComponent {
3
+ componentId: string;
4
+ label: string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvLabelComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvLabelComponent, "kv-label", never, { "componentId": { "alias": "componentId"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, never, false, never>;
7
+ }
@@ -1,8 +1,8 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./kv-label.component";
3
- import * as i2 from "@angular/common";
4
- export declare class KvLabelModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<KvLabelModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvLabelModule, [typeof i1.KvLabelComponent], [typeof i2.CommonModule], [typeof i1.KvLabelComponent]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<KvLabelModule>;
8
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./kv-label.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class KvLabelModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvLabelModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KvLabelModule, [typeof i1.KvLabelComponent], [typeof i2.CommonModule], [typeof i1.KvLabelComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<KvLabelModule>;
8
+ }
@@ -1,8 +1,8 @@
1
- import { Subject } from 'rxjs';
2
- import * as i0 from "@angular/core";
3
- export declare class KvLoaderComponent {
4
- loading: Subject<boolean>;
5
- constructor();
6
- static ɵfac: i0.ɵɵFactoryDeclaration<KvLoaderComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<KvLoaderComponent, "kv-loader", never, {}, {}, never, never, false, never>;
8
- }
1
+ import { Subject } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class KvLoaderComponent {
4
+ loading: Subject<boolean>;
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvLoaderComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvLoaderComponent, "kv-loader", never, {}, {}, never, never, false, never>;
8
+ }
@@ -1,9 +1,9 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./kv-loader.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "ngx-loading";
5
- export declare class KvLoaderModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<KvLoaderModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvLoaderModule, [typeof i1.KvLoaderComponent], [typeof i2.CommonModule, typeof i3.NgxLoadingModule], [typeof i1.KvLoaderComponent]>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<KvLoaderModule>;
9
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./kv-loader.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "ngx-loading";
5
+ export declare class KvLoaderModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvLoaderModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KvLoaderModule, [typeof i1.KvLoaderComponent], [typeof i2.CommonModule, typeof i3.NgxLoadingModule], [typeof i1.KvLoaderComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<KvLoaderModule>;
9
+ }
@@ -1,10 +1,10 @@
1
- import { Subject } from 'rxjs';
2
- import * as i0 from "@angular/core";
3
- export declare class KvLoaderService {
4
- static isLoading: Subject<boolean>;
5
- static show(): void;
6
- static hide(): void;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<KvLoaderService, never>;
8
- static ɵprov: i0.ɵɵInjectableDeclaration<KvLoaderService>;
9
- }
10
- export declare const loading: () => any;
1
+ import { Subject } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class KvLoaderService {
4
+ static isLoading: Subject<boolean>;
5
+ static show(): void;
6
+ static hide(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvLoaderService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<KvLoaderService>;
9
+ }
10
+ export declare const loading: () => any;
@@ -1,30 +1,30 @@
1
- import { ActivatedRoute, Router } from '@angular/router';
2
- import { EventEmitter } from '@angular/core';
3
- import { DialogService, DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
4
- import { FormBuilder } from '@angular/forms';
5
- import { BaseComponentCrudForm } from '../../api/base-components/base-component-crud-form';
6
- import { NotificationService } from '../../api/services/notification.service';
7
- import * as i0 from "@angular/core";
8
- /**
9
- * Componente de login personalizado.
10
- * Este componente permite que os usuários façam login no sistema utilizando o estilo padrão dos sistemas Keevo.
11
- */
12
- export declare class KvLoginComponent extends BaseComponentCrudForm {
13
- private formBuilder;
14
- /** URL da imagem de fundo do componente. */
15
- Background: any;
16
- /** URL do logo do sistema. */
17
- SystemLogo: any;
18
- /** Cor primária do sistema. */
19
- SystemColorPrimary: string;
20
- /** Cor secundária do sistema. */
21
- SystemColorSecondary: string;
22
- /** Evento emitido quando o usuário faz login. */
23
- onLogin: EventEmitter<any>;
24
- constructor(dialogService: DialogService, notificationService: NotificationService, activatedRoute: ActivatedRoute, dynamicDialogRef: DynamicDialogRef, dynamicDialogConfig: DynamicDialogConfig, router: Router, formBuilder: FormBuilder);
25
- configureForm(): void;
26
- loadForm(id: any): void;
27
- save(): void;
28
- static ɵfac: i0.ɵɵFactoryDeclaration<KvLoginComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<KvLoginComponent, "kv-login", never, { "Background": { "alias": "Background"; "required": false; }; "SystemLogo": { "alias": "SystemLogo"; "required": false; }; "SystemColorPrimary": { "alias": "SystemColorPrimary"; "required": false; }; "SystemColorSecondary": { "alias": "SystemColorSecondary"; "required": false; }; }, { "onLogin": "onLogin"; }, never, never, false, never>;
30
- }
1
+ import { ActivatedRoute, Router } from '@angular/router';
2
+ import { EventEmitter } from '@angular/core';
3
+ import { DialogService, DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
4
+ import { FormBuilder } from '@angular/forms';
5
+ import { BaseComponentCrudForm } from '../../api/base-components/base-component-crud-form';
6
+ import { NotificationService } from '../../api/services/notification.service';
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * Componente de login personalizado.
10
+ * Este componente permite que os usuários façam login no sistema utilizando o estilo padrão dos sistemas Keevo.
11
+ */
12
+ export declare class KvLoginComponent extends BaseComponentCrudForm {
13
+ private formBuilder;
14
+ /** URL da imagem de fundo do componente. */
15
+ Background: any;
16
+ /** URL do logo do sistema. */
17
+ SystemLogo: any;
18
+ /** Cor primária do sistema. */
19
+ SystemColorPrimary: string;
20
+ /** Cor secundária do sistema. */
21
+ SystemColorSecondary: string;
22
+ /** Evento emitido quando o usuário faz login. */
23
+ onLogin: EventEmitter<any>;
24
+ constructor(dialogService: DialogService, notificationService: NotificationService, activatedRoute: ActivatedRoute, dynamicDialogRef: DynamicDialogRef, dynamicDialogConfig: DynamicDialogConfig, router: Router, formBuilder: FormBuilder);
25
+ configureForm(): void;
26
+ loadForm(id: any): void;
27
+ save(): void;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvLoginComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvLoginComponent, "kv-login", never, { "Background": { "alias": "Background"; "required": false; }; "SystemLogo": { "alias": "SystemLogo"; "required": false; }; "SystemColorPrimary": { "alias": "SystemColorPrimary"; "required": false; }; "SystemColorSecondary": { "alias": "SystemColorSecondary"; "required": false; }; }, { "onLogin": "onLogin"; }, never, never, false, never>;
30
+ }