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
@@ -0,0 +1,24 @@
1
+ import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { ItAbstractFormComponent } from '../../../abstracts/abstract-form.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ItRatingComponent extends ItAbstractFormComponent<number | null | undefined> implements OnInit, OnChanges {
5
+ /**
6
+ * The rating value
7
+ */
8
+ value: number | undefined;
9
+ /**
10
+ * Number of stars to show
11
+ * @default 5
12
+ */
13
+ starCount: number;
14
+ protected stars: Array<number>;
15
+ ngOnChanges(changes: SimpleChanges): void;
16
+ ngOnInit(): void;
17
+ /**
18
+ * Generate the array of stars
19
+ * @private
20
+ */
21
+ private generateStars;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItRatingComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItRatingComponent, "it-rating", never, { "value": { "alias": "value"; "required": false; }; "starCount": { "alias": "starCount"; "required": false; }; }, {}, never, never, true, never>;
24
+ }
@@ -1,20 +1,25 @@
1
1
  import { OnInit } from '@angular/core';
2
- import { AbstractFormComponent } from '../../../abstracts/abstract-form.component';
2
+ import { ItAbstractFormComponent } from '../../../abstracts/abstract-form.component';
3
3
  import { SelectControlGroup, SelectControlOption } from '../../../interfaces/form';
4
4
  import * as i0 from "@angular/core";
