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,10 +1,14 @@
1
1
  import { AfterViewInit, EventEmitter, OnChanges, QueryList, SimpleChanges } from '@angular/core';
2
- import { AbstractComponent } from '../../../../abstracts/abstract.component';
2
+ import { ItAbstractComponent } from '../../../../abstracts/abstract.component';
3
3
  import { ButtonColor, DropdownDirection } from '../../../../interfaces/core';
4
4
  import { BooleanInput } from '../../../../utils/boolean-input';
5
- import { DropdownItemComponent } from '../dropdown-item/dropdown-item.component';
5
+ import { ItDropdownItemComponent } from '../dropdown-item/dropdown-item.component';
6
6
  import * as i0 from "@angular/core";
7
- export declare class DropdownComponent extends AbstractComponent implements AfterViewInit, OnChanges {
7
+ export declare class ItDropdownComponent extends ItAbstractComponent implements AfterViewInit, OnChanges {
8
+ /**
9
+ * Dropdown mode
10
+ */
11
+ mode: 'button' | 'link';
8
12
  /**
9
13
  * Button color
10
14
  */
@@ -15,19 +19,19 @@ export declare class DropdownComponent extends AbstractComponent implements Afte
15
19
  * - <strong>dropend</strong>: right
16
20
  * - <strong>dropstart</strong>: left
17
21
  */
18
- direction?: DropdownDirection;
22
+ direction: DropdownDirection | undefined;
19
23
  /**
20
24
  * To get a dropdown menu as wide as the element containing the dropdown button
21
25
  */
22
- fullWidth?: BooleanInput;
26
+ fullWidth: BooleanInput | undefined;
23
27
  /**
24
28
  * Dark menu style
25
29
  */
26
- dark?: BooleanInput;
30
+ dark: BooleanInput | undefined;
27
31
  /**
28
32
  * The dropdown items
29
33
  */
30
- items?: QueryList<DropdownItemComponent>;
34
+ items?: QueryList<ItDropdownItemComponent>;
31
35
  /**
32
36
  * Fires immediately when the show instance method is called.
33
37
  */
@@ -56,6 +60,7 @@ export declare class DropdownComponent extends AbstractComponent implements Afte
56
60
  * @private
57
61
  */
58
62
  private setDarkItems;
63
+ private updateListeners;
59
64
  /**
60
65
  * Toggles the dropdown menu of a given navbar or tabbed navigation.
61
66
  */
@@ -76,6 +81,6 @@ export declare class DropdownComponent extends AbstractComponent implements Afte
76
81
  * Destroys an element's dropdown. (Removes stored data on the DOM element)
77
82
  */
78
83
  dispose(): void;
79
- static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
80
- static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "it-dropdown", ["itDropdown"], { "color": "color"; "direction": "direction"; "fullWidth": "fullWidth"; "dark": "dark"; }, { "showEvent": "showEvent"; "shownEvent": "shownEvent"; "hideEvent": "hideEvent"; "hiddenEvent": "hiddenEvent"; }, ["items"], ["[button]", "[listHeading]", "[list]"], false, never>;
84
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItDropdownComponent, never>;
85
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItDropdownComponent, "it-dropdown", ["itDropdown"], { "mode": { "alias": "mode"; "required": false; }; "color": { "alias": "color"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; }, { "showEvent": "showEvent"; "shownEvent": "shownEvent"; "hideEvent": "hideEvent"; "hiddenEvent": "hiddenEvent"; }, ["items"], ["[listHeading]", "[list]", "[button]"], true, never>;
81
86
  }
@@ -1,24 +1,24 @@
1
1
  import { BooleanInput } from '../../../../utils/boolean-input';
2
2
  import { IconName } from '../../../../interfaces/icon';
3
- import { LinkComponent } from '../../link/link.component';
3
+ import { ItLinkComponent } from '../../link/link.component';
4
4
  import * as i0 from "@angular/core";
5
- export declare class DropdownItemComponent extends LinkComponent {
5
+ export declare class ItDropdownItemComponent extends ItLinkComponent {
6
6
  /**
7
7
  * Show divider
8
8
  */
9
- divider?: BooleanInput;
9
+ divider: BooleanInput | undefined;
10
10
  /**
11
11
  * Active item
12
12
  */
13
- active?: BooleanInput;
13
+ active: BooleanInput | undefined;
14
14
  /**
15
15
  * To increase the size of links
16
16
  */
17
- large?: BooleanInput;
17
+ large: BooleanInput | undefined;
18
18
  /**
19
19
  * The name of icon to show
20
20
  */
21
- iconName?: IconName;
21
+ iconName: IconName | undefined;
22
22
  /**
23
23
  * The icon position
24
24
  * @default right
@@ -34,6 +34,6 @@ export declare class DropdownItemComponent extends LinkComponent {
34
34
  get isLarge(): boolean;
35
35
  get linkClass(): string;
36
36
  setDark(dark: boolean): void;
37
- static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemComponent, never>;
38
- static ɵcmp: i0.ɵɵComponentDeclaration<DropdownItemComponent, "it-dropdown-item", never, { "divider": "divider"; "active": "active"; "large": "large"; "iconName": "iconName"; "iconPosition": "iconPosition"; }, {}, never, ["*"], false, never>;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItDropdownItemComponent, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItDropdownItemComponent, "it-dropdown-item", never, { "divider": { "alias": "divider"; "required": false; }; "active": { "alias": "active"; "required": false; }; "large": { "alias": "large"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; }, {}, never, ["*"], true, never>;
39
39
  }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dropdown/dropdown.component";
3
+ import * as i2 from "./dropdown-item/dropdown-item.component";
4
+ export declare class ItDropdownModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItDropdownModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ItDropdownModule, never, [typeof i1.ItDropdownComponent, typeof i2.ItDropdownItemComponent], [typeof i1.ItDropdownComponent, typeof i2.ItDropdownItemComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ItDropdownModule>;
8
+ }
@@ -1,5 +1,5 @@
1
1
  import * as i0 from "@angular/core";
2
- export declare class ForwardDirective {
2
+ export declare class ItForwardDirective {
3
3
  private document?;
4
4
  /**
5
5
  * Indica, se HTMLElement, l'elemento a cui navigare, o se stringa, il selettore che selezionerà l'elemento a cui navigare.
@@ -9,6 +9,6 @@ export declare class ForwardDirective {
9
9
  private _itForward;
10
10
  constructor(document?: Document | undefined);
11
11
  onClick(event: any): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<ForwardDirective, never>;
13
- static ɵdir: i0.ɵɵDirectiveDeclaration<ForwardDirective, "[itForward]", never, { "itForward": "itForward"; }, {}, never, never, false, never>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItForwardDirective, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ItForwardDirective, "[itForward]", never, { "itForward": { "alias": "itForward"; "required": false; }; }, {}, never, never, true, never>;
14
14
  }
@@ -1,8 +1,8 @@
1
- import { AfterViewInit } from '@angular/core';
1
+ import { AfterViewInit, OnChanges, SimpleChanges } 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 LinkComponent extends AbstractComponent implements AfterViewInit {
5
+ export declare class ItLinkComponent extends ItAbstractComponent implements AfterViewInit, OnChanges {
6
6
  /**
7
7
  * The router link action
8
8
  *
@@ -11,15 +11,15 @@ export declare class LinkComponent extends AbstractComponent implements AfterVie
11
11
  * - string: shorthand for array of commands with just the string, i.e. ['/route']
12
12
  * - null|undefined: Disables the link by removing the href
13
13
  */
14
- href?: any[] | string | null;
14
+ href: any[] | string | null | undefined;
15
15
  /**
16
16
  * Is an external link (false to not use Angular router link)
17
17
  */
18
- externalLink?: BooleanInput;
18
+ externalLink: BooleanInput | undefined;
19
19
  /**
20
20
  * Is disabled link
21
21
  */
22
- disabled?: BooleanInput;
22
+ disabled: BooleanInput | undefined;
23
23
  /**
24
24
  * Custom class
25
25
  */
@@ -27,6 +27,7 @@ export declare class LinkComponent extends AbstractComponent implements AfterVie
27
27
  get isExternalLink(): boolean;
28
28
  get isDisabled(): boolean;
29
29
  ngAfterViewInit(): void;
30
- static ɵfac: i0.ɵɵFactoryDeclaration<LinkComponent, never>;
31
- static ɵcmp: i0.ɵɵComponentDeclaration<LinkComponent, "it-link", never, { "href": "href"; "externalLink": "externalLink"; "disabled": "disabled"; "class": "class"; }, {}, never, ["*"], false, never>;
30
+ ngOnChanges(changes: SimpleChanges): void;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItLinkComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItLinkComponent, "it-link", never, { "href": { "alias": "href"; "required": false; }; "externalLink": { "alias": "externalLink"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "class": { "alias": "class"; "required": false; }; }, {}, never, ["*"], true, never>;
32
33
  }
@@ -1,11 +1,11 @@
1
1
  import { BooleanInput } from '../../../../utils/boolean-input';
2
2
  import * as i0 from "@angular/core";
3
- export declare class ListComponent {
3
+ export declare class ItListComponent {
4
4
  /**
5
5
  * Add 'link-list' class for navigation menu
6
6
  */
7
- linkList?: BooleanInput;
7
+ linkList: BooleanInput | undefined;
8
8
  protected get isLinkList(): boolean;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "it-list", never, { "linkList": "linkList"; }, {}, never, ["*"], false, never>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItListComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItListComponent, "it-list", never, { "linkList": { "alias": "linkList"; "required": false; }; }, {}, never, ["*"], true, never>;
11
11
  }
@@ -1,28 +1,28 @@
1
1
  import { BooleanInput } from '../../../../utils/boolean-input';
2
- import { LinkComponent } from '../../link/link.component';
2
+ import { ItLinkComponent } from '../../link/link.component';
3
3
  import * as i0 from "@angular/core";
4
- export declare class ListItemComponent extends LinkComponent {
4
+ export declare class ItListItemComponent extends ItLinkComponent {
5
5
  /**
6
6
  * Add active class
7
7
  */
8
- active?: BooleanInput;
8
+ active: BooleanInput | undefined;
9
9
  /**
10
10
  * Add large class
11
11
  */
12
- large?: BooleanInput;
12
+ large: BooleanInput | undefined;
13
13
  /**
14
14
  * Add icon-left class
15
15
  */
16
- iconLeft?: BooleanInput;
16
+ iconLeft: BooleanInput | undefined;
17
17
  /**
18
18
  * The avatar url
19
19
  */
20
- avatar?: URL;
20
+ avatar: URL | undefined;
21
21
  /**
22
22
  * The thumb image url
23
23
  */
24
- image?: URL;
24
+ image: URL | undefined;
25
25
  get itemClass(): string;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<ListItemComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<ListItemComponent, "it-list-item", never, { "active": "active"; "large": "large"; "iconLeft": "iconLeft"; "avatar": "avatar"; "image": "image"; }, {}, never, ["[icon]", "*", "[action]", "[metadata]", "[multiple]"], false, never>;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItListItemComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItListItemComponent, "it-list-item", never, { "active": { "alias": "active"; "required": false; }; "large": { "alias": "large"; "required": false; }; "iconLeft": { "alias": "iconLeft"; "required": false; }; "avatar": { "alias": "avatar"; "required": false; }; "image": { "alias": "image"; "required": false; }; }, {}, never, ["[icon]", "*", "[action]", "[metadata]", "[multiple]"], true, never>;
28
28
  }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./list/list.component";
3
+ import * as i2 from "./list-item/list-item.component";
4
+ export declare class ItListModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItListModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ItListModule, never, [typeof i1.ItListComponent, typeof i2.ItListItemComponent], [typeof i1.ItListComponent, typeof i2.ItListItemComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ItListModule>;
8
+ }
@@ -1,12 +1,12 @@
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 { BooleanInput } from '../../../utils/boolean-input';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
6
6
  * Modal windows
7
7
  * @description To show featured content, notifications to users, or personalized content.
8
8
  */
9
- export declare class ModalComponent extends AbstractComponent implements AfterViewInit {
9
+ export declare class ItModalComponent extends ItAbstractComponent implements AfterViewInit {
10
10
  /**
11
11
  * Show/Hide close button on header
12
12
  * @default true
@@ -16,22 +16,22 @@ export declare class ModalComponent extends AbstractComponent implements AfterVi
16
16
  * To correctly format the contents of the modal with icon
17
17
  * @default false
18
18
  */
19
- alertModal?: BooleanInput;
19
+ alertModal: BooleanInput | undefined;
20
20
  /**
21
21
  * To correctly format the contents of the modal with Link List
22
22
  * @default false
23
23
  */
24
- dialogLinkList?: BooleanInput;
24
+ dialogLinkList: BooleanInput | undefined;
25
25
  /**
26
26
  * Modal type Popconfirm can be used for short confirmation messages.
27
27
  * @default false
28
28
  */
29
- popconfirm?: BooleanInput;
29
+ popconfirm: BooleanInput | undefined;
30
30
  /**
31
31
  * You can choose to use a scroll inside the modal, keeping the header and footer of the modal always visible
32
32
  * @default false
33
33
  */
34
- scrollable?: BooleanInput;
34
+ scrollable: BooleanInput | undefined;
35
35
  /**
36
36
  * To have modals that appear with fades
37
37
  * @default true
@@ -44,17 +44,17 @@ export declare class ModalComponent extends AbstractComponent implements AfterVi
44
44
  * - <b>right</b>: to right-align the modal
45
45
  * @default undefined
46
46
  */
47
- alignment?: 'centered' | 'left' | 'right';
47
+ alignment: 'centered' | 'left' | 'right' | undefined;
48
48
  /**
49
49
  * The modal size
50
50
  * @default undefined
51
51
  */
52
- size?: 'sm' | 'lg' | 'xl';
52
+ size: 'sm' | 'lg' | 'xl' | undefined;
53
53
  /**
54
54
  * To better distinguish the footer element with a shadow
55
55
  * @default false
56
56
  */
57
- footerShadow?: BooleanInput;
57
+ footerShadow: BooleanInput | undefined;
58
58
  /**
59
59
  * This event fires immediately when the instance method show is called.
60
60
  */
@@ -103,6 +103,6 @@ export declare class ModalComponent extends AbstractComponent implements AfterVi
103
103
  * Destroys the modal of an element.
104
104
  */
105
105
  dispose(): void;
106
- static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, never>;
107
- static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "it-modal", ["itModal"], { "closeButton": "closeButton"; "alertModal": "alertModal"; "dialogLinkList": "dialogLinkList"; "popconfirm": "popconfirm"; "scrollable": "scrollable"; "fade": "fade"; "alignment": "alignment"; "size": "size"; "footerShadow": "footerShadow"; }, { "showEvent": "showEvent"; "shownEvent": "shownEvent"; "hideEvent": "hideEvent"; "hiddenEvent": "hiddenEvent"; "hidePreventedEvent": "hidePreventedEvent"; }, never, ["[beforeTitle]", "[modalTitle]", "[description]", "*", "[footer]"], false, never>;
106
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItModalComponent, never>;
107
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItModalComponent, "it-modal", ["itModal"], { "closeButton": { "alias": "closeButton"; "required": false; }; "alertModal": { "alias": "alertModal"; "required": false; }; "dialogLinkList": { "alias": "dialogLinkList"; "required": false; }; "popconfirm": { "alias": "popconfirm"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "fade": { "alias": "fade"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "size": { "alias": "size"; "required": false; }; "footerShadow": { "alias": "footerShadow"; "required": false; }; }, { "showEvent": "showEvent"; "shownEvent": "shownEvent"; "hideEvent": "hideEvent"; "hiddenEvent": "hiddenEvent"; "hidePreventedEvent": "hidePreventedEvent"; }, never, ["[beforeTitle]", "[modalTitle]", "[description]", "*", "[footer]"], true, never>;
108
108
  }
@@ -1,9 +1,9 @@
1
1
  import { ChangeDetectorRef, OnDestroy } from '@angular/core';
2
- import { NotificationsService } from '../../../services/notifications/notifications.service';
2
+ import { ItNotificationService } from '../../../services/notification/notification.service';
3
3
  import { Notification, NotificationPosition, NotificationType } from '../../../interfaces/core';
4
4
  import { BooleanInput } from '../../../utils/boolean-input';
5
5
  import * as i0 from "@angular/core";
6
- export declare class NotificationsComponent implements OnDestroy {
6
+ export declare class ItNotificationsComponent implements OnDestroy {
7
7
  private readonly _changeDetectorRef;
8
8
  private readonly _notificationService;
9
9
  /**
@@ -14,7 +14,7 @@ export declare class NotificationsComponent implements OnDestroy {
14
14
  /**
15
15
  * Default notifications position
16
16
  */
17
- position?: NotificationPosition;
17
+ position: NotificationPosition | undefined;
18
18
  /**
19
19
  * Default notifications is dismissible
20
20
  * @default true
@@ -25,7 +25,7 @@ export declare class NotificationsComponent implements OnDestroy {
25
25
  protected notifications: Array<Notification & {
26
26
  id: string;
27
27
  }>;
28
- constructor(_changeDetectorRef: ChangeDetectorRef, _notificationService: NotificationsService);
28
+ constructor(_changeDetectorRef: ChangeDetectorRef, _notificationService: ItNotificationService);
29
29
  ngOnDestroy(): void;
30
30
  protected get NotificationType(): typeof NotificationType;
31
31
  /**
@@ -39,6 +39,6 @@ export declare class NotificationsComponent implements OnDestroy {
39
39
  * @protected
40
40
  */
41
41
  private getNotificationIcon;
42
- static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsComponent, never>;
43
- static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsComponent, "it-notifications", never, { "duration": "duration"; "position": "position"; "dismissible": "dismissible"; }, {}, never, never, false, never>;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItNotificationsComponent, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItNotificationsComponent, "it-notifications", never, { "duration": { "alias": "duration"; "required": false; }; "position": { "alias": "position"; "required": false; }; "dismissible": { "alias": "dismissible"; "required": false; }; }, {}, never, never, true, never>;
44
44
  }
@@ -2,7 +2,7 @@ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
2
  import { BooleanInput } from '../../../utils/boolean-input';
3
3
  import { FormControl } from '@angular/forms';
4
4
  import * as i0 from "@angular/core";
5
- export declare class PaginationComponent implements OnChanges {
5
+ export declare class ItPaginationComponent implements OnChanges {
6
6
  /**
7
7
  * Index of page (start 0)
8
8
  */
@@ -19,25 +19,25 @@ export declare class PaginationComponent implements OnChanges {
19
19
  /**
20
20
  * Pagination alignment (justify-content)
21
21
  */
22
- alignment?: 'center' | 'end';
22
+ alignment: 'center' | 'end' | undefined;
23
23
  /**
24
24
  * Enable/Disable simple mode
25
25
  * Pagination in the "Simple mode" version is optimized for mobile devices.
26
26
  * @default undefined - disabled
27
27
  */
28
- simpleMode?: BooleanInput;
28
+ simpleMode: BooleanInput | undefined;
29
29
  /**
30
30
  * Enable/Disable text links
31
31
  * Chevron icons used as navigation links are replaced by text links such as “previous” and “next”.
32
32
  * @default undefined - disabled
33
33
  */
34
- textLinks?: BooleanInput;
34
+ textLinks: BooleanInput | undefined;
35
35
  /**
36
36
  * Current value of Changer
37
37
  * If is set show the Changer
38
38
  * @default undefined - hide the Changer
39
39
  */
40
- currentChanger?: number;
40
+ currentChanger: number | undefined;
41
41
  /**
42
42
  * Available Changer values
43
43
  * @default [10, 25, 50, 100]
@@ -47,7 +47,7 @@ export declare class PaginationComponent implements OnChanges {
47
47
  * Hide/Show "Jump to page" input
48
48
  * @default undefined - hidden
49
49
  */
50
- showJumpToPage?: BooleanInput;
50
+ showJumpToPage: BooleanInput | undefined;
51
51
  /**
52
52
  * Fired when page is changed. Emit the new index of page
53
53
  */
@@ -87,6 +87,6 @@ export declare class PaginationComponent implements OnChanges {
87
87
  * @param value the new changer value
88
88
  */
89
89
  protected changerChange(event: Event, value: number): void;
90
- static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
91
- static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "it-pagination[currentPage][pageNumbers]", never, { "currentPage": "currentPage"; "pageNumbers": "pageNumbers"; "visiblePages": "visiblePages"; "alignment": "alignment"; "simpleMode": "simpleMode"; "textLinks": "textLinks"; "currentChanger": "currentChanger"; "changerValues": "changerValues"; "showJumpToPage": "showJumpToPage"; }, { "pageEvent": "pageEvent"; "changerEvent": "changerEvent"; }, never, ["*"], false, never>;
90
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItPaginationComponent, never>;
91
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItPaginationComponent, "it-pagination[currentPage][pageNumbers]", never, { "currentPage": { "alias": "currentPage"; "required": false; }; "pageNumbers": { "alias": "pageNumbers"; "required": false; }; "visiblePages": { "alias": "visiblePages"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "simpleMode": { "alias": "simpleMode"; "required": false; }; "textLinks": { "alias": "textLinks"; "required": false; }; "currentChanger": { "alias": "currentChanger"; "required": false; }; "changerValues": { "alias": "changerValues"; "required": false; }; "showJumpToPage": { "alias": "showJumpToPage"; "required": false; }; }, { "pageEvent": "pageEvent"; "changerEvent": "changerEvent"; }, never, ["*"], true, never>;
92
92
  }
@@ -2,7 +2,7 @@ import { AfterViewInit, ElementRef, EventEmitter, OnDestroy } from '@angular/cor
2
2
  import { ElementPlacement } from '../../../interfaces/core';
3
3
  import { BooleanInput } from '../../../utils/boolean-input';
4
4
  import * as i0 from "@angular/core";
5
- export declare class PopoverDirective implements AfterViewInit, OnDestroy {
5
+ export declare class ItPopoverDirective implements AfterViewInit, OnDestroy {
6
6
  private readonly _elementRef;
7
7
  /**
8
8
  * Define the popover content
@@ -93,6 +93,6 @@ export declare class PopoverDirective implements AfterViewInit, OnDestroy {
93
93
  * Updates the position of an element's popover.
94
94
  */
95
95
  update(): void;
96
- static ɵfac: i0.ɵɵFactoryDeclaration<PopoverDirective, never>;
97
- static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverDirective, "[itPopover]", ["itPopover"], { "content": "itPopover"; "popoverTitle": "popoverTitle"; "popoverPlacement": "popoverPlacement"; "popoverContainer": "popoverContainer"; "popoverHtml": "popoverHtml"; "popoverTrigger": "popoverTrigger"; }, { "showEvent": "showEvent"; "shownEvent": "shownEvent"; "hideEvent": "hideEvent"; "hiddenEvent": "hiddenEvent"; "insertedEvent": "insertedEvent"; }, never, never, false, never>;
96
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItPopoverDirective, never>;
97
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ItPopoverDirective, "[itPopover]", ["itPopover"], { "content": { "alias": "itPopover"; "required": false; }; "popoverTitle": { "alias": "popoverTitle"; "required": false; }; "popoverPlacement": { "alias": "popoverPlacement"; "required": false; }; "popoverContainer": { "alias": "popoverContainer"; "required": false; }; "popoverHtml": { "alias": "popoverHtml"; "required": false; }; "popoverTrigger": { "alias": "popoverTrigger"; "required": false; }; }, { "showEvent": "showEvent"; "shownEvent": "shownEvent"; "hideEvent": "hideEvent"; "hiddenEvent": "hiddenEvent"; "insertedEvent": "insertedEvent"; }, never, never, true, never>;
98
98
  }
@@ -1,7 +1,7 @@
1
1
  import { ProgressBarColor } from '../../../interfaces/core';
2
2
  import { BooleanInput } from '../../../utils/boolean-input';
3
3
  import * as i0 from "@angular/core";
4
- export declare class ProgressBarComponent {
4
+ export declare class ItProgressBarComponent {
5
5
  /**
6
6
  * The progress bar value [0, 100]
7
7
  */
@@ -9,20 +9,20 @@ export declare class ProgressBarComponent {
9
9
  /**
10
10
  * Show the progress label
11
11
  */
12
- showLabel?: BooleanInput;
12
+ showLabel: BooleanInput | undefined;
13
13
  /**
14
14
  * Show the progress as indeterminate
15
15
  */
16
- indeterminate?: BooleanInput;
16
+ indeterminate: BooleanInput | undefined;
17
17
  /**
18
18
  * The progress bar color
19
19
  */
20
- color?: ProgressBarColor;
20
+ color: ProgressBarColor | undefined;
21
21
  /**
22
22
  * Return the background color
23
23
  */
24
24
  get bgColor(): string;
25
25
  get isIndeterminate(): boolean;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "it-progress-bar[value]", never, { "value": "value"; "showLabel": "showLabel"; "indeterminate": "indeterminate"; "color": "color"; }, {}, never, never, false, never>;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItProgressBarComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItProgressBarComponent, "it-progress-bar[value]", never, { "value": { "alias": "value"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
28
28
  }
@@ -1,7 +1,7 @@
1
1
  import { BooleanInput } from '../../../utils/boolean-input';
2
2
  import { ProgressBarColor } from '../../../interfaces/core';
3
3
  import * as i0 from "@angular/core";
4
- export declare class ProgressButtonComponent {
4
+ export declare class ItProgressButtonComponent {
5
5
  /**
6
6
  * Behavior of the progress bar
7
7
  * - <b>true</b>: Show indeterminate progress bar
@@ -9,14 +9,14 @@ export declare class ProgressButtonComponent {
9
9
  * - <b>number</b> [0, 100]: Assign a specific value to the progress bar
10
10
  * @default undefined
11
11
  */
12
- progress?: number | BooleanInput;
12
+ progress: number | BooleanInput | undefined;
13
13
  /**
14
14
  * The progress bar color
15
15
  */
16
- progressColor?: ProgressBarColor;
16
+ progressColor: ProgressBarColor | undefined;
17
17
  get isProgress(): boolean;
18
18
  get progressValue(): number;
19
19
  get isIndeterminate(): boolean;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<ProgressButtonComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<ProgressButtonComponent, "button[itButton][progress]", never, { "progress": "progress"; "progressColor": "progressColor"; }, {}, never, ["*"], false, never>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItProgressButtonComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItProgressButtonComponent, "button[itButton][progress]", never, { "progress": { "alias": "progress"; "required": false; }; "progressColor": { "alias": "progressColor"; "required": false; }; }, {}, never, ["*"], true, never>;
22
22
  }
@@ -1,6 +1,6 @@
1
1
  import { BooleanInput } from '../../../utils/boolean-input';
2
2
  import * as i0 from "@angular/core";
3
- export declare class SpinnerComponent {
3
+ export declare class ItSpinnerComponent {
4
4
  /**
5
5
  * The spinner is active
6
6
  */
@@ -8,14 +8,14 @@ export declare class SpinnerComponent {
8
8
  /**
9
9
  * Show a small spinner
10
10
  */
11
- small?: BooleanInput;
11
+ small: BooleanInput | undefined;
12
12
  /**
13
13
  * Show the double animation
14
14
  */
15
- double?: BooleanInput;
15
+ double: BooleanInput | undefined;
16
16
  get isActive(): boolean;
17
17
  get isSmall(): boolean;
18
18
  get isDouble(): boolean;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<SpinnerComponent, "it-spinner", never, { "active": "active"; "small": "small"; "double": "double"; }, {}, never, never, false, never>;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItSpinnerComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItSpinnerComponent, "it-spinner", never, { "active": { "alias": "active"; "required": false; }; "small": { "alias": "small"; "required": false; }; "double": { "alias": "double"; "required": false; }; }, {}, never, never, true, never>;
21
21
  }