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,10 +1,14 @@
|
|
|
1
1
|
import { AfterViewInit, EventEmitter, OnChanges, QueryList, SimpleChanges } from '@angular/core';
|
|
2
|
-
import {
|
|
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 {
|
|
5
|
+
import { ItDropdownItemComponent } from '../dropdown-item/dropdown-item.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class
|
|
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
|
|
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
|
|
26
|
+
fullWidth: BooleanInput | undefined;
|
|
23
27
|
/**
|
|
24
28
|
* Dark menu style
|
|
25
29
|
*/
|
|
26
|
-
dark
|
|
30
|
+
dark: BooleanInput | undefined;
|
|
27
31
|
/**
|
|
28
32
|
* The dropdown items
|
|
29
33
|
*/
|
|
30
|
-
items?: QueryList<
|
|
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<
|
|
80
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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 {
|
|
3
|
+
import { ItLinkComponent } from '../../link/link.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class ItDropdownItemComponent extends ItLinkComponent {
|
|
6
6
|
/**
|
|
7
7
|
* Show divider
|
|
8
8
|
*/
|
|
9
|
-
divider
|
|
9
|
+
divider: BooleanInput | undefined;
|
|
10
10
|
/**
|
|
11
11
|
* Active item
|
|
12
12
|
*/
|
|
13
|
-
active
|
|
13
|
+
active: BooleanInput | undefined;
|
|
14
14
|
/**
|
|
15
15
|
* To increase the size of links
|
|
16
16
|
*/
|
|
17
|
-
large
|
|
17
|
+
large: BooleanInput | undefined;
|
|
18
18
|
/**
|
|
19
19
|
* The name of icon to show
|
|
20
20
|
*/
|
|
21
|
-
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<
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
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<
|
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
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 {
|
|
3
|
+
import { ItAbstractComponent } from '../../../abstracts/abstract.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class
|
|
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
|
|
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
|
|
18
|
+
externalLink: BooleanInput | undefined;
|
|
19
19
|
/**
|
|
20
20
|
* Is disabled link
|
|
21
21
|
*/
|
|
22
|
-
disabled
|
|
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
|
-
|
|
31
|
-
static
|
|
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
|
|
3
|
+
export declare class ItListComponent {
|
|
4
4
|
/**
|
|
5
5
|
* Add 'link-list' class for navigation menu
|
|
6
6
|
*/
|
|
7
|
-
linkList
|
|
7
|
+
linkList: BooleanInput | undefined;
|
|
8
8
|
protected get isLinkList(): boolean;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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 {
|
|
2
|
+
import { ItLinkComponent } from '../../link/link.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class ItListItemComponent extends ItLinkComponent {
|
|
5
5
|
/**
|
|
6
6
|
* Add active class
|
|
7
7
|
*/
|
|
8
|
-
active
|
|
8
|
+
active: BooleanInput | undefined;
|
|
9
9
|
/**
|
|
10
10
|
* Add large class
|
|
11
11
|
*/
|
|
12
|
-
large
|
|
12
|
+
large: BooleanInput | undefined;
|
|
13
13
|
/**
|
|
14
14
|
* Add icon-left class
|
|
15
15
|
*/
|
|
16
|
-
iconLeft
|
|
16
|
+
iconLeft: BooleanInput | undefined;
|
|
17
17
|
/**
|
|
18
18
|
* The avatar url
|
|
19
19
|
*/
|
|
20
|
-
avatar
|
|
20
|
+
avatar: URL | undefined;
|
|
21
21
|
/**
|
|
22
22
|
* The thumb image url
|
|
23
23
|
*/
|
|
24
|
-
image
|
|
24
|
+
image: URL | undefined;
|
|
25
25
|
get itemClass(): string;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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 {
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
47
|
+
alignment: 'centered' | 'left' | 'right' | undefined;
|
|
48
48
|
/**
|
|
49
49
|
* The modal size
|
|
50
50
|
* @default undefined
|
|
51
51
|
*/
|
|
52
|
-
size
|
|
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
|
|
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<
|
|
107
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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 {
|
|
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
|
|
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
|
|
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:
|
|
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<
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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<
|
|
91
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
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<
|
|
97
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
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
|
|
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
|
|
12
|
+
showLabel: BooleanInput | undefined;
|
|
13
13
|
/**
|
|
14
14
|
* Show the progress as indeterminate
|
|
15
15
|
*/
|
|
16
|
-
indeterminate
|
|
16
|
+
indeterminate: BooleanInput | undefined;
|
|
17
17
|
/**
|
|
18
18
|
* The progress bar color
|
|
19
19
|
*/
|
|
20
|
-
color
|
|
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<
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
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
|
|
12
|
+
progress: number | BooleanInput | undefined;
|
|
13
13
|
/**
|
|
14
14
|
* The progress bar color
|
|
15
15
|
*/
|
|
16
|
-
progressColor
|
|
16
|
+
progressColor: ProgressBarColor | undefined;
|
|
17
17
|
get isProgress(): boolean;
|
|
18
18
|
get progressValue(): number;
|
|
19
19
|
get isIndeterminate(): boolean;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
|
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
|
|
11
|
+
small: BooleanInput | undefined;
|
|
12
12
|
/**
|
|
13
13
|
* Show the double animation
|
|
14
14
|
*/
|
|
15
|
-
double
|
|
15
|
+
double: BooleanInput | undefined;
|
|
16
16
|
get isActive(): boolean;
|
|
17
17
|
get isSmall(): boolean;
|
|
18
18
|
get isDouble(): boolean;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
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
|
}
|