design-angular-kit 1.0.0-16 → 1.0.0-18

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 (218) hide show
  1. package/README.md +31 -6
  2. package/assets/i18n/en.json +4 -1
  3. package/assets/i18n/it.json +4 -1
  4. package/esm2022/lib/abstracts/abstract-form.component.mjs +186 -0
  5. package/esm2022/lib/abstracts/abstract.component.mjs +45 -0
  6. package/esm2022/lib/components/components.module.mjs +188 -0
  7. package/esm2022/lib/components/core/accordion/accordion.component.mjs +38 -0
  8. package/esm2022/lib/components/core/alert/alert.component.mjs +74 -0
  9. package/esm2022/lib/components/core/badge/badge.directive.mjs +38 -0
  10. package/esm2022/lib/components/core/button/button.directive.mjs +85 -0
  11. package/esm2022/lib/components/core/callout/callout.component.mjs +57 -0
  12. package/esm2022/lib/components/core/card/card.component.mjs +64 -0
  13. package/esm2022/lib/components/core/carousel/carousel/carousel.component.mjs +89 -0
  14. package/esm2022/lib/components/core/carousel/carousel-item/carousel-item.component.mjs +19 -0
  15. package/esm2022/lib/components/core/carousel/carousel.module.mjs +23 -0
  16. package/esm2022/lib/components/core/chip/chip.component.mjs +96 -0
  17. package/esm2022/lib/components/core/collapse/collapse.component.mjs +101 -0
  18. package/esm2022/lib/components/core/dimmer/dimmer-buttons/dimmer-buttons.component.mjs +24 -0
  19. package/esm2022/lib/components/core/dimmer/dimmer-icon/dimmer-icon.component.mjs +11 -0
  20. package/esm2022/lib/components/core/dimmer/dimmer.component.mjs +59 -0
  21. package/esm2022/lib/components/core/dimmer/dimmer.module.mjs +27 -0
  22. package/esm2022/lib/components/core/dropdown/dropdown/dropdown.component.mjs +143 -0
  23. package/esm2022/lib/components/core/dropdown/dropdown-item/dropdown-item.component.mjs +68 -0
  24. package/esm2022/lib/components/core/dropdown/dropdown.module.mjs +18 -0
  25. package/esm2022/lib/components/core/forward/forward.directive.mjs +53 -0
  26. package/esm2022/lib/components/core/link/link.component.mjs +46 -0
  27. package/esm2022/lib/components/core/list/list/list.component.mjs +17 -0
  28. package/esm2022/lib/components/core/list/list-item/list-item.component.mjs +40 -0
  29. package/esm2022/lib/components/core/list/list.module.mjs +23 -0
  30. package/esm2022/lib/components/core/modal/modal.component.mjs +164 -0
  31. package/esm2022/lib/components/core/notifications/notifications.component.mjs +111 -0
  32. package/esm2022/lib/components/core/pagination/pagination.component.mjs +133 -0
  33. package/esm2022/lib/components/core/popover/popover.directive.mjs +175 -0
  34. package/esm2022/lib/components/core/progress-bar/progress-bar.component.mjs +35 -0
  35. package/esm2022/lib/components/core/progress-button/progress-button.component.mjs +27 -0
  36. package/esm2022/lib/components/core/spinner/spinner.component.mjs +36 -0
  37. package/esm2022/lib/components/core/steppers/steppers-container/steppers-container.component.mjs +138 -0
  38. package/esm2022/lib/components/core/steppers/steppers-item/steppers-item.component.mjs +19 -0
  39. package/esm2022/lib/components/core/steppers/steppers.module.mjs +23 -0
  40. package/esm2022/lib/components/core/tab/tab-container/tab-container.component.mjs +60 -0
  41. package/esm2022/lib/components/core/tab/tab-item/tab-item.component.mjs +36 -0
  42. package/esm2022/lib/components/core/tab/tab.module.mjs +23 -0
  43. package/esm2022/lib/components/core/table/table.component.mjs +57 -0
  44. package/esm2022/lib/components/core/tooltip/tooltip.directive.mjs +142 -0
  45. package/esm2022/lib/components/form/checkbox/checkbox.component.mjs +49 -0
  46. package/esm2022/lib/components/form/form.module.mjs +55 -0
  47. package/esm2022/lib/components/form/input/input.component.mjs +239 -0
  48. package/esm2022/lib/components/form/password-input/password-input.component.mjs +155 -0
  49. package/esm2022/lib/components/form/radio-button/radio-button.component.mjs +69 -0
  50. package/esm2022/lib/components/form/range/range.component.mjs +64 -0
  51. package/esm2022/lib/components/form/rating/rating.component.mjs +51 -0
  52. package/esm2022/lib/components/form/select/select.component.mjs +70 -0
  53. package/esm2022/lib/components/form/textarea/textarea.component.mjs +47 -0
  54. package/esm2022/lib/components/form/upload-drag-drop/upload-drag-drop.component.mjs +140 -0
  55. package/esm2022/lib/components/form/upload-file-list/upload-file-list.component.mjs +112 -0
  56. package/esm2022/lib/components/navigation/back-button/back-button.component.mjs +71 -0
  57. package/esm2022/lib/components/navigation/back-to-top/back-to-top.component.mjs +64 -0
  58. package/esm2022/lib/components/navigation/breadcrumbs/breadcrumb/breadcrumb.component.mjs +57 -0
  59. package/esm2022/lib/components/navigation/breadcrumbs/breadcrumb-item/breadcrumb-item.component.mjs +23 -0
  60. package/esm2022/lib/components/navigation/breadcrumbs/breadcrumbs.module.mjs +18 -0
  61. package/esm2022/lib/components/navigation/header/header.component.mjs +58 -0
  62. package/esm2022/lib/components/utils/error-page/error-page.component.mjs +81 -0
  63. package/esm2022/lib/components/utils/icon/icon.component.mjs +55 -0
  64. package/esm2022/lib/components/utils/language-switcher/language-switcher.component.mjs +41 -0
  65. package/esm2022/lib/design-angular-kit.module.mjs +68 -0
  66. package/{esm2020 → esm2022}/lib/interfaces/form.mjs +1 -1
  67. package/esm2022/lib/interfaces/icon.mjs +165 -0
  68. package/esm2022/lib/pipes/mark-matching-text.pipe.mjs +37 -0
  69. package/esm2022/lib/services/notification/notification.service.mjs +120 -0
  70. package/esm2022/lib/utils/file-utils.mjs +73 -0
  71. package/esm2022/lib/utils/regex.mjs +31 -0
  72. package/esm2022/lib/validators/it-validators.mjs +153 -0
  73. package/esm2022/public_api.mjs +85 -0
  74. package/fesm2022/design-angular-kit.mjs +4615 -0
  75. package/fesm2022/design-angular-kit.mjs.map +1 -0
  76. package/lib/abstracts/abstract-form.component.d.ts +4 -4
  77. package/lib/abstracts/abstract.component.d.ts +3 -3
  78. package/lib/components/components.module.d.ts +32 -52
  79. package/lib/components/core/accordion/accordion.component.d.ts +6 -5
  80. package/lib/components/core/alert/alert.component.d.ts +5 -5
  81. package/lib/components/core/badge/badge.directive.d.ts +5 -5
  82. package/lib/components/core/button/button.directive.d.ts +11 -11
  83. package/lib/components/core/callout/callout.component.d.ts +7 -7
  84. package/lib/components/core/card/card.component.d.ts +8 -8
  85. package/lib/components/core/carousel/carousel/carousel.component.d.ts +10 -10
  86. package/lib/components/core/carousel/carousel-item/carousel-item.component.d.ts +4 -4
  87. package/lib/components/core/carousel/carousel.module.d.ts +8 -0
  88. package/lib/components/core/chip/chip.component.d.ts +6 -3
  89. package/lib/components/core/collapse/collapse.component.d.ts +8 -8
  90. package/lib/components/core/dimmer/dimmer-buttons/dimmer-buttons.component.d.ts +3 -3
  91. package/lib/components/core/dimmer/dimmer-icon/dimmer-icon.component.d.ts +3 -3
  92. package/lib/components/core/dimmer/dimmer.component.d.ts +4 -4
  93. package/lib/components/core/dimmer/dimmer.module.d.ts +9 -0
  94. package/lib/components/core/dropdown/dropdown/dropdown.component.d.ts +14 -9
  95. package/lib/components/core/dropdown/dropdown-item/dropdown-item.component.d.ts +8 -8
  96. package/lib/components/core/dropdown/dropdown.module.d.ts +8 -0
  97. package/lib/components/core/forward/forward.directive.d.ts +3 -3
  98. package/lib/components/core/link/link.component.d.ts +9 -8
  99. package/lib/components/core/list/list/list.component.d.ts +4 -4
  100. package/lib/components/core/list/list-item/list-item.component.d.ts +9 -9
  101. package/lib/components/core/list/list.module.d.ts +8 -0
  102. package/lib/components/core/modal/modal.component.d.ts +11 -11
  103. package/lib/components/core/notifications/notifications.component.d.ts +6 -6
  104. package/lib/components/core/pagination/pagination.component.d.ts +8 -8
  105. package/lib/components/core/popover/popover.directive.d.ts +3 -3
  106. package/lib/components/core/progress-bar/progress-bar.component.d.ts +6 -6
  107. package/lib/components/core/progress-button/progress-button.component.d.ts +5 -5
  108. package/lib/components/core/spinner/spinner.component.d.ts +5 -5
  109. package/lib/components/core/steppers/steppers-container/steppers-container.component.d.ts +37 -13
  110. package/lib/components/core/steppers/steppers-item/steppers-item.component.d.ts +5 -5
  111. package/lib/components/core/steppers/steppers.module.d.ts +8 -0
  112. package/lib/components/core/tab/tab-container/tab-container.component.d.ts +9 -9
  113. package/lib/components/core/tab/tab-item/tab-item.component.d.ts +8 -8
  114. package/lib/components/core/tab/tab.module.d.ts +8 -0
  115. package/lib/components/core/table/table.component.d.ts +12 -12
  116. package/lib/components/core/tooltip/tooltip.directive.d.ts +3 -3
  117. package/lib/components/form/checkbox/checkbox.component.d.ts +12 -10
  118. package/lib/components/form/form.module.d.ts +16 -0
  119. package/lib/components/form/input/input.component.d.ts +18 -13
  120. package/lib/components/form/password-input/password-input.component.d.ts +11 -6
  121. package/lib/components/form/radio-button/radio-button.component.d.ts +6 -6
  122. package/lib/components/form/range/range.component.d.ts +42 -0
  123. package/lib/components/form/rating/rating.component.d.ts +24 -0
  124. package/lib/components/form/select/select.component.d.ts +11 -6
  125. package/lib/components/form/textarea/textarea.component.d.ts +5 -5
  126. package/lib/components/form/upload-drag-drop/upload-drag-drop.component.d.ts +4 -4
  127. package/lib/components/form/upload-file-list/upload-file-list.component.d.ts +6 -6
  128. package/lib/components/navigation/back-button/back-button.component.d.ts +3 -3
  129. package/lib/components/navigation/back-to-top/back-to-top.component.d.ts +7 -7
  130. package/lib/components/navigation/breadcrumbs/breadcrumb/breadcrumb.component.d.ts +6 -6
  131. package/lib/components/navigation/breadcrumbs/breadcrumb-item/breadcrumb-item.component.d.ts +6 -6
  132. package/lib/components/navigation/breadcrumbs/breadcrumbs.module.d.ts +8 -0
  133. package/lib/components/navigation/header/header.component.d.ts +6 -6
  134. package/lib/components/utils/error-page/error-page.component.d.ts +6 -6
  135. package/lib/components/utils/icon/icon.component.d.ts +7 -7
  136. package/lib/components/utils/language-switcher/language-switcher.component.d.ts +4 -4
  137. package/lib/design-angular-kit.module.d.ts +3 -4
  138. package/lib/interfaces/core.d.ts +16 -16
  139. package/lib/interfaces/form.d.ts +3 -3
  140. package/lib/interfaces/icon.d.ts +4 -4
  141. package/lib/pipes/mark-matching-text.pipe.d.ts +4 -4
  142. package/lib/services/{notifications/notifications.service.d.ts → notification/notification.service.d.ts} +3 -3
  143. package/lib/utils/boolean-input.d.ts +1 -1
  144. package/lib/utils/regex.d.ts +5 -0
  145. package/lib/validators/it-validators.d.ts +4 -0
  146. package/package.json +13 -19
  147. package/public_api.d.ts +13 -4
  148. package/esm2020/lib/abstracts/abstract-form.component.mjs +0 -188
  149. package/esm2020/lib/abstracts/abstract.component.mjs +0 -45
  150. package/esm2020/lib/components/components.module.mjs +0 -256
  151. package/esm2020/lib/components/core/accordion/accordion.component.mjs +0 -35
  152. package/esm2020/lib/components/core/alert/alert.component.mjs +0 -73
  153. package/esm2020/lib/components/core/badge/badge.directive.mjs +0 -37
  154. package/esm2020/lib/components/core/button/button.directive.mjs +0 -84
  155. package/esm2020/lib/components/core/callout/callout.component.mjs +0 -57
  156. package/esm2020/lib/components/core/card/card.component.mjs +0 -64
  157. package/esm2020/lib/components/core/carousel/carousel/carousel.component.mjs +0 -89
  158. package/esm2020/lib/components/core/carousel/carousel-item/carousel-item.component.mjs +0 -19
  159. package/esm2020/lib/components/core/chip/chip.component.mjs +0 -89
  160. package/esm2020/lib/components/core/collapse/collapse.component.mjs +0 -101
  161. package/esm2020/lib/components/core/dimmer/dimmer-buttons/dimmer-buttons.component.mjs +0 -24
  162. package/esm2020/lib/components/core/dimmer/dimmer-icon/dimmer-icon.component.mjs +0 -11
  163. package/esm2020/lib/components/core/dimmer/dimmer.component.mjs +0 -59
  164. package/esm2020/lib/components/core/dropdown/dropdown/dropdown.component.mjs +0 -130
  165. package/esm2020/lib/components/core/dropdown/dropdown-item/dropdown-item.component.mjs +0 -68
  166. package/esm2020/lib/components/core/forward/forward.directive.mjs +0 -52
  167. package/esm2020/lib/components/core/link/link.component.mjs +0 -40
  168. package/esm2020/lib/components/core/list/list/list.component.mjs +0 -17
  169. package/esm2020/lib/components/core/list/list-item/list-item.component.mjs +0 -41
  170. package/esm2020/lib/components/core/modal/modal.component.mjs +0 -163
  171. package/esm2020/lib/components/core/notifications/notifications.component.mjs +0 -110
  172. package/esm2020/lib/components/core/pagination/pagination.component.mjs +0 -131
  173. package/esm2020/lib/components/core/popover/popover.directive.mjs +0 -174
  174. package/esm2020/lib/components/core/progress-bar/progress-bar.component.mjs +0 -34
  175. package/esm2020/lib/components/core/progress-button/progress-button.component.mjs +0 -27
  176. package/esm2020/lib/components/core/rating/rating.component.mjs +0 -49
  177. package/esm2020/lib/components/core/spinner/spinner.component.mjs +0 -35
  178. package/esm2020/lib/components/core/steppers/steppers-container/steppers-container.component.mjs +0 -127
  179. package/esm2020/lib/components/core/steppers/steppers-item/steppers-item.component.mjs +0 -19
  180. package/esm2020/lib/components/core/tab/tab-container/tab-container.component.mjs +0 -59
  181. package/esm2020/lib/components/core/tab/tab-item/tab-item.component.mjs +0 -36
  182. package/esm2020/lib/components/core/table/table.component.mjs +0 -57
  183. package/esm2020/lib/components/core/tooltip/tooltip.directive.mjs +0 -141
  184. package/esm2020/lib/components/form/checkbox/checkbox.component.mjs +0 -40
  185. package/esm2020/lib/components/form/input/input.component.mjs +0 -232
  186. package/esm2020/lib/components/form/password-input/password-input.component.mjs +0 -152
  187. package/esm2020/lib/components/form/radio-button/radio-button.component.mjs +0 -68
  188. package/esm2020/lib/components/form/select/select.component.mjs +0 -62
  189. package/esm2020/lib/components/form/textarea/textarea.component.mjs +0 -46
  190. package/esm2020/lib/components/form/upload-drag-drop/upload-drag-drop.component.mjs +0 -139
  191. package/esm2020/lib/components/form/upload-file-list/upload-file-list.component.mjs +0 -104
  192. package/esm2020/lib/components/navigation/back-button/back-button.component.mjs +0 -69
  193. package/esm2020/lib/components/navigation/back-to-top/back-to-top.component.mjs +0 -64
  194. package/esm2020/lib/components/navigation/breadcrumbs/breadcrumb/breadcrumb.component.mjs +0 -56
  195. package/esm2020/lib/components/navigation/breadcrumbs/breadcrumb-item/breadcrumb-item.component.mjs +0 -23
  196. package/esm2020/lib/components/navigation/header/header.component.mjs +0 -57
  197. package/esm2020/lib/components/utils/error-page/error-page.component.mjs +0 -79
  198. package/esm2020/lib/components/utils/icon/icon.component.mjs +0 -55
  199. package/esm2020/lib/components/utils/language-switcher/language-switcher.component.mjs +0 -39
  200. package/esm2020/lib/design-angular-kit.module.mjs +0 -68
  201. package/esm2020/lib/interfaces/icon.mjs +0 -162
  202. package/esm2020/lib/pipes/mark-matching-text.pipe.mjs +0 -36
  203. package/esm2020/lib/services/notifications/notifications.service.mjs +0 -120
  204. package/esm2020/lib/utils/file-utils.mjs +0 -73
  205. package/esm2020/lib/utils/regex.mjs +0 -26
  206. package/esm2020/lib/validators/it-validators.mjs +0 -147
  207. package/esm2020/public_api.mjs +0 -74
  208. package/fesm2015/design-angular-kit.mjs +0 -4422
  209. package/fesm2015/design-angular-kit.mjs.map +0 -1
  210. package/fesm2020/design-angular-kit.mjs +0 -4354
  211. package/fesm2020/design-angular-kit.mjs.map +0 -1
  212. package/lib/components/core/rating/rating.component.d.ts +0 -24
  213. /package/{esm2020 → esm2022}/design-angular-kit.mjs +0 -0
  214. /package/{esm2020 → esm2022}/lib/design-angular-kit-config.mjs +0 -0
  215. /package/{esm2020 → esm2022}/lib/interfaces/core.mjs +0 -0
  216. /package/{esm2020 → esm2022}/lib/interfaces/design-angular-kit-init.mjs +0 -0
  217. /package/{esm2020 → esm2022}/lib/interfaces/utils.mjs +0 -0
  218. /package/{esm2020 → esm2022}/lib/utils/boolean-input.mjs +0 -0