5
- export declare class SelectComponent extends AbstractFormComponent implements OnInit {
5
+ export declare class ItSelectComponent extends ItAbstractFormComponent implements OnInit {
6
6
  /**
7
7
  * The select options
8
8
  */
9
- options?: Array<SelectControlOption>;
9
+ options: Array<SelectControlOption> | undefined;
10
10
  /**
11
11
  * The select group options
12
12
  */
13
- groups?: Array<SelectControlGroup>;
13
+ groups: Array<SelectControlGroup> | undefined;
14
14
  /**
15
15
  * The select description
16
16
  */
17
17
  description?: string;
18
+ /**
19
+ * If set, add a `disabled selected` option with value `null` and as text the value of the attribute
20
+ * @example 'Select an option'
21
+ */
22
+ defaultOption?: string;
18
23
  ngOnInit(): void;
19
24
  /**
20
25
  * Check if the option is selected
@@ -26,6 +31,6 @@ export declare class SelectComponent extends AbstractFormComponent implements On
26
31
  * @param option the option
27
32
  */
28
33
  optionIsDisabled(option: SelectControlOption): boolean;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "it-select", never, { "options": "options"; "groups": "groups"; "description": "description"; }, {}, never, never, false, never>;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItSelectComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItSelectComponent, "it-select", never, { "options": { "alias": "options"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "description": { "alias": "description"; "required": false; }; "defaultOption": { "alias": "defaultOption"; "required": false; }; }, {}, never, ["*", "[error]"], true, never>;
31
36
  }
@@ -1,7 +1,7 @@
1
- import { AbstractFormComponent } from '../../../abstracts/abstract-form.component';
1
+ import { ItAbstractFormComponent } from '../../../abstracts/abstract-form.component';
2
2
  import { Observable } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
- export declare class TextareaComponent extends AbstractFormComponent<string> {
4
+ export declare class ItTextareaComponent extends ItAbstractFormComponent<string | null | undefined> {
5
5
  /**
6
6
  * Textarea Rows
7
7
  * @default 3
@@ -14,11 +14,11 @@ export declare class TextareaComponent extends AbstractFormComponent<string> {
14
14
  /**
15
15
  * The input description
16
16
  */
17
- description?: string;
17
+ description: string | undefined;
18
18
  /**
19
19
  * Return the invalid message string from TranslateService
20
20
  */
21
21
  get invalidMessage(): Observable<string>;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<TextareaComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<TextareaComponent, "it-textarea", never, { "rows": "rows"; "placeholder": "placeholder"; "description": "description"; }, {}, never, ["[error]"], false, never>;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItTextareaComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItTextareaComponent, "it-textarea", never, { "rows": { "alias": "rows"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "description": { "alias": "description"; "required": false; }; }, {}, never, ["[error]"], true, never>;
24
24
  }
@@ -1,8 +1,8 @@
1
1
  import { AfterViewInit, EventEmitter } from '@angular/core';
2
- import { AbstractComponent } from '../../../abstracts/abstract.component';
2
+ import { ItAbstractComponent } from '../../../abstracts/abstract.component';
3
3
  import { ProgressDonut } from 'bootstrap-italia';
4
4
  import * as i0 from "@angular/core";
5
- export declare class UploadDragDropComponent extends AbstractComponent implements AfterViewInit {
5
+ export declare class ItUploadDragDropComponent extends ItAbstractComponent implements AfterViewInit {
6
6
  /**
7
7
  * The accepted file type to upload <br>
8
8
  * Possible values: <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types">MIME Types</a> separated by comma
@@ -49,6 +49,6 @@ export declare class UploadDragDropComponent extends AbstractComponent implement
49
49
  * Reset file uploader
50
50
  */
51
51
  reset(): void;
52
- static ɵfac: i0.ɵɵFactoryDeclaration<UploadDragDropComponent, never>;
53
- static ɵcmp: i0.ɵɵComponentDeclaration<UploadDragDropComponent, "it-upload-drag-drop", ["itUploadDragDrop"], { "accept": "accept"; }, { "fileStartUpload": "fileStartUpload"; }, never, never, false, never>;
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItUploadDragDropComponent, never>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItUploadDragDropComponent, "it-upload-drag-drop", ["itUploadDragDrop"], { "accept": { "alias": "accept"; "required": false; }; }, { "fileStartUpload": "fileStartUpload"; }, never, never, true, never>;
54
54
  }
@@ -1,9 +1,9 @@
1
1
  import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
- import { AbstractComponent } from '../../../abstracts/abstract.component';
2
+ import { ItAbstractComponent } from '../../../abstracts/abstract.component';
3
3
  import { BooleanInput } from '../../../utils/boolean-input';
4
4
  import { UploadFileListItem } from '../../../interfaces/form';
5
5
  import * as i0 from "@angular/core";
6
- export declare class UploadFileListComponent extends AbstractComponent implements OnInit, OnChanges {
6
+ export declare class ItUploadFileListComponent extends ItAbstractComponent implements OnInit, OnChanges {
7
7
  /**
8
8
  * The list of files to show in list
9
9
  */
@@ -22,11 +22,11 @@ export declare class UploadFileListComponent extends AbstractComponent implement
22
22
  /**
23
23
  * If is file list image
24
24
  */
25
- images?: BooleanInput;
25
+ images: BooleanInput | undefined;
26
26
  /**
27
27
  * Hide the load button
28
28
  */
29
- hideLoadButton?: BooleanInput;
29
+ hideLoadButton: BooleanInput | undefined;
30
30
  /**
31
31
  * Fired when upload new files
32
32
  */
@@ -54,6 +54,6 @@ export declare class UploadFileListComponent extends AbstractComponent implement
54
54
  * @param file
55
55
  */
56
56
  getFileSize(file: File): string;
57
- static ɵfac: i0.ɵɵFactoryDeclaration<UploadFileListComponent, never>;
58
- static ɵcmp: i0.ɵɵComponentDeclaration<UploadFileListComponent, "it-upload-file-list[fileList]", never, { "fileList": "fileList"; "accept": "accept"; "multiple": "multiple"; "images": "images"; "hideLoadButton": "hideLoadButton"; }, { "uploadFiles": "uploadFiles"; "deleteItem": "deleteItem"; }, never, never, false, never>;
57
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItUploadFileListComponent, never>;
58
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItUploadFileListComponent, "it-upload-file-list[fileList]", never, { "fileList": { "alias": "fileList"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "images": { "alias": "images"; "required": false; }; "hideLoadButton": { "alias": "hideLoadButton"; "required": false; }; }, { "uploadFiles": "uploadFiles"; "deleteItem": "deleteItem"; }, never, never, true, never>;
59
59
  }
@@ -1,7 +1,7 @@
1
1
  import { Location } from '@angular/common';
2
2
  import { BooleanInput } from '../../../utils/boolean-input';
3
3
  import * as i0 from "@angular/core";
4
- export declare class BackButtonComponent {
4
+ export declare class ItBackButtonComponent {
5
5
  readonly _location: Location;
6
6
  /**
7
7
  * Back button style
@@ -42,6 +42,6 @@ export declare class BackButtonComponent {
42
42
  * Go back function
43
43
  */
44
44
  goBack(event: Event): void;
45
- static ɵfac: i0.ɵɵFactoryDeclaration<BackButtonComponent, never>;
46
- static ɵcmp: i0.ɵɵComponentDeclaration<BackButtonComponent, "it-back-button", ["itBackButton"], { "buttonStyle": "buttonStyle"; "direction": "direction"; "showIcon": "showIcon"; "showText": "showText"; "backFn": "backFn"; }, {}, never, never, false, never>;
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItBackButtonComponent, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItBackButtonComponent, "it-back-button", ["itBackButton"], { "buttonStyle": { "alias": "buttonStyle"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "showText": { "alias": "showText"; "required": false; }; "backFn": { "alias": "backFn"; "required": false; }; }, {}, never, never, true, never>;
47
47
  }
@@ -1,20 +1,20 @@
1
1
  import { AfterViewInit } from '@angular/core';
2
2
  import { BooleanInput } from '../../../utils/boolean-input';
3
- import { AbstractComponent } from '../../../abstracts/abstract.component';
3
+ import { ItAbstractComponent } from '../../../abstracts/abstract.component';
4
4
  import * as i0 from "@angular/core";
5
- export declare class BackToTopComponent extends AbstractComponent implements AfterViewInit {
5
+ export declare class ItBackToTopComponent extends ItAbstractComponent implements AfterViewInit {
6
6
  /**
7
7
  * Show small button
8
8
  */
9
- small?: BooleanInput;
9
+ small: BooleanInput | undefined;
10
10
  /**
11
11
  * Show shadow
12
12
  */
13
- shadow?: BooleanInput;
13
+ shadow: BooleanInput | undefined;
14
14
  /**
15
15
  * Button usable button on a dark background
16
16
  */
17
- dark?: BooleanInput;
17
+ dark: BooleanInput | undefined;
18
18
  private backToTop?;
19
19
  private backToTopElement?;
20
20
  get isSmall(): boolean;
@@ -37,6 +37,6 @@ export declare class BackToTopComponent extends AbstractComponent implements Aft
37
37
  * Eliminate component features
38
38
  */
39
39
  dispose(): void;
40
- static ɵfac: i0.ɵɵFactoryDeclaration<BackToTopComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<BackToTopComponent, "it-back-to-top", ["itBackToTop"], { "small": "small"; "shadow": "shadow"; "dark": "dark"; }, {}, never, never, false, never>;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItBackToTopComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItBackToTopComponent, "it-back-to-top", ["itBackToTop"], { "small": { "alias": "small"; "required": false; }; "shadow": { "alias": "shadow"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; }, {}, never, never, true, never>;
42
42
  }
@@ -1,8 +1,8 @@
1
1
  import { AfterViewInit, ChangeDetectorRef, OnDestroy, QueryList } from '@angular/core';
2
- import { BreadcrumbItemComponent } from '../breadcrumb-item/breadcrumb-item.component';
2
+ import { ItBreadcrumbItemComponent } from '../breadcrumb-item/breadcrumb-item.component';
3
3
  import { BooleanInput } from '../../../../utils/boolean-input';
4
4
  import * as i0 from "@angular/core";
5
- export declare class BreadcrumbComponent implements AfterViewInit, OnDestroy {
5
+ export declare class ItBreadcrumbComponent implements AfterViewInit, OnDestroy {
6
6
  private readonly _changeDetectorRef;
7
7
  /**
8
8
  * The character to use as separator
@@ -12,11 +12,11 @@ export declare class BreadcrumbComponent implements AfterViewInit, OnDestroy {
12
12
  /**
13
13
  * Dark style
14
14
  */
15
- dark?: BooleanInput;
15
+ dark: BooleanInput | undefined;
16
16
  /**
17
17
  * The tab items
18
18
  */
19
- items?: QueryList<BreadcrumbItemComponent>;
19
+ items?: QueryList<ItBreadcrumbItemComponent>;
20
20
  get isDark(): boolean;
21
21
  private itemSubscriptions?;
22
22
  constructor(_changeDetectorRef: ChangeDetectorRef);
@@ -27,6 +27,6 @@ export declare class BreadcrumbComponent implements AfterViewInit, OnDestroy {
27
27
  * @param index
28
28
  */
29
29
  protected isLastItem(index: number): boolean;
30
- static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
31
- static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "it-breadcrumb", never, { "separator": "separator"; "dark": "dark"; }, {}, ["items"], never, false, never>;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItBreadcrumbComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItBreadcrumbComponent, "it-breadcrumb", never, { "separator": { "alias": "separator"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; }, {}, ["items"], never, true, never>;
32
32
  }
@@ -1,22 +1,22 @@
1
1
  import { TemplateRef } from '@angular/core';
2
2
  import { BooleanInput } from '../../../../utils/boolean-input';
3
3
  import { IconName } from '../../../../interfaces/icon';
4
- import { LinkComponent } from '../../../core/link/link.component';
4
+ import { ItLinkComponent } from '../../../core/link/link.component';
5
5
  import * as i0 from "@angular/core";
6
- export declare class BreadcrumbItemComponent extends LinkComponent {
6
+ export declare class ItBreadcrumbItemComponent extends ItLinkComponent {
7
7
  /**
8
8
  * Is active breadcrumb item
9
9
  */
10
- active?: BooleanInput;
10
+ active: BooleanInput | undefined;
11
11
  /**
12
12
  * The name of icon to show
13
13
  */
14
- iconName?: IconName;
14
+ iconName: IconName | undefined;
15
15
  /**
16
16
  * The content of item
17
17
  */
18
18
  htmlContent: TemplateRef<any>;
19
19
  get isActive(): boolean;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbItemComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbItemComponent, "it-breadcrumb-item", never, { "active": "active"; "iconName": "iconName"; }, {}, never, ["*"], false, never>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItBreadcrumbItemComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItBreadcrumbItemComponent, "it-breadcrumb-item", never, { "active": { "alias": "active"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; }, {}, never, ["*"], true, never>;
22
22
  }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./breadcrumb/breadcrumb.component";
3
+ import * as i2 from "./breadcrumb-item/breadcrumb-item.component";
4
+ export declare class ItBreadcrumbsModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItBreadcrumbsModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ItBreadcrumbsModule, never, [typeof i1.ItBreadcrumbComponent, typeof i2.ItBreadcrumbItemComponent], [typeof i1.ItBreadcrumbComponent, typeof i2.ItBreadcrumbItemComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ItBreadcrumbsModule>;
8
+ }
@@ -1,11 +1,11 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { BooleanInput } from '../../../utils/boolean-input';
3
- import { AbstractComponent } from '../../../abstracts/abstract.component';
3
+ import { ItAbstractComponent } from '../../../abstracts/abstract.component';
4
4
  import * as i0 from "@angular/core";
5
- export declare class HeaderComponent extends AbstractComponent {
6
- light?: BooleanInput;
5
+ export declare class ItHeaderComponent extends ItAbstractComponent {
6
+ light: BooleanInput | undefined;
7
7
  showSlim?: BooleanInput;
8
- slimTitle?: string;
8
+ slimTitle: string | undefined;
9
9
  loginStyle: 'none' | 'default' | 'full';
10
10
  smallHeader?: BooleanInput;
11
11
  showSearch?: BooleanInput;
@@ -19,6 +19,6 @@ export declare class HeaderComponent extends AbstractComponent {
19
19
  get isShowSlim(): boolean;
20
20
  get isSmallHeader(): boolean;
21
21
  get isShowSearch(): boolean;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "it-header", never, { "light": "light"; "showSlim": "showSlim"; "slimTitle": "slimTitle"; "loginStyle": "loginStyle"; "smallHeader": "smallHeader"; "showSearch": "showSearch"; }, { "loginClick": "loginClick"; "searchClick": "searchClick"; }, never, ["[slimLinkList]", "[slimRightZone]", "[brand]", "[rightZone]"], false, never>;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItHeaderComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItHeaderComponent, "it-header", never, { "light": { "alias": "light"; "required": false; }; "showSlim": { "alias": "showSlim"; "required": false; }; "slimTitle": { "alias": "slimTitle"; "required": false; }; "loginStyle": { "alias": "loginStyle"; "required": false; }; "smallHeader": { "alias": "smallHeader"; "required": false; }; "showSearch": { "alias": "showSearch"; "required": false; }; }, { "loginClick": "loginClick"; "searchClick": "searchClick"; }, never, ["[slimLinkList]", "[slimRightZone]", "[brand]", "[rightZone]"], true, never>;
24
24
  }
@@ -1,12 +1,12 @@
1
1
  import { ActivatedRoute } from '@angular/router';
2
2
  import { BooleanInput } from '../../../utils/boolean-input';
3
3
  import * as i0 from "@angular/core";
4
- export declare class ErrorPageComponent {
4
+ export declare class ItErrorPageComponent {
5
5
  private readonly route;
6
6
  /**
7
7
  * The error code to show
8
8
  */
9
- errorCode?: number | 404 | 403 | 500;
9
+ errorCode: number | 404 | 403 | 500 | undefined;
10
10
  /**
11
11
  * Show/Hide error code
12
12
  * @default true - show
@@ -17,13 +17,13 @@ export declare class ErrorPageComponent {
17
17
  * - If set it will be displayed instead of the default title.
18
18
  * - It is possible to use i18n keys
19
19
  */
20
- errorTitle?: string;
20
+ errorTitle: string | undefined;
21
21
  /**
22
22
  * Custom error description
23
23
  * - If set it will be displayed instead of the default description.
24
24
  * - It is possible to use i18n keys
25
25
  */
26
- errorDescription?: string;
26
+ errorDescription: string | undefined;
27
27
  /**
28
28
  * Show/Hide back button
29
29
  * @default true - show
@@ -39,6 +39,6 @@ export declare class ErrorPageComponent {
39
39
  get isShowErrorCode(): boolean;
40
40
  get isShowBackButton(): boolean;
41
41
  get isShowHomeButton(): boolean;
42
- static ɵfac: i0.ɵɵFactoryDeclaration<ErrorPageComponent, never>;
43
- static ɵcmp: i0.ɵɵComponentDeclaration<ErrorPageComponent, "it-error-page", never, { "errorCode": "errorCode"; "showErrorCode": "showErrorCode"; "errorTitle": "errorTitle"; "errorDescription": "errorDescription"; "showBackButton": "showBackButton"; "showHomeButton": "showHomeButton"; }, {}, never, never, false, never>;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItErrorPageComponent, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItErrorPageComponent, "it-error-page", never, { "errorCode": { "alias": "errorCode"; "required": false; }; "showErrorCode": { "alias": "showErrorCode"; "required": false; }; "errorTitle": { "alias": "errorTitle"; "required": false; }; "errorDescription": { "alias": "errorDescription"; "required": false; }; "showBackButton": { "alias": "showBackButton"; "required": false; }; "showHomeButton": { "alias": "showHomeButton"; "required": false; }; }, {}, never, never, true, never>;
44
44
  }
@@ -2,7 +2,7 @@ import { IconColor, IconName, IconSize } from '../../../interfaces/icon';
2
2
  import { BooleanInput } from '../../../utils/boolean-input';
3
3
  import { DesignAngularKitConfig } from '../../../design-angular-kit-config';
4
4
  import * as i0 from "@angular/core";
5
- export declare class IconComponent {
5
+ export declare class ItIconComponent {
6
6
  private readonly config;
7
7
  /**
8
8
  * The icon name
@@ -11,19 +11,19 @@ export declare class IconComponent {
11
11
  /**
12
12
  * The icon size
13
13
  */
14
- size?: IconSize;
14
+ size: IconSize | undefined;
15
15
  /**
16
16
  * The icon color
17
17
  */
18
- color?: IconColor;
18
+ color: IconColor | undefined;
19
19
  /**
20
20
  * Create a padding proportional to the size of the surrounding icon.
21
21
  */
22
- padded?: BooleanInput;
22
+ padded: BooleanInput | undefined;
23
23
  /**
24
24
  * Custom class of svg
25
25
  */
26
- svgClass?: string;
26
+ svgClass: string | undefined;
27
27
  /**
28
28
  * Return the icon href
29
29
  */
@@ -33,6 +33,6 @@ export declare class IconComponent {
33
33
  */
34
34
  get iconClass(): string;
35
35
  constructor(config: DesignAngularKitConfig);
36
- static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
37
- static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "it-icon[name]", never, { "name": "name"; "size": "size"; "color": "color"; "padded": "padded"; "svgClass": "svgClass"; }, {}, never, never, false, never>;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItIconComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItIconComponent, "it-icon[name]", never, { "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "padded": { "alias": "padded"; "required": false; }; "svgClass": { "alias": "svgClass"; "required": false; }; }, {}, never, never, true, never>;
38
38
  }
@@ -3,13 +3,13 @@ import { Observable } from 'rxjs';
3
3
  import { TranslateService } from '@ngx-translate/core';
4
4
  import { AvailableLanguage } from '../../../interfaces/utils';
5
5
  import * as i0 from "@angular/core";
6
- export declare class LanguageSwitcherComponent implements OnInit {
6
+ export declare class ItLanguageSwitcherComponent implements OnInit {
7
7
  private readonly translateService;
8
8
  /**
9
9
  * The available languages
10
10
  * @default The languages available through TranslateService (ngx-translate)
11
11
  */
12
- availableLanguages?: Array<AvailableLanguage>;
12
+ availableLanguages: Array<AvailableLanguage> | undefined;
13
13
  protected currentLang$: Observable<AvailableLanguage | undefined>;
14
14
  constructor(translateService: TranslateService);
15
15
  ngOnInit(): void;
@@ -18,6 +18,6 @@ export declare class LanguageSwitcherComponent implements OnInit {
18
18
  * @param lang the language code
19
19
  */
20
20
  changeLanguage(lang: string): void;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<LanguageSwitcherComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<LanguageSwitcherComponent, "it-language-switcher", never, { "availableLanguages": "availableLanguages"; }, {}, never, never, false, never>;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItLanguageSwitcherComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItLanguageSwitcherComponent, "it-language-switcher", never, { "availableLanguages": { "alias": "availableLanguages"; "required": false; }; }, {}, never, never, true, never>;
23
23
  }
@@ -2,14 +2,13 @@ import { ModuleWithProviders } from '@angular/core';
2
2
  import { TranslateService } from '@ngx-translate/core';
3
3
  import { DesignAngularKitInit } from './interfaces/design-angular-kit-init';
4
4
  import * as i0 from "@angular/core";
5
- import * as i1 from "./components/components.module";
6
- import * as i2 from "@angular/common/http";
7
- import * as i3 from "@ngx-translate/core";
5
+ import * as i1 from "@angular/common/http";
6
+ import * as i2 from "@ngx-translate/core";
8
7
  export declare class DesignAngularKitModule {
9
8
  private readonly translateService;
10
9
  static forRoot(initConfig?: DesignAngularKitInit): ModuleWithProviders<DesignAngularKitModule>;
11
10
  constructor(translateService: TranslateService);
12
11
  static ɵfac: i0.ɵɵFactoryDeclaration<DesignAngularKitModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<DesignAngularKitModule, never, [typeof i1.ComponentsModule, typeof i2.HttpClientModule, typeof i3.TranslateModule], [typeof i1.ComponentsModule, typeof i3.TranslateModule]>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DesignAngularKitModule, never, [typeof i1.HttpClientModule, typeof i2.TranslateModule], never>;
14
13
  static ɵinj: i0.ɵɵInjectorDeclaration<DesignAngularKitModule>;
15
14
  }
@@ -1,20 +1,20 @@
1
1
  import { IconName } from './icon';
2
- export declare type AlertColor = 'info' | 'success' | 'warning' | 'danger';
3
- export declare type ButtonColor = 'primary' | 'outline-primary' | 'secondary' | 'outline-secondary' | 'success' | 'outline-success' | 'danger' | 'outline-danger' | 'warning' | 'outline-warning' | 'info' | 'outline-info' | 'light' | 'outline-light' | 'dark' | 'outline-dark' | 'link';
4
- export declare type ButtonSize = 'lg' | 'sm' | 'xs';
5
- export declare type ButtonType = 'submit' | 'button';
6
- export declare type CalloutColor = 'success' | 'warning' | 'danger' | 'important' | 'note';
7
- export declare type CalloutAppearance = 'default' | 'highlight' | 'more';
8
- export declare type ChipColor = 'primary' | 'secondary' | 'success' | 'danger' | 'warning';
9
- export declare type ElementPlacement = 'top' | 'bottom' | 'left' | 'right';
10
- export declare type ProgressBarColor = 'primary' | 'success' | 'warning' | 'danger' | 'info';
11
- export declare type BadgeColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger';
12
- export declare type TableColor = 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark';
13
- export declare type TableHeadColor = 'light' | 'dark';
14
- export declare type TableResponsive = 'responsive' | 'responsive-sm' | 'responsive-md' | 'responsive-lg' | 'responsive-xl' | 'responsive-xxl';
15
- export declare type VerticalAlignment = 'align-baseline' | 'align-top' | 'align-middle' | 'align-bottom' | 'align-text-bottom' | 'align-text-top';
16
- export declare type DropdownDirection = 'dropup' | 'dropend' | 'dropstart';
17
- export declare type CarouselType = 'default' | 'three-cols' | 'three-cols-arrow-visible';
2
+ export type AlertColor = 'info' | 'success' | 'warning' | 'danger';
3
+ export type ButtonColor = 'primary' | 'outline-primary' | 'secondary' | 'outline-secondary' | 'success' | 'outline-success' | 'danger' | 'outline-danger' | 'warning' | 'outline-warning' | 'info' | 'outline-info' | 'light' | 'outline-light' | 'dark' | 'outline-dark' | 'link';
4
+ export type ButtonSize = 'lg' | 'sm' | 'xs';
5
+ export type ButtonType = 'submit' | 'button';
6
+ export type CalloutColor = 'success' | 'warning' | 'danger' | 'important' | 'note';
7
+ export type CalloutAppearance = 'default' | 'highlight' | 'more';
8
+ export type ChipColor = 'primary' | 'secondary' | 'success' | 'danger' | 'warning';
9
+ export type ElementPlacement = 'top' | 'bottom' | 'left' | 'right';
10
+ export type ProgressBarColor = 'primary' | 'success' | 'warning' | 'danger' | 'info';
11
+ export type BadgeColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger';
12
+ export type TableColor = 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark';
13
+ export type TableHeadColor = 'light' | 'dark';
14
+ export type TableResponsive = 'responsive' | 'responsive-sm' | 'responsive-md' | 'responsive-lg' | 'responsive-xl' | 'responsive-xxl';
15
+ export type VerticalAlignment = 'align-baseline' | 'align-top' | 'align-middle' | 'align-bottom' | 'align-text-bottom' | 'align-text-top';
16
+ export type DropdownDirection = 'dropup' | 'dropend' | 'dropstart';
17
+ export type CarouselType = 'default' | 'three-cols' | 'three-cols-arrow-visible';
18
18
  export interface Notification {
19
19
  /**
20
20
  * Notification type
@@ -1,5 +1,5 @@
1
1
  import { IconName } from './icon';
2
- export declare type InputControlType = 'text' | 'email' | 'number' | 'date' | 'time' | 'tel' | 'color' | 'url' | 'search';
2
+ export type InputControlType = 'text' | 'email' | 'number' | 'date' | 'time' | 'tel' | 'color' | 'url' | 'search';
3
3
  export interface SelectControlOption {
4
4
  value: any;
5
5
  text?: string;
@@ -46,7 +46,7 @@ export interface UploadFileListItem {
46
46
  /**
47
47
  * Elemento disponibile per l'autocompletamento del it-form-input
48
48
  */
49
- export interface AutocompleteItem {
49
+ export interface AutocompleteItem<T = any> {
50
50
  /** Valore voce di autocompletamento */
51
51
  value: string;
52
52
  /** Opzionale. Path in cui ricercare l'immagine dell'avatar da posizionare a sinistra della voce di autocompletamento */
@@ -63,5 +63,5 @@ export interface AutocompleteItem {
63
63
  * Attribute not used for autocomplete rendering.
64
64
  * It can be useful to retrieve some extra information when selecting the autocomplete item
65
65
  */
66
- additionalData?: any;
66
+ additionalData?: T;
67
67
  }
@@ -1,4 +1,4 @@
1
- export declare type IconSize = 'xs' | 'sm' | 'lg' | 'xl';
2
- export declare type IconColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'light' | 'white';
3
- export declare type IconName = typeof IconNameArray[number];
4
- export declare const IconNameArray: readonly ["arrow-down", "arrow-down-circle", "arrow-down-triangle", "arrow-left", "arrow-left-circle", "arrow-left-triangle", "arrow-right", "arrow-right-circle", "arrow-right-triangle", "arrow-up", "arrow-up-circle", "arrow-up-triangle", "ban", "bookmark", "box", "burger", "calendar", "camera", "card", "chart-line", "check", "check-circle", "chevron-left", "chevron-right", "clip", "clock", "close", "close-big", "close-circle", "comment", "copy", "delete", "download", "error", "exchange-circle", "expand", "external-link", "flag", "folder", "fullscreen", "funnel", "hearing", "help", "help-circle", "horn", "inbox", "info-circle", "key", "link", "list", "locked", "logout", "mail", "mail-open", "map-marker", "map-marker-circle", "map-marker-minus", "map-marker-plus", "maximize", "maximize-alt", "minimize", "minus", "minus-circle", "more-actions", "more-items", "note", "pa", "password-invisible", "password-visible", "pencil", "piattaforme", "pin", "plug", "plus", "plus-circle", "presentation", "print", "refresh", "restore", "rss", "rss-square", "search", "settings", "share", "software", "star-full", "star-outline", "telephone", "tool", "unlocked", "upload", "user", "video", "warning", "warning-circle", "wifi", "zoom-in", "zoom-out", "file", "files", "file-audio", "file-compressed", "file-csv", "file-json", "file-odp", "file-ods", "file-odt", "file-pdf", "file-pdf-ext", "file-sheet", "file-slides", "file-txt", "file-video", "file-xml", "behance", "facebook", "facebook-square", "figma", "figma-square", "flickr", "flickr-square", "github", "instagram", "linkedin", "linkedin-square", "mastodon", "mastodon-square", "medium", "medium-square", "pinterest", "pinterest-square", "quora", "quora-square", "reddit", "reddit-square", "slack", "slack-square", "snapchat", "snapchat-square", "stackexchange", "stackexchange-square", "stackoverflow", "stackoverflow-square", "telegram", "tiktok", "tiktok-square", "twitter", "twitter-square", "vimeo", "vimeo-square", "whatsapp", "whatsapp-square", "youtube", "google", "designers-italia", "team-digitale"];
1
+ export type IconSize = 'xs' | 'sm' | 'lg' | 'xl';
2
+ export type IconColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'light' | 'white';
3
+ export type IconName = typeof IconNameArray[number];
4
+ export declare const IconNameArray: readonly ["arrow-down", "arrow-down-circle", "arrow-down-triangle", "arrow-left", "arrow-left-circle", "arrow-left-triangle", "arrow-right", "arrow-right-circle", "arrow-right-triangle", "arrow-up", "arrow-up-circle", "arrow-up-triangle", "ban", "bookmark", "box", "burger", "calendar", "camera", "card", "chart-line", "check", "check-circle", "chevron-left", "chevron-right", "clip", "clock", "close", "close-big", "close-circle", "comment", "copy", "delete", "download", "error", "exchange-circle", "expand", "external-link", "flag", "folder", "fullscreen", "funnel", "hearing", "help", "help-circle", "horn", "inbox", "info-circle", "key", "link", "list", "locked", "logout", "mail", "mail-open", "map-marker", "map-marker-circle", "map-marker-minus", "map-marker-plus", "maximize", "maximize-alt", "minimize", "minus", "minus-circle", "more-actions", "more-items", "note", "pa", "password-invisible", "password-visible", "pencil", "piattaforme", "pin", "plug", "plus", "plus-circle", "presentation", "print", "refresh", "restore", "rss", "rss-square", "search", "settings", "share", "software", "star-full", "star-outline", "telephone", "tool", "unlocked", "upload", "user", "video", "warning", "warning-circle", "wifi", "zoom-in", "zoom-out", "file", "files", "file-audio", "file-compressed", "file-csv", "file-json", "file-odp", "file-ods", "file-odt", "file-pdf", "file-pdf-ext", "file-sheet", "file-slides", "file-ppt", "file-txt", "file-video", "file-xml", "behance", "facebook", "facebook-square", "figma", "figma-square", "flickr", "flickr-square", "github", "instagram", "linkedin", "linkedin-square", "mastodon", "mastodon-square", "medium", "medium-square", "moodle", "moodle-square", "pinterest", "pinterest-square", "quora", "quora-square", "reddit", "reddit-square", "slack", "slack-square", "snapchat", "snapchat-square", "stackexchange", "stackexchange-square", "stackoverflow", "stackoverflow-square", "telegram", "tiktok", "tiktok-square", "twitter", "twitter-square", "vimeo", "vimeo-square", "whatsapp", "whatsapp-square", "youtube", "google", "designers-italia", "team-digitale"];
@@ -1,10 +1,10 @@
1
- import { PipeTransform } from "@angular/core";
2
- import { DomSanitizer } from "@angular/platform-browser";
1
+ import { PipeTransform } from '@angular/core';
2
+ import { DomSanitizer } from '@angular/platform-browser';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class MarkMatchingTextPipe implements PipeTransform {
5
- private domSanitizer;
5
+ private readonly domSanitizer;
6
6
  constructor(domSanitizer: DomSanitizer);
7
7
  transform(allString: string, searchString: string): any;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<MarkMatchingTextPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<MarkMatchingTextPipe, "markMatchingText", false>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<MarkMatchingTextPipe, "markMatchingText", true>;
10
10
  }
@@ -1,7 +1,7 @@
1
1
  import { Observable } from 'rxjs';
2
2
  import { Notification, NotificationPosition, NotificationType } from '../../interfaces/core';
3
3
  import * as i0 from "@angular/core";
4
- export declare class NotificationsService {
4
+ export declare class ItNotificationService {
5
5
  private subject;
6
6
  /**
7
7
  * Listen on notification arrived
@@ -58,6 +58,6 @@ export declare class NotificationsService {
58
58
  * @param position notification position
59
59
  */
60
60
  info(title: string, message?: string, dismissible?: boolean, duration?: number, position?: NotificationPosition): void;
61
- static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsService, never>;
62
- static ɵprov: i0.ɵɵInjectableDeclaration<NotificationsService>;
61
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItNotificationService, never>;
62
+ static ɵprov: i0.ɵɵInjectableDeclaration<ItNotificationService>;
63
63
  }
@@ -1,4 +1,4 @@
1
- export declare type BooleanInput = boolean | 'true' | 'false';
1
+ export type BooleanInput = boolean | 'true' | 'false';
2
2
  /**
3
3
  * Check if boolean input has true value and not is `undefined`
4
4
  * @param booleanInput the boolean input
@@ -23,3 +23,8 @@ export declare const VAT_NUMBER_REGEX: RegExp;
23
23
  * Italian CAP Regex
24
24
  */
25
25
  export declare const CAP_REGEX: RegExp;
26
+ /**
27
+ * IBAN Regex
28
+ * https://blog.marketto.it/en/2018/06/validate-any-country-iban/
29
+ */
30
+ export declare const IBAN_REGEX: RegExp;
@@ -54,6 +54,10 @@ export declare class ItValidators {
54
54
  * Italian Postal Code validator (CAP)
55
55
  */
56
56
  static get cap(): ValidatorFn;
57
+ /**
58
+ * IBAN validator
59
+ */
60
+ static get iban(): ValidatorFn;
57
61
  /**
58
62
  * Check if value is a valid RegExp
59
63
  */