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