@@ -1,11 +1,11 @@
1
1
  import { ControlValueAccessor, FormControl, NgControl, ValidatorFn } from '@angular/forms';
2
2
  import { DoCheck, OnInit } from '@angular/core';
3
- import { AbstractComponent } from './abstract.component';
3
+ import { ItAbstractComponent } from './abstract.component';
4
4
  import { BooleanInput } from '../utils/boolean-input';
5
5
  import { Observable } from 'rxjs';
6
6
  import { TranslateService } from '@ngx-translate/core';
7
7
  import * as i0 from "@angular/core";
8
- export declare abstract class AbstractFormComponent<T = any> extends AbstractComponent implements OnInit, ControlValueAccessor, DoCheck {
8
+ export declare abstract class ItAbstractFormComponent<T = any> extends ItAbstractComponent implements OnInit, ControlValueAccessor, DoCheck {
9
9
  protected readonly _translateService: TranslateService;
10
10
  protected readonly _ngControl: NgControl;
11
11
  /**
@@ -81,6 +81,6 @@ export declare abstract class AbstractFormComponent<T = any> extends AbstractCom
81
81
  * null is returned.
82
82
  */
83
83
  getError(errorCode: string, path?: Array<string | number> | string): any;
84
- static ɵfac: i0.ɵɵFactoryDeclaration<AbstractFormComponent<any>, [null, { optional: true; self: true; }]>;
85
- static ɵcmp: i0.ɵɵComponentDeclaration<AbstractFormComponent<any>, "ng-component", never, { "label": "label"; "validationMode": "validationMode"; "disabled": "disabled"; }, {}, never, never, false, never>;
84
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItAbstractFormComponent<any>, [null, { optional: true; self: true; }]>;
85
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItAbstractFormComponent<any>, "ng-component", never, { "label": { "alias": "label"; "required": false; }; "validationMode": { "alias": "validationMode"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
86
86
  }
@@ -1,6 +1,6 @@
1
1
  import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, Renderer2, SimpleChanges } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
- export declare abstract class AbstractComponent implements AfterViewInit, OnChanges {
3
+ export declare abstract class ItAbstractComponent implements AfterViewInit, OnChanges {
4
4
  /**
5
5
  * The element ID
6
6
  */
@@ -25,6 +25,6 @@ export declare abstract class AbstractComponent implements AfterViewInit, OnChan
25
25
  * @private
26
26
  */
27
27
  private getDefaultId;
28
- static ɵfac: i0.ɵɵFactoryDeclaration<AbstractComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<AbstractComponent, "ng-component", never, { "id": "id"; }, { "valueChanges": "valueChanges"; }, never, never, false, never>;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItAbstractComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItAbstractComponent, "ng-component", never, { "id": { "alias": "id"; "required": false; }; }, { "valueChanges": "valueChanges"; }, never, never, false, never>;
30
30
  }
@@ -5,56 +5,36 @@ import * as i3 from "./core/badge/badge.directive";
5
5
  import * as i4 from "./core/button/button.directive";
6
6
  import * as i5 from "./core/callout/callout.component";
7
7
  import * as i6 from "./core/card/card.component";
8
- import * as i7 from "./core/carousel/carousel/carousel.component";
9
- import * as i8 from "./core/carousel/carousel-item/carousel-item.component";
10
- import * as i9 from "./core/chip/chip.component";
11
- import * as i10 from "./core/collapse/collapse.component";
12
- import * as i11 from "./core/dimmer/dimmer-buttons/dimmer-buttons.component";
13
- import * as i12 from "./core/dimmer/dimmer.component";
14
- import * as i13 from "./core/dimmer/dimmer-icon/dimmer-icon.component";
15
- import * as i14 from "./core/dropdown/dropdown/dropdown.component";
16
- import * as i15 from "./core/dropdown/dropdown-item/dropdown-item.component";
17
- import * as i16 from "./core/forward/forward.directive";
18
- import * as i17 from "./core/link/link.component";
19
- import * as i18 from "./core/list/list/list.component";
20
- import * as i19 from "./core/list/list-item/list-item.component";
21
- import * as i20 from "./core/modal/modal.component";
22
- import * as i21 from "./core/notifications/notifications.component";
23
- import * as i22 from "./core/pagination/pagination.component";
24
- import * as i23 from "./core/popover/popover.directive";
25
- import * as i24 from "./core/progress-bar/progress-bar.component";
26
- import * as i25 from "./core/progress-button/progress-button.component";
27
- import * as i26 from "./core/rating/rating.component";
28
- import * as i27 from "./core/spinner/spinner.component";
29
- import * as i28 from "./core/steppers/steppers-container/steppers-container.component";
30
- import * as i29 from "./core/steppers/steppers-item/steppers-item.component";
31
- import * as i30 from "./core/tab/tab-container/tab-container.component";
32
- import * as i31 from "./core/tab/tab-item/tab-item.component";
33
- import * as i32 from "./core/table/table.component";
34
- import * as i33 from "./core/tooltip/tooltip.directive";
35
- import * as i34 from "./form/checkbox/checkbox.component";
36
- import * as i35 from "./form/input/input.component";
37
- import * as i36 from "./form/password-input/password-input.component";
38
- import * as i37 from "./form/radio-button/radio-button.component";
39
- import * as i38 from "./form/select/select.component";
40
- import * as i39 from "./form/textarea/textarea.component";
41
- import * as i40 from "./form/upload-drag-drop/upload-drag-drop.component";
42
- import * as i41 from "./form/upload-file-list/upload-file-list.component";
43
- import * as i42 from "./navigation/back-button/back-button.component";
44
- import * as i43 from "./navigation/back-to-top/back-to-top.component";
45
- import * as i44 from "./navigation/breadcrumbs/breadcrumb/breadcrumb.component";
46
- import * as i45 from "./navigation/breadcrumbs/breadcrumb-item/breadcrumb-item.component";
47
- import * as i46 from "./navigation/header/header.component";
48
- import * as i47 from "./utils/icon/icon.component";
49
- import * as i48 from "./utils/error-page/error-page.component";
50
- import * as i49 from "./utils/language-switcher/language-switcher.component";
51
- import * as i50 from "../pipes/mark-matching-text.pipe";
52
- import * as i51 from "@angular/common";
53
- import * as i52 from "@ngx-translate/core";
54
- import * as i53 from "@angular/forms";
55
- import * as i54 from "@angular/router";
56
- export declare class ComponentsModule {
57
- static ɵfac: i0.ɵɵFactoryDeclaration<ComponentsModule, never>;
58
- static ɵmod: i0.ɵɵNgModuleDeclaration<ComponentsModule, [typeof i1.AccordionComponent, typeof i2.AlertComponent, typeof i3.BadgeDirective, typeof i4.ButtonDirective, typeof i5.CalloutComponent, typeof i6.CardComponent, typeof i7.CarouselComponent, typeof i8.CarouselItemComponent, typeof i9.ChipComponent, typeof i10.CollapseComponent, typeof i11.DimmerButtonsComponent, typeof i12.DimmerComponent, typeof i13.DimmerIconComponent, typeof i14.DropdownComponent, typeof i15.DropdownItemComponent, typeof i16.ForwardDirective, typeof i17.LinkComponent, typeof i18.ListComponent, typeof i19.ListItemComponent, typeof i20.ModalComponent, typeof i21.NotificationsComponent, typeof i22.PaginationComponent, typeof i23.PopoverDirective, typeof i24.ProgressBarComponent, typeof i25.ProgressButtonComponent, typeof i26.RatingComponent, typeof i27.SpinnerComponent, typeof i28.SteppersContainerComponent, typeof i29.SteppersItemComponent, typeof i30.TabContainerComponent, typeof i31.TabItemComponent, typeof i32.TableComponent, typeof i33.TooltipDirective, typeof i34.CheckboxComponent, typeof i35.InputComponent, typeof i36.PasswordInputComponent, typeof i37.RadioButtonComponent, typeof i38.SelectComponent, typeof i39.TextareaComponent, typeof i40.UploadDragDropComponent, typeof i41.UploadFileListComponent, typeof i42.BackButtonComponent, typeof i43.BackToTopComponent, typeof i44.BreadcrumbComponent, typeof i45.BreadcrumbItemComponent, typeof i46.HeaderComponent, typeof i47.IconComponent, typeof i48.ErrorPageComponent, typeof i49.LanguageSwitcherComponent, typeof i50.MarkMatchingTextPipe], [typeof i51.CommonModule, typeof i52.TranslateModule, typeof i53.ReactiveFormsModule, typeof i51.NgIf, typeof i51.NgForOf, typeof i54.RouterLink], [typeof i1.AccordionComponent, typeof i2.AlertComponent, typeof i3.BadgeDirective, typeof i4.ButtonDirective, typeof i5.CalloutComponent, typeof i6.CardComponent, typeof i7.CarouselComponent, typeof i8.CarouselItemComponent, typeof i9.ChipComponent, typeof i10.CollapseComponent, typeof i11.DimmerButtonsComponent, typeof i12.DimmerComponent, typeof i13.DimmerIconComponent, typeof i14.DropdownComponent, typeof i15.DropdownItemComponent, typeof i16.ForwardDirective, typeof i17.LinkComponent, typeof i18.ListComponent, typeof i19.ListItemComponent, typeof i20.ModalComponent, typeof i21.NotificationsComponent, typeof i22.PaginationComponent, typeof i23.PopoverDirective, typeof i24.ProgressBarComponent, typeof i25.ProgressButtonComponent, typeof i26.RatingComponent, typeof i27.SpinnerComponent, typeof i28.SteppersContainerComponent, typeof i29.SteppersItemComponent, typeof i30.TabContainerComponent, typeof i31.TabItemComponent, typeof i32.TableComponent, typeof i33.TooltipDirective, typeof i34.CheckboxComponent, typeof i35.InputComponent, typeof i36.PasswordInputComponent, typeof i37.RadioButtonComponent, typeof i38.SelectComponent, typeof i39.TextareaComponent, typeof i40.UploadDragDropComponent, typeof i41.UploadFileListComponent, typeof i42.BackButtonComponent, typeof i43.BackToTopComponent, typeof i44.BreadcrumbComponent, typeof i45.BreadcrumbItemComponent, typeof i46.HeaderComponent, typeof i47.IconComponent, typeof i48.ErrorPageComponent, typeof i49.LanguageSwitcherComponent, typeof i50.MarkMatchingTextPipe]>;
59
- static ɵinj: i0.ɵɵInjectorDeclaration<ComponentsModule>;
8
+ import * as i7 from "./core/carousel/carousel.module";
9
+ import * as i8 from "./core/chip/chip.component";
10
+ import * as i9 from "./core/collapse/collapse.component";
11
+ import * as i10 from "./core/dimmer/dimmer.module";
12
+ import * as i11 from "./core/dropdown/dropdown.module";
13
+ import * as i12 from "./core/forward/forward.directive";
14
+ import * as i13 from "./core/link/link.component";
15
+ import * as i14 from "./core/list/list.module";
16
+ import * as i15 from "./core/modal/modal.component";
17
+ import * as i16 from "./core/notifications/notifications.component";
18
+ import * as i17 from "./core/pagination/pagination.component";
19
+ import * as i18 from "./core/popover/popover.directive";
20
+ import * as i19 from "./core/progress-bar/progress-bar.component";
21
+ import * as i20 from "./core/progress-button/progress-button.component";
22
+ import * as i21 from "./core/spinner/spinner.component";
23
+ import * as i22 from "./core/steppers/steppers.module";
24
+ import * as i23 from "./core/tab/tab.module";
25
+ import * as i24 from "./core/table/table.component";
26
+ import * as i25 from "./core/tooltip/tooltip.directive";
27
+ import * as i26 from "./form/form.module";
28
+ import * as i27 from "./navigation/back-button/back-button.component";
29
+ import * as i28 from "./navigation/back-to-top/back-to-top.component";
30
+ import * as i29 from "./navigation/breadcrumbs/breadcrumbs.module";
31
+ import * as i30 from "./navigation/header/header.component";
32
+ import * as i31 from "./utils/error-page/error-page.component";
33
+ import * as i32 from "./utils/icon/icon.component";
34
+ import * as i33 from "./utils/language-switcher/language-switcher.component";
35
+ import * as i34 from "../pipes/mark-matching-text.pipe";
36
+ export declare class ItComponentsModule {
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItComponentsModule, never>;
38
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ItComponentsModule, never, [typeof i1.ItAccordionComponent, typeof i2.ItAlertComponent, typeof i3.ItBadgeDirective, typeof i4.ItButtonDirective, typeof i5.ItCalloutComponent, typeof i6.ItCardComponent, typeof i7.ItCarouselModule, typeof i8.ItChipComponent, typeof i9.ItCollapseComponent, typeof i10.ItDimmerModule, typeof i11.ItDropdownModule, typeof i12.ItForwardDirective, typeof i13.ItLinkComponent, typeof i14.ItListModule, typeof i15.ItModalComponent, typeof i16.ItNotificationsComponent, typeof i17.ItPaginationComponent, typeof i18.ItPopoverDirective, typeof i19.ItProgressBarComponent, typeof i20.ItProgressButtonComponent, typeof i21.ItSpinnerComponent, typeof i22.ItSteppersModule, typeof i23.ItTabModule, typeof i24.ItTableComponent, typeof i25.ItTooltipDirective, typeof i26.ItFormModule, typeof i27.ItBackButtonComponent, typeof i28.ItBackToTopComponent, typeof i29.ItBreadcrumbsModule, typeof i30.ItHeaderComponent, typeof i31.ItErrorPageComponent, typeof i32.ItIconComponent, typeof i33.ItLanguageSwitcherComponent, typeof i34.MarkMatchingTextPipe], [typeof i1.ItAccordionComponent, typeof i2.ItAlertComponent, typeof i3.ItBadgeDirective, typeof i4.ItButtonDirective, typeof i5.ItCalloutComponent, typeof i6.ItCardComponent, typeof i7.ItCarouselModule, typeof i8.ItChipComponent, typeof i9.ItCollapseComponent, typeof i10.ItDimmerModule, typeof i11.ItDropdownModule, typeof i12.ItForwardDirective, typeof i13.ItLinkComponent, typeof i14.ItListModule, typeof i15.ItModalComponent, typeof i16.ItNotificationsComponent, typeof i17.ItPaginationComponent, typeof i18.ItPopoverDirective, typeof i19.ItProgressBarComponent, typeof i20.ItProgressButtonComponent, typeof i21.ItSpinnerComponent, typeof i22.ItSteppersModule, typeof i23.ItTabModule, typeof i24.ItTableComponent, typeof i25.ItTooltipDirective, typeof i26.ItFormModule, typeof i27.ItBackButtonComponent, typeof i28.ItBackToTopComponent, typeof i29.ItBreadcrumbsModule, typeof i30.ItHeaderComponent, typeof i31.ItErrorPageComponent, typeof i32.ItIconComponent, typeof i33.ItLanguageSwitcherComponent, typeof i34.MarkMatchingTextPipe]>;
39
+ static ɵinj: i0.ɵɵInjectorDeclaration<ItComponentsModule>;
60
40
  }
@@ -1,17 +1,18 @@
1
- import { AfterViewInit } from '@angular/core';
2
- import { CollapseComponent } from '../collapse/collapse.component';
1
+ import { AfterViewInit, ElementRef } from '@angular/core';
2
+ import { ItCollapseComponent } from '../collapse/collapse.component';
3
3
  import * as i0 from "@angular/core";
4
4
  /**
5
5
  * Accordion
6
6
  * @description Build vertically collapsible accordions based on Collapse.
7
7
  */
8
- export declare class AccordionComponent extends CollapseComponent implements AfterViewInit {
8
+ export declare class ItAccordionComponent extends ItCollapseComponent implements AfterViewInit {
9
9
  /**
10
10
  * Accordion Title
11
11
  */
12
12
  title: string;
13
+ protected collapseDiv?: ElementRef<HTMLDivElement>;
13
14
  protected isCollapsed: boolean;
14
15
  ngAfterViewInit(): void;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<AccordionComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "it-accordion[title]", ["itAccordion"], { "title": "title"; }, {}, never, ["*"], false, never>;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItAccordionComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItAccordionComponent, "it-accordion[title]", ["itAccordion"], { "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], true, never>;
17
18
  }
@@ -1,13 +1,13 @@
1
1
  import { AfterViewInit, EventEmitter } from '@angular/core';
2
2
  import { AlertColor } from '../../../interfaces/core';
3
3
  import { BooleanInput } from '../../../utils/boolean-input';
4
- import { AbstractComponent } from '../../../abstracts/abstract.component';
4
+ import { ItAbstractComponent } from '../../../abstracts/abstract.component';
5
5
  import * as i0 from "@angular/core";
6
6
  /**
7
7
  * Alert
8
8
  * @description You can provide feedback to the user via alert messages.
9
9
  */
10
- export declare class AlertComponent extends AbstractComponent implements AfterViewInit {
10
+ export declare class ItAlertComponent extends ItAbstractComponent implements AfterViewInit {
11
11
  /**
12
12
  * The alert color
13
13
  * @default info
@@ -17,7 +17,7 @@ export declare class AlertComponent extends AbstractComponent implements AfterVi
17
17
  * Inserts the close button
18
18
  * @default false
19
19
  */
20
- dismissible?: BooleanInput;
20
+ dismissible: BooleanInput | undefined;
21
21
  /**
22
22
  * This event fires immediately when the instance's close method is called.
23
23
  */
@@ -39,6 +39,6 @@ export declare class AlertComponent extends AbstractComponent implements AfterVi
39
39
  * The alert is removed
40
40
  */
41
41
  dispose(): void;
42
- static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
43
- static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "it-alert", ["itAlert"], { "color": "color"; "dismissible": "dismissible"; }, { "closeEvent": "closeEvent"; "closedEvent": "closedEvent"; }, never, ["[heading]", "*"], false, never>;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItAlertComponent, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItAlertComponent, "it-alert", ["itAlert"], { "color": { "alias": "color"; "required": false; }; "dismissible": { "alias": "dismissible"; "required": false; }; }, { "closeEvent": "closeEvent"; "closedEvent": "closedEvent"; }, never, ["[heading]", "*"], true, never>;
44
44
  }
@@ -5,18 +5,18 @@ import * as i0 from "@angular/core";
5
5
  * Badge
6
6
  * @description Useful for small counters and labels
7
7
  */
8
- export declare class BadgeDirective {
8
+ export declare class ItBadgeDirective {
9
9
  /**
10
10
  * Define the badge color
11
11
  * @default undefined
12
12
  */
13
- color?: BadgeColor;
13
+ color: BadgeColor | undefined;
14
14
  /**
15
15
  * Show rounded badge
16
16
  * @default false
17
17
  */
18
- rounded?: BooleanInput;
18
+ rounded: BooleanInput | undefined;
19
19
  protected get badgeClass(): string;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<BadgeDirective, never>;
21
- static ɵdir: i0.ɵɵDirectiveDeclaration<BadgeDirective, "[itBadge]", ["itBadge"], { "color": "itBadge"; "rounded": "rounded"; }, {}, never, never, false, never>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItBadgeDirective, never>;
21
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ItBadgeDirective, "[itBadge]", ["itBadge"], { "color": { "alias": "itBadge"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; }, {}, never, never, true, never>;
22
22
  }
@@ -1,45 +1,45 @@
1
1
  import { QueryList } from '@angular/core';
2
2
  import { ButtonColor, ButtonSize } from '../../../interfaces/core';
3
- import { IconComponent } from '../../utils/icon/icon.component';
3
+ import { ItIconComponent } from '../../utils/icon/icon.component';
4
4
  import { BooleanInput } from '../../../utils/boolean-input';
5
- import { ProgressButtonComponent } from '../progress-button/progress-button.component';
5
+ import { ItProgressButtonComponent } from '../progress-button/progress-button.component';
6
6
  import * as i0 from "@angular/core";
7
7
  /**
8
8
  * Button
9
9
  * @description Bootstrap italia custom button styles
10
10
  */
11
- export declare class ButtonDirective {
11
+ export declare class ItButtonDirective {
12
12
  private progressButtonComponent;
13
13
  /**
14
14
  * Button color
15
15
  * @default undefined
16
16
  */
17
- color?: ButtonColor;
17
+ color: ButtonColor | undefined;
18
18
  /**
19
19
  * Button size
20
20
  * @default undefined
21
21
  */
22
- size?: ButtonSize;
22
+ size: ButtonSize | undefined;
23
23
  /**
24
24
  * Indicates whether the button occupies all the width available to it.
25
25
  * @default undefined
26
26
  */
27
- block?: ButtonSize;
27
+ block: ButtonSize | undefined;
28
28
  /**
29
29
  * If button is disabled
30
30
  * @default false
31
31
  */
32
- disabled?: BooleanInput;
32
+ disabled: BooleanInput | undefined;
33
33
  /**
34
34
  * The icon children
35
35
  * @default undefined
36
36
  */
37
- protected icons?: QueryList<IconComponent>;
37
+ protected icons?: QueryList<ItIconComponent>;
38
38
  private isFocus;
39
- constructor(progressButtonComponent: ProgressButtonComponent);
39
+ constructor(progressButtonComponent: ItProgressButtonComponent);
40
40
  protected onFocus(): void;
41
41
  protected onBlur(): void;
42
42
  protected get hostClasses(): string;
43
- static ɵfac: i0.ɵɵFactoryDeclaration<ButtonDirective, [{ optional: true; host: true; }]>;
44
- static ɵdir: i0.ɵɵDirectiveDeclaration<ButtonDirective, "[itButton]", ["itButton"], { "color": "itButton"; "size": "size"; "block": "block"; "disabled": "disabled"; }, {}, ["icons"], never, false, never>;
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItButtonDirective, [{ optional: true; host: true; }]>;
44
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ItButtonDirective, "[itButton]", ["itButton"], { "color": { "alias": "itButton"; "required": false; }; "size": { "alias": "size"; "required": false; }; "block": { "alias": "block"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, ["icons"], never, true, never>;
45
45
  }
@@ -5,17 +5,17 @@ import * as i0 from "@angular/core";
5
5
  * Callout
6
6
  * @description Callouts can be used to highlight certain parts of the text that require particular attention. They may contain error messages, warnings, hints, etc.
7
7
  */
8
- export declare class CalloutComponent {
8
+ export declare class ItCalloutComponent {
9
9
  /**
10
10
  * Callout label
11
11
  * @default undefined
12
12
  */
13
- label?: string;
13
+ label: string | undefined;
14
14
  /**
15
15
  * Callout hiddenLabel
16
16
  * @default undefined
17
17
  */
18
- hiddenLabel?: string;
18
+ hiddenLabel: string | undefined;
19
19
  /**
20
20
  * Callout color
21
21
  * - <b>success</b>
@@ -25,7 +25,7 @@ export declare class CalloutComponent {
25
25
  * - <b>note</b>
26
26
  * @default undefined
27
27
  */
28
- color?: CalloutColor;
28
+ color: CalloutColor | undefined;
29
29
  /**
30
30
  * Callout appearance
31
31
  * - <b>default</b>
@@ -38,8 +38,8 @@ export declare class CalloutComponent {
38
38
  * Custom icon
39
39
  * @default undefined
40
40
  */
41
- icon?: IconName;
41
+ icon: IconName | undefined;
42
42
  protected get iconName(): IconName;
43
- static ɵfac: i0.ɵɵFactoryDeclaration<CalloutComponent, never>;
44
- static ɵcmp: i0.ɵɵComponentDeclaration<CalloutComponent, "it-callout", never, { "label": "label"; "hiddenLabel": "hiddenLabel"; "color": "color"; "appearance": "appearance"; "icon": "icon"; }, {}, never, ["[bigText]", "*"], false, never>;
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItCalloutComponent, never>;
44
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItCalloutComponent, "it-callout", never, { "label": { "alias": "label"; "required": false; }; "hiddenLabel": { "alias": "hiddenLabel"; "required": false; }; "color": { "alias": "color"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["[bigText]", "*"], true, never>;
45
45
  }
@@ -1,11 +1,11 @@
1
- import { AbstractComponent } from '../../../abstracts/abstract.component';
1
+ import { ItAbstractComponent } from '../../../abstracts/abstract.component';
2
2
  import { BooleanInput } from '../../../utils/boolean-input';
3
3
  import * as i0 from "@angular/core";
4
4
  /**
5
5
  * Card
6
6
  * @description A container of texts and images with many options and variations.
7
7
  */
8
- export declare class CardComponent extends AbstractComponent {
8
+ export declare class ItCardComponent extends ItAbstractComponent {
9
9
  /**
10
10
  * It serves to space the cards in their mobile version.
11
11
  * @default true
@@ -15,22 +15,22 @@ export declare class CardComponent extends AbstractComponent {
15
15
  * To create cards with short or "preview" content
16
16
  * @default false
17
17
  */
18
- teaser?: BooleanInput;
18
+ teaser: BooleanInput | undefined;
19
19
  /**
20
20
  * Card with image
21
21
  * @default false
22
22
  */
23
- hasImage?: BooleanInput;
23
+ hasImage: BooleanInput | undefined;
24
24
  /**
25
25
  * To add rounding effects
26
26
  * @default false
27
27
  */
28
- rounded?: BooleanInput;
28
+ rounded: BooleanInput | undefined;
29
29
  /**
30
30
  * To add shadow effects
31
31
  * @default false
32
32
  */
33
- shadow?: BooleanInput;
33
+ shadow: BooleanInput | undefined;
34
34
  /**
35
35
  * Custom card class
36
36
  * @default ''
@@ -46,6 +46,6 @@ export declare class CardComponent extends AbstractComponent {
46
46
  protected get isHasImage(): boolean;
47
47
  protected get isRounded(): boolean;
48
48
  protected get isShadow(): boolean;
49
- static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
50
- static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "it-card", never, { "space": "space"; "teaser": "teaser"; "hasImage": "hasImage"; "rounded": "rounded"; "shadow": "shadow"; "cardClass": "cardClass"; "bodyClass": "bodyClass"; }, {}, never, ["[beforeBody]", "*"], false, never>;
49
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItCardComponent, never>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItCardComponent, "it-card", never, { "space": { "alias": "space"; "required": false; }; "teaser": { "alias": "teaser"; "required": false; }; "hasImage": { "alias": "hasImage"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "shadow": { "alias": "shadow"; "required": false; }; "cardClass": { "alias": "cardClass"; "required": false; }; "bodyClass": { "alias": "bodyClass"; "required": false; }; }, {}, never, ["[beforeBody]", "*"], true, never>;
51
51
  }
@@ -1,19 +1,19 @@
1
1
  import { AfterViewInit, ChangeDetectorRef, OnDestroy, QueryList } from '@angular/core';
2
2
  import { CarouselType } from '../../../../interfaces/core';
3
3
  import { BooleanInput } from '../../../../utils/boolean-input';
4
- import { CarouselItemComponent } from '../carousel-item/carousel-item.component';
4
+ import { ItCarouselItemComponent } from '../carousel-item/carousel-item.component';
5
5
  import * as i0 from "@angular/core";
6
6
  /**
7
7
  * Carousel
8
8
  * @description A presentation component for scrolling through elements, images or text slides.
9
9
  */
10
- export declare class CarouselComponent implements AfterViewInit, OnDestroy {
10
+ export declare class ItCarouselComponent implements AfterViewInit, OnDestroy {
11
11
  private readonly _changeDetectorRef;
12
12
  /**
13
13
  * The callout title
14
14
  * @default undefined
15
15
  */
16
- title?: string;
16
+ title: string | undefined;
17
17
  /**
18
18
  * The carousel type
19
19
  * @default default
@@ -28,23 +28,23 @@ export declare class CarouselComponent implements AfterViewInit, OnDestroy {
28
28
  * True for full screen (landscape) viewing
29
29
  * @default undefined
30
30
  */
31
- fullCarousel?: BooleanInput;
31
+ fullCarousel: BooleanInput | undefined;
32
32
  /**
33
33
  * To indicate that the contained image is of a large type
34
34
  * @default undefined
35
35
  */
36
- bigImg?: BooleanInput;
36
+ bigImg: BooleanInput | undefined;
37
37
  /**
38
38
  * To indicate that the contained image is of a standard type
39
39
  * @default undefined
40
40
  */
41
- standardImage?: BooleanInput;
41
+ standardImage: BooleanInput | undefined;
42
42
  /**
43
43
  * Card line style
44
44
  * @default undefined
45
45
  */
46
- lined?: BooleanInput;
47
- protected items?: QueryList<CarouselItemComponent>;
46
+ lined: BooleanInput | undefined;
47
+ protected items?: QueryList<ItCarouselItemComponent>;
48
48
  private carousel?;
49
49
  private carouselDiv;
50
50
  private itemSubscriptions?;
@@ -60,6 +60,6 @@ export declare class CarouselComponent implements AfterViewInit, OnDestroy {
60
60
  * Removes CarouselBI features
61
61
  */
62
62
  dispose(): void;
63
- static ɵfac: i0.ɵɵFactoryDeclaration<CarouselComponent, never>;
64
- static ɵcmp: i0.ɵɵComponentDeclaration<CarouselComponent, "it-carousel", ["itCarousel"], { "title": "title"; "type": "type"; "trackClass": "trackClass"; "fullCarousel": "fullCarousel"; "bigImg": "bigImg"; "standardImage": "standardImage"; "lined": "lined"; }, {}, ["items"], never, false, never>;
63
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItCarouselComponent, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItCarouselComponent, "it-carousel", ["itCarousel"], { "title": { "alias": "title"; "required": false; }; "type": { "alias": "type"; "required": false; }; "trackClass": { "alias": "trackClass"; "required": false; }; "fullCarousel": { "alias": "fullCarousel"; "required": false; }; "bigImg": { "alias": "bigImg"; "required": false; }; "standardImage": { "alias": "standardImage"; "required": false; }; "lined": { "alias": "lined"; "required": false; }; }, {}, ["items"], never, true, never>;
65
65
  }
@@ -1,15 +1,15 @@
1
1
  import { TemplateRef } from '@angular/core';
2
- import { AbstractComponent } from '../../../../abstracts/abstract.component';
2
+ import { ItAbstractComponent } from '../../../../abstracts/abstract.component';
3
3
  import * as i0 from "@angular/core";
4
4
  /**
5
5
  * Carousel Item
6
6
  * @description element, image or text slide of carousel
7
7
  */
8
- export declare class CarouselItemComponent extends AbstractComponent {
8
+ export declare class ItCarouselItemComponent extends ItAbstractComponent {
9
9
  /**
10
10
  * The content of item
11
11
  */
12
12
  htmlContent: TemplateRef<any>;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<CarouselItemComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<CarouselItemComponent, "it-carousel-item", never, {}, {}, never, ["*"], false, never>;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItCarouselItemComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItCarouselItemComponent, "it-carousel-item", never, {}, {}, never, ["*"], true, never>;
15
15
  }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./carousel/carousel.component";
3
+ import * as i2 from "./carousel-item/carousel-item.component";
4
+ export declare class ItCarouselModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItCarouselModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ItCarouselModule, never, [typeof i1.ItCarouselComponent, typeof i2.ItCarouselItemComponent], [typeof i1.ItCarouselComponent, typeof i2.ItCarouselItemComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ItCarouselModule>;
8
+ }
@@ -1,8 +1,10 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { IconName } from '../../../interfaces/icon';
3
3
  import { ChipColor } from '../../../interfaces/core';
4
+ import { DesignAngularKitConfig } from '../../../design-angular-kit-config';
4
5
  import * as i0 from "@angular/core";
5
- export declare class ChipComponent {
6
+ export declare class ItChipComponent {
7
+ protected readonly config: DesignAngularKitConfig;
6
8
  /**
7
9
  * Indica la label
8
10
  */
@@ -56,7 +58,8 @@ export declare class ChipComponent {
56
58
  */
57
59
  closeEvent: EventEmitter<any>;
58
60
  iconClose: IconName;
61
+ constructor(config: DesignAngularKitConfig);
59
62
  clickToClose(): void;
60
- static ɵfac: i0.ɵɵFactoryDeclaration<ChipComponent, never>;
61
- static ɵcmp: i0.ɵɵComponentDeclaration<ChipComponent, "it-chip", never, { "label": "label"; "showCloseButton": "showCloseButton"; "size": "size"; "color": "color"; "disabled": "disabled"; "icon": "icon"; "avatar": "avatar"; "altAvatar": "altAvatar"; }, { "closeEvent": "closeEvent"; }, never, never, false, never>;
63
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItChipComponent, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItChipComponent, "it-chip", never, { "label": { "alias": "label"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "avatar": { "alias": "avatar"; "required": false; }; "altAvatar": { "alias": "altAvatar"; "required": false; }; }, { "closeEvent": "closeEvent"; }, never, never, true, never>;
62
65
  }
@@ -1,16 +1,16 @@
1
- import { AfterViewInit, EventEmitter } from '@angular/core';
2
- import { AbstractComponent } from '../../../abstracts/abstract.component';
1
+ import { AfterViewInit, ElementRef, EventEmitter } from '@angular/core';
2
+ import { ItAbstractComponent } from '../../../abstracts/abstract.component';
3
3
  import { BooleanInput } from '../../../utils/boolean-input';
4
4
  import * as i0 from "@angular/core";
5
- export declare class CollapseComponent extends AbstractComponent implements AfterViewInit {
5
+ export declare class ItCollapseComponent extends ItAbstractComponent implements AfterViewInit {
6
6
  /**
7
7
  * Enable multiple collapse
8
8
  */
9
- multi?: BooleanInput;
9
+ multi: BooleanInput | undefined;
10
10
  /**
11
11
  * Toggles the collapsible element on invocation
12
12
  */
13
- opened?: BooleanInput;
13
+ opened: BooleanInput | undefined;
14
14
  /**
15
15
  * Custom class
16
16
  */
@@ -32,7 +32,7 @@ export declare class CollapseComponent extends AbstractComponent implements Afte
32
32
  */
33
33
  hiddenEvent: EventEmitter<Event>;
34
34
  private collapse?;
35
- private collapseDiv?;
35
+ protected collapseDiv?: ElementRef<HTMLDivElement>;
36
36
  get isMulti(): boolean;
37
37
  get isOpenedOnStart(): boolean;
38
38
  ngAfterViewInit(): void;
@@ -55,6 +55,6 @@ export declare class CollapseComponent extends AbstractComponent implements Afte
55
55
  * Eliminates the possibility of an item being resealable
56
56
  */
57
57
  dispose(): void;
58
- static ɵfac: i0.ɵɵFactoryDeclaration<CollapseComponent, never>;
59
- static ɵcmp: i0.ɵɵComponentDeclaration<CollapseComponent, "it-collapse", ["itCollapse"], { "multi": "multi"; "opened": "opened"; "class": "class"; }, { "showEvent": "showEvent"; "shownEvent": "shownEvent"; "hideEvent": "hideEvent"; "hiddenEvent": "hiddenEvent"; }, never, ["*"], false, never>;
58
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItCollapseComponent, never>;
59
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItCollapseComponent, "it-collapse", ["itCollapse"], { "multi": { "alias": "multi"; "required": false; }; "opened": { "alias": "opened"; "required": false; }; "class": { "alias": "class"; "required": false; }; }, { "showEvent": "showEvent"; "shownEvent": "shownEvent"; "hideEvent": "hideEvent"; "hiddenEvent": "hiddenEvent"; }, never, ["*"], true, never>;
60
60
  }
@@ -1,5 +1,5 @@
1
1
  import * as i0 from "@angular/core";
2
- export declare class DimmerButtonsComponent {
2
+ export declare class ItDimmerButtonsComponent {
3
3
  /**
4
4
  * Indica se abbiamo 1 solo bottone
5
5
  * @default false
@@ -7,6 +7,6 @@ export declare class DimmerButtonsComponent {
7
7
  set hasOneButton(value: boolean);
8
8
  get hasOneButton(): boolean;
9
9
  private _hasOneButton;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<DimmerButtonsComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<DimmerButtonsComponent, "it-dimmer-buttons", never, { "hasOneButton": "hasOneButton"; }, {}, never, ["*"], false, never>;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItDimmerButtonsComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItDimmerButtonsComponent, "it-dimmer-buttons", never, { "hasOneButton": { "alias": "hasOneButton"; "required": false; }; }, {}, never, ["*"], true, never>;
12
12
  }
@@ -1,5 +1,5 @@
1
1
  import * as i0 from "@angular/core";
2
- export declare class DimmerIconComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<DimmerIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<DimmerIconComponent, "it-dimmer-icon", never, {}, {}, never, ["*"], false, never>;
2
+ export declare class ItDimmerIconComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItDimmerIconComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItDimmerIconComponent, "it-dimmer-icon", never, {}, {}, never, ["*"], true, never>;
5
5
  }
@@ -1,7 +1,7 @@
1
1
  import { ElementRef, OnInit } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
- export declare type DimmerColor = '' | 'dimmer-primary';
4
- export declare class DimmerComponent implements OnInit {
3
+ export type DimmerColor = '' | 'dimmer-primary';
4
+ export declare class ItDimmerComponent implements OnInit {
5
5
  private elementRef;
6
6
  /**
7
7
  * Dimmer status
@@ -19,6 +19,6 @@ export declare class DimmerComponent implements OnInit {
19
19
  private _color;
20
20
  constructor(elementRef: ElementRef);
21
21
  ngOnInit(): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<DimmerComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<DimmerComponent, "it-dimmer", never, { "active": "active"; "color": "color"; }, {}, never, ["*"], false, never>;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItDimmerComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItDimmerComponent, "it-dimmer", never, { "active": { "alias": "active"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, ["*"], true, never>;
24
24
  }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dimmer.component";
3
+ import * as i2 from "./dimmer-icon/dimmer-icon.component";
4
+ import * as i3 from "./dimmer-buttons/dimmer-buttons.component";
5
+ export declare class ItDimmerModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItDimmerModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ItDimmerModule, never, [typeof i1.ItDimmerComponent, typeof i2.ItDimmerIconComponent, typeof i3.ItDimmerButtonsComponent], [typeof i1.ItDimmerComponent, typeof i2.ItDimmerIconComponent, typeof i3.ItDimmerButtonsComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<ItDimmerModule>;
9
+ }