design-angular-kit 1.0.0-5 → 1.0.0-7
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 +43 -25
- package/assets/i18n/en.json +8 -1
- package/assets/i18n/it.json +8 -1
- package/esm2020/lib/components/core/steppers/steppers-container/steppers-container.component.mjs +119 -0
- package/esm2020/lib/components/core/steppers/steppers-item/steppers-item.component.mjs +18 -0
- package/esm2020/lib/components/core/tab/tab-container/tab-container.component.mjs +4 -4
- package/esm2020/lib/components/core/tab/tab-item/tab-item.component.mjs +3 -3
- package/esm2020/lib/components/form/checkbox/checkbox.component.mjs +5 -5
- package/esm2020/lib/components/form/input/input.component.mjs +41 -45
- package/esm2020/lib/components/form/radio-button/radio-button.component.mjs +3 -3
- package/esm2020/lib/components/navigation/back-button/back-button.component.mjs +8 -8
- package/esm2020/lib/design-angular-kit.module.mjs +4 -5
- package/esm2020/lib/interfaces/form.mjs +1 -1
- package/esm2020/lib/interfaces/icon.mjs +1 -1
- package/esm2020/lib/modules/components.module.mjs +9 -1
- package/esm2020/lib/utils/regex.mjs +2 -2
- package/esm2020/public_api.mjs +3 -1
- package/fesm2015/design-angular-kit.mjs +186 -58
- package/fesm2015/design-angular-kit.mjs.map +1 -1
- package/fesm2020/design-angular-kit.mjs +185 -58
- package/fesm2020/design-angular-kit.mjs.map +1 -1
- package/lib/components/core/steppers/steppers-container/steppers-container.component.d.ts +102 -0
- package/lib/components/core/steppers/steppers-item/steppers-item.component.d.ts +19 -0
- package/lib/components/core/tab/tab-container/tab-container.component.d.ts +2 -2
- package/lib/components/core/tab/tab-item/tab-item.component.d.ts +3 -3
- package/lib/components/form/checkbox/checkbox.component.d.ts +3 -3
- package/lib/components/form/input/input.component.d.ts +24 -22
- package/lib/components/form/radio-button/radio-button.component.d.ts +1 -1
- package/lib/components/navigation/back-button/back-button.component.d.ts +1 -1
- package/lib/interfaces/form.d.ts +7 -2
- package/lib/interfaces/icon.d.ts +1 -1
- package/lib/modules/components.module.d.ts +28 -26
- package/package.json +1 -1
- package/public_api.d.ts +2 -0
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, EventEmitter, QueryList } from '@angular/core';
|
|
2
|
+
import { BooleanInput } from '../../../../utils/boolean-input';
|
|
3
|
+
import { SteppersItemComponent } from '../steppers-item/steppers-item.component';
|
|
4
|
+
import { ProgressBarColor } from '../../../../interfaces/core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class SteppersContainerComponent implements AfterViewInit {
|
|
7
|
+
private readonly _changeDetectorRef;
|
|
8
|
+
/**
|
|
9
|
+
* The active step index
|
|
10
|
+
* @param index the step index
|
|
11
|
+
*/
|
|
12
|
+
activeStep: number;
|
|
13
|
+
/**
|
|
14
|
+
* Show the stepper header
|
|
15
|
+
* @default true
|
|
16
|
+
*/
|
|
17
|
+
showHeader: BooleanInput;
|
|
18
|
+
/**
|
|
19
|
+
* Dark style
|
|
20
|
+
*/
|
|
21
|
+
dark?: BooleanInput;
|
|
22
|
+
/**
|
|
23
|
+
* The labels present in the header steps can be anticipated by the relative ordinal number.
|
|
24
|
+
*/
|
|
25
|
+
steppersNumber?: BooleanInput;
|
|
26
|
+
/**
|
|
27
|
+
* The progress style
|
|
28
|
+
* -<b>progress</b>: Show progress bar - You can change the color with the `progressColor` attribute
|
|
29
|
+
* -<b>dots</b>: Show progress dots
|
|
30
|
+
* @default undefined - don't show progress
|
|
31
|
+
*/
|
|
32
|
+
progressStyle?: 'progress' | 'dots';
|
|
33
|
+
/**
|
|
34
|
+
* Customize progress color
|
|
35
|
+
*/
|
|
36
|
+
progressColor?: ProgressBarColor;
|
|
37
|
+
/**
|
|
38
|
+
* Show the back button
|
|
39
|
+
* @default true
|
|
40
|
+
*/
|
|
41
|
+
showBackButton: BooleanInput;
|
|
42
|
+
/**
|
|
43
|
+
* Show the forward button
|
|
44
|
+
* @default true
|
|
45
|
+
*/
|
|
46
|
+
showForwardButton: BooleanInput;
|
|
47
|
+
/**
|
|
48
|
+
* Show the confirm button
|
|
49
|
+
* @default false
|
|
50
|
+
*/
|
|
51
|
+
showConfirmButton: BooleanInput;
|
|
52
|
+
/**
|
|
53
|
+
* Show the confirm button as indeterminate progress button
|
|
54
|
+
*/
|
|
55
|
+
confirmLoading?: BooleanInput;
|
|
56
|
+
/**
|
|
57
|
+
* Show the save button
|
|
58
|
+
* @default false
|
|
59
|
+
*/
|
|
60
|
+
showSaveButton: BooleanInput;
|
|
61
|
+
/**
|
|
62
|
+
* Show the save button as indeterminate progress button
|
|
63
|
+
*/
|
|
64
|
+
saveLoading?: BooleanInput;
|
|
65
|
+
/**
|
|
66
|
+
* The stepper items
|
|
67
|
+
*/
|
|
68
|
+
steps?: QueryList<SteppersItemComponent>;
|
|
69
|
+
/**
|
|
70
|
+
* On back button click
|
|
71
|
+
* @event activeStep the current step index
|
|
72
|
+
*/
|
|
73
|
+
backClick: EventEmitter<number>;
|
|
74
|
+
/**
|
|
75
|
+
* On forward button click
|
|
76
|
+
* @event activeStep the current step index
|
|
77
|
+
*/
|
|
78
|
+
forwardClick: EventEmitter<number>;
|
|
79
|
+
/**
|
|
80
|
+
* On confirm button click
|
|
81
|
+
* @event activeStep the current step index
|
|
82
|
+
*/
|
|
83
|
+
confirmClick: EventEmitter<number>;
|
|
84
|
+
/**
|
|
85
|
+
* On save button click
|
|
86
|
+
* @event activeStep the current step index
|
|
87
|
+
*/
|
|
88
|
+
saveClick: EventEmitter<number>;
|
|
89
|
+
get isShowHeader(): boolean;
|
|
90
|
+
get isSteppersNumber(): boolean;
|
|
91
|
+
get isDark(): boolean;
|
|
92
|
+
get isShowBackButton(): boolean;
|
|
93
|
+
get isShowForwardButton(): boolean;
|
|
94
|
+
get isShowConfirmButton(): boolean;
|
|
95
|
+
get isConfirmLoading(): boolean;
|
|
96
|
+
get isShowSaveButton(): boolean;
|
|
97
|
+
get isSaveLoading(): boolean;
|
|
98
|
+
constructor(_changeDetectorRef: ChangeDetectorRef);
|
|
99
|
+
ngAfterViewInit(): void;
|
|
100
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SteppersContainerComponent, never>;
|
|
101
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SteppersContainerComponent, "it-steppers-container[activeStep]", never, { "activeStep": "activeStep"; "showHeader": "showHeader"; "dark": "dark"; "steppersNumber": "steppersNumber"; "progressStyle": "progressStyle"; "progressColor": "progressColor"; "showBackButton": "showBackButton"; "showForwardButton": "showForwardButton"; "showConfirmButton": "showConfirmButton"; "confirmLoading": "confirmLoading"; "showSaveButton": "showSaveButton"; "saveLoading": "saveLoading"; }, { "backClick": "backClick"; "forwardClick": "forwardClick"; "confirmClick": "confirmClick"; "saveClick": "saveClick"; }, ["steps"], never, false, never>;
|
|
102
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { IconName } from '../../../../interfaces/icon';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SteppersItemComponent {
|
|
5
|
+
/**
|
|
6
|
+
* The labels present in the header steps
|
|
7
|
+
*/
|
|
8
|
+
label: string;
|
|
9
|
+
/**
|
|
10
|
+
* The labels present in the header steps can be preceded by an icon.
|
|
11
|
+
*/
|
|
12
|
+
icon?: IconName;
|
|
13
|
+
/**
|
|
14
|
+
* The content of step
|
|
15
|
+
*/
|
|
16
|
+
htmlContent: TemplateRef<any>;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SteppersItemComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SteppersItemComponent, "it-steppers-item[label]", never, { "label": "label"; "icon": "icon"; }, {}, never, ["*"], false, never>;
|
|
19
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, QueryList } from '@angular/core';
|
|
2
|
-
import { BooleanInput } from
|
|
3
|
-
import { TabItemComponent } from
|
|
2
|
+
import { BooleanInput } from '../../../../utils/boolean-input';
|
|
3
|
+
import { TabItemComponent } from '../tab-item/tab-item.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class TabContainerComponent implements AfterViewInit {
|
|
6
6
|
private readonly _changeDetectorRef;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
|
-
import { AbstractComponent } from
|
|
3
|
-
import { BooleanInput } from
|
|
4
|
-
import { IconName } from
|
|
2
|
+
import { AbstractComponent } from '../../../../abstracts/abstract.component';
|
|
3
|
+
import { BooleanInput } from '../../../../utils/boolean-input';
|
|
4
|
+
import { IconName } from '../../../../interfaces/icon';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class TabItemComponent extends AbstractComponent {
|
|
7
7
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { AbstractFormComponent } from
|
|
2
|
-
import { BooleanInput } from
|
|
1
|
+
import { AbstractFormComponent } from '../../../abstracts/abstract-form-component';
|
|
2
|
+
import { BooleanInput } from '../../../utils/boolean-input';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class CheckboxComponent extends AbstractFormComponent<boolean> {
|
|
5
5
|
/**
|
|
@@ -26,5 +26,5 @@ export declare class CheckboxComponent extends AbstractFormComponent<boolean> {
|
|
|
26
26
|
get isGroup(): boolean;
|
|
27
27
|
ngOnInit(): void;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "it-checkbox[id]
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "it-checkbox[id]", never, { "toggle": "toggle"; "inline": "inline"; "group": "group"; "checked": "checked"; "indeterminate": "indeterminate"; }, {}, never, ["*", "[error]", "[label]"], false, never>;
|
|
30
30
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
1
2
|
import { AbstractFormComponent } from '../../../abstracts/abstract-form-component';
|
|
2
|
-
import {
|
|
3
|
+
import { AutocompleteItem, InputControlType } from '../../../interfaces/form';
|
|
3
4
|
import { BooleanInput } from '../../../utils/boolean-input';
|
|
4
5
|
import { Observable } from 'rxjs';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
@@ -47,13 +48,21 @@ export declare class InputComponent extends AbstractFormComponent<string | numbe
|
|
|
47
48
|
*/
|
|
48
49
|
adaptive?: BooleanInput;
|
|
49
50
|
/**
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
51
|
+
* Indicates the list of searchable elements on which to base the input autocomplete system [Optional. Used only in type = 'search']
|
|
52
|
+
* If you need to retrieve items via API, can pass a function of Observable
|
|
53
|
+
* @default undefined
|
|
53
54
|
*/
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
autocompleteData?: Array<AutocompleteItem> | ((search?: string) => Observable<Array<AutocompleteItem>>);
|
|
56
|
+
/**
|
|
57
|
+
* Time span [ms] has passed without another source emission, to delay data filtering.
|
|
58
|
+
* Useful when the user is typing multiple letters
|
|
59
|
+
* @default 300 [ms]
|
|
60
|
+
*/
|
|
61
|
+
autocompleteDebounceTime: number;
|
|
62
|
+
/**
|
|
63
|
+
* Fired when the Autocomplete Item has been selected
|
|
64
|
+
*/
|
|
65
|
+
onAutocompleteSelected: EventEmitter<AutocompleteItem>;
|
|
57
66
|
showAutocompletion: boolean;
|
|
58
67
|
get isActiveLabel(): boolean;
|
|
59
68
|
/**
|
|
@@ -67,10 +76,7 @@ export declare class InputComponent extends AbstractFormComponent<string | numbe
|
|
|
67
76
|
/** Observable da cui vengono emessi i risultati dell'auto completamento */
|
|
68
77
|
autocompleteResults$: Observable<{
|
|
69
78
|
searchedValue: string;
|
|
70
|
-
relatedEntries: Array<
|
|
71
|
-
original: string;
|
|
72
|
-
lowercase: string;
|
|
73
|
-
}>;
|
|
79
|
+
relatedEntries: Array<AutocompleteItem>;
|
|
74
80
|
}>;
|
|
75
81
|
ngOnInit(): void;
|
|
76
82
|
/**
|
|
@@ -78,17 +84,13 @@ export declare class InputComponent extends AbstractFormComponent<string | numbe
|
|
|
78
84
|
* @param decrease true to decrease value
|
|
79
85
|
*/
|
|
80
86
|
incrementNumber(decrease?: boolean): void;
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
}>;
|
|
88
|
-
isAutocompletable(): boolean;
|
|
89
|
-
onEntryClick(entry: AutoCompleteItem, event: Event): void;
|
|
90
|
-
autocompleteItemTrackByValueFn(index: number, item: AutoCompleteItem): string;
|
|
87
|
+
/**
|
|
88
|
+
* Create the autocomplete list
|
|
89
|
+
*/
|
|
90
|
+
private getAutocompleteResults$;
|
|
91
|
+
onEntryClick(entry: AutocompleteItem, event: Event): void;
|
|
92
|
+
autocompleteItemTrackByValueFn(index: number, item: AutocompleteItem): string;
|
|
91
93
|
onKeyDown(): void;
|
|
92
94
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, never>;
|
|
93
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "it-input[id]", never, { "type": "type"; "placeholder": "placeholder"; "description": "description"; "readonly": "readonly"; "max": "max"; "min": "min"; "step": "step"; "currency": "currency"; "percentage": "percentage"; "adaptive": "adaptive"; "
|
|
95
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "it-input[id]", never, { "type": "type"; "placeholder": "placeholder"; "description": "description"; "readonly": "readonly"; "max": "max"; "min": "min"; "step": "step"; "currency": "currency"; "percentage": "percentage"; "adaptive": "adaptive"; "autocompleteData": "autocompleteData"; "autocompleteDebounceTime": "autocompleteDebounceTime"; }, { "onAutocompleteSelected": "onAutocompleteSelected"; }, never, ["[prepend]", "[prependText]", "[append]", "[appendText]", "[error]"], false, never>;
|
|
94
96
|
}
|
|
@@ -25,5 +25,5 @@ export declare class RadioButtonComponent extends AbstractFormComponent<string |
|
|
|
25
25
|
get name(): string;
|
|
26
26
|
ngOnInit(): void;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "it-radio-button[id][
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "it-radio-button[id][value]", never, { "value": "value"; "inline": "inline"; "group": "group"; "checked": "checked"; }, {}, never, ["[label]", "*", "[error]", "[error]"], false, never>;
|
|
29
29
|
}
|
|
@@ -41,7 +41,7 @@ export declare class BackButtonComponent {
|
|
|
41
41
|
/**
|
|
42
42
|
* Go back function
|
|
43
43
|
*/
|
|
44
|
-
goBack(): void;
|
|
44
|
+
goBack(event: Event): void;
|
|
45
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<BackButtonComponent, never>;
|
|
46
46
|
static ɵcmp: i0.ɵɵComponentDeclaration<BackButtonComponent, "it-back-button", ["itBackButton"], { "buttonStyle": "buttonStyle"; "direction": "direction"; "showIcon": "showIcon"; "showText": "showText"; "backFn": "backFn"; }, {}, never, never, false, never>;
|
|
47
47
|
}
|
package/lib/interfaces/form.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IconName } from
|
|
1
|
+
import { IconName } from './icon';
|
|
2
2
|
export declare type InputControlType = 'text' | 'email' | 'number' | 'date' | 'time' | 'tel' | 'color' | 'url' | 'search';
|
|
3
3
|
export interface SelectControlOption {
|
|
4
4
|
value: any;
|
|
@@ -46,7 +46,7 @@ export interface UploadFileListItem {
|
|
|
46
46
|
/**
|
|
47
47
|
* Elemento disponibile per l'autocompletamento del it-form-input
|
|
48
48
|
*/
|
|
49
|
-
export interface
|
|
49
|
+
export interface AutocompleteItem {
|
|
50
50
|
/** Valore voce di autocompletamento */
|
|
51
51
|
value: string;
|
|
52
52
|
/** Opzionale. Path in cui ricercare l'immagine dell'avatar da posizionare a sinistra della voce di autocompletamento */
|
|
@@ -59,4 +59,9 @@ export interface AutoCompleteItem {
|
|
|
59
59
|
label?: string;
|
|
60
60
|
/** Opzionale. Link relativo all'elemento */
|
|
61
61
|
link?: string;
|
|
62
|
+
/**
|
|
63
|
+
* Attribute not used for autocomplete rendering.
|
|
64
|
+
* It can be useful to retrieve some extra information when selecting the autocomplete item
|
|
65
|
+
*/
|
|
66
|
+
additionalData?: any;
|
|
62
67
|
}
|
package/lib/interfaces/icon.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare type IconSize = 'xs' | 'sm' | 'lg' | 'xl';
|
|
2
2
|
export declare type IconColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'light' | 'white';
|
|
3
|
-
export declare type IconName = 'arrow-down' | 'arrow-down-circle' | 'arrow-down-triangle' | 'arrow-left' | 'arrow-left-circle' | 'arrow-left-triangle' | 'arrow-right' | 'arrow-right-circle' | 'arrow-right-triangle' | 'arrow-up' | 'arrow-up-circle' | 'arrow-up-triangle' | 'ban' | 'bookmark' | 'box' | 'burger' | 'calendar' | 'camera' | 'card' | 'chart-line' | 'check' | 'check-circle' | 'chevron-left' | 'chevron-right' | 'clip' | 'clock' | 'close' | 'close-big' | 'close-circle' | 'comment' | 'copy' | 'delete' | 'download' | 'error' | 'exchange-circle' | 'expand' | 'external-link' | 'flag' | 'folder' | 'fullscreen' | 'funnel' | 'hearing' | 'help' | 'help-circle' | 'horn' | 'inbox' | 'info-circle' | 'key' | 'link' | 'list' | 'locked' | 'logout' | 'mail' | 'mail-open' | 'map-marker' | 'map-marker-circle' | 'map-marker-minus' | 'map-marker-plus' | 'maximize' | 'maximize-alt' | 'minimize' | 'minus' | 'minus-circle' | 'more-actions' | 'more-items' | 'note' | 'pa' | 'password-invisible' | 'password-visible' | 'pencil' | 'piattaforme' | 'pin' | 'plug' | 'plus' | 'plus-circle' | 'presentation' | 'print' | 'refresh' | 'restore' | 'rss' | 'rss-square' | 'search' | 'settings' | 'share' | 'software' | 'star-full' | 'star-outline' | 'telephone' | 'tool' | 'unlocked' | 'upload' | 'user' | 'video' | 'warning' | 'warning-circle' | 'wifi' | 'zoom-in' | 'zoom-out' | 'behance' | 'facebook' | 'facebook-square' | 'figma' | 'figma-square' | 'flickr' | 'flickr-square' | 'github' | 'instagram' | 'linkedin' | 'linkedin-square' | 'medium' | 'medium-square' | 'pinterest' | 'pinterest-square' | 'quora' | 'quora-square' | 'reddit' | 'reddit-square' | 'slack' | 'slack-square' | 'snapchat' | 'snapchat-square' | 'stackexchange' | 'stackexchange-square' | 'stackoverflow' | 'stackoverflow-square' | 'telegram' | 'tiktok' | 'tiktok-square' | 'twitter' | 'twitter-square' | 'vimeo' | 'vimeo-square' | 'whatsapp' | 'whatsapp-square' | 'youtube' | 'google' | 'designers-italia' | 'team-digitale' | 'file' | 'files' | 'file-audio' | 'file-compressed' | 'file-csv' | 'file-json' | 'file-odp' | 'file-ods' | 'file-odt' | 'file-pdf' | 'file-pdf-ext' | 'file-sheet' | 'file-slides' | 'file-txt' | 'file-video' | 'file-xml';
|
|
3
|
+
export declare type IconName = 'arrow-down' | 'arrow-down-circle' | 'arrow-down-triangle' | 'arrow-left' | 'arrow-left-circle' | 'arrow-left-triangle' | 'arrow-right' | 'arrow-right-circle' | 'arrow-right-triangle' | 'arrow-up' | 'arrow-up-circle' | 'arrow-up-triangle' | 'ban' | 'bookmark' | 'box' | 'burger' | 'calendar' | 'camera' | 'card' | 'chart-line' | 'check' | 'check-circle' | 'chevron-left' | 'chevron-right' | 'clip' | 'clock' | 'close' | 'close-big' | 'close-circle' | 'comment' | 'copy' | 'delete' | 'download' | 'error' | 'exchange-circle' | 'expand' | 'external-link' | 'flag' | 'folder' | 'fullscreen' | 'funnel' | 'hearing' | 'help' | 'help-circle' | 'horn' | 'inbox' | 'info-circle' | 'key' | 'link' | 'list' | 'locked' | 'logout' | 'mail' | 'mail-open' | 'map-marker' | 'map-marker-circle' | 'map-marker-minus' | 'map-marker-plus' | 'maximize' | 'maximize-alt' | 'minimize' | 'minus' | 'minus-circle' | 'more-actions' | 'more-items' | 'note' | 'pa' | 'password-invisible' | 'password-visible' | 'pencil' | 'piattaforme' | 'pin' | 'plug' | 'plus' | 'plus-circle' | 'presentation' | 'print' | 'refresh' | 'restore' | 'rss' | 'rss-square' | 'search' | 'settings' | 'share' | 'software' | 'star-full' | 'star-outline' | 'telephone' | 'tool' | 'unlocked' | 'upload' | 'user' | 'video' | 'warning' | 'warning-circle' | 'wifi' | 'zoom-in' | 'zoom-out' | 'behance' | 'facebook' | 'facebook-square' | 'figma' | 'figma-square' | 'flickr' | 'flickr-square' | 'github' | 'instagram' | 'linkedin' | 'linkedin-square' | 'mastodon' | 'mastodon-square' | 'medium' | 'medium-square' | 'pinterest' | 'pinterest-square' | 'quora' | 'quora-square' | 'reddit' | 'reddit-square' | 'slack' | 'slack-square' | 'snapchat' | 'snapchat-square' | 'stackexchange' | 'stackexchange-square' | 'stackoverflow' | 'stackoverflow-square' | 'telegram' | 'tiktok' | 'tiktok-square' | 'twitter' | 'twitter-square' | 'vimeo' | 'vimeo-square' | 'whatsapp' | 'whatsapp-square' | 'youtube' | 'google' | 'designers-italia' | 'team-digitale' | 'file' | 'files' | 'file-audio' | 'file-compressed' | 'file-csv' | 'file-json' | 'file-odp' | 'file-ods' | 'file-odt' | 'file-pdf' | 'file-pdf-ext' | 'file-sheet' | 'file-slides' | 'file-txt' | 'file-video' | 'file-xml';
|
|
@@ -27,33 +27,35 @@ import * as i25 from "../components/core/popover/popover.directive";
|
|
|
27
27
|
import * as i26 from "../components/core/progress-bar/progress-bar.component";
|
|
28
28
|
import * as i27 from "../components/core/progress-button/progress-button.component";
|
|
29
29
|
import * as i28 from "../components/core/spinner/spinner.component";
|
|
30
|
-
import * as i29 from "../components/core/
|
|
31
|
-
import * as i30 from "../components/core/
|
|
32
|
-
import * as i31 from "../components/core/
|
|
33
|
-
import * as i32 from "../components/core/
|
|
34
|
-
import * as i33 from "../components/
|
|
35
|
-
import * as i34 from "../components/
|
|
36
|
-
import * as i35 from "../components/form/
|
|
37
|
-
import * as i36 from "../components/form/
|
|
38
|
-
import * as i37 from "../components/form/
|
|
39
|
-
import * as i38 from "../components/form/
|
|
40
|
-
import * as i39 from "../components/form/
|
|
41
|
-
import * as i40 from "../components/form/
|
|
42
|
-
import * as i41 from "../components/
|
|
43
|
-
import * as i42 from "../components/
|
|
44
|
-
import * as i43 from "../components/navigation/
|
|
45
|
-
import * as i44 from "../components/navigation/
|
|
46
|
-
import * as i45 from "../components/navigation/
|
|
47
|
-
import * as i46 from "../components/
|
|
48
|
-
import * as i47 from "../components/
|
|
49
|
-
import * as i48 from "../components/utils/
|
|
50
|
-
import * as i49 from "../
|
|
51
|
-
import * as i50 from "
|
|
52
|
-
import * as i51 from "
|
|
53
|
-
import * as i52 from "@angular/
|
|
54
|
-
import * as i53 from "@
|
|
30
|
+
import * as i29 from "../components/core/steppers/steppers-container/steppers-container.component";
|
|
31
|
+
import * as i30 from "../components/core/steppers/steppers-item/steppers-item.component";
|
|
32
|
+
import * as i31 from "../components/core/tab/tab-container/tab-container.component";
|
|
33
|
+
import * as i32 from "../components/core/tab/tab-item/tab-item.component";
|
|
34
|
+
import * as i33 from "../components/core/table/table.component";
|
|
35
|
+
import * as i34 from "../components/core/tooltip/tooltip.directive";
|
|
36
|
+
import * as i35 from "../components/form/checkbox/checkbox.component";
|
|
37
|
+
import * as i36 from "../components/form/input/input.component";
|
|
38
|
+
import * as i37 from "../components/form/password-input/password-input.component";
|
|
39
|
+
import * as i38 from "../components/form/radio-button/radio-button.component";
|
|
40
|
+
import * as i39 from "../components/form/select/select.component";
|
|
41
|
+
import * as i40 from "../components/form/textarea/textarea.component";
|
|
42
|
+
import * as i41 from "../components/form/upload-drag-drop/upload-drag-drop.component";
|
|
43
|
+
import * as i42 from "../components/form/upload-file-list/upload-file-list.component";
|
|
44
|
+
import * as i43 from "../components/navigation/back-button/back-button.component";
|
|
45
|
+
import * as i44 from "../components/navigation/back-to-top/back-to-top.component";
|
|
46
|
+
import * as i45 from "../components/navigation/breadcrumbs/breadcrumb/breadcrumb.component";
|
|
47
|
+
import * as i46 from "../components/navigation/breadcrumbs/breadcrumb-item/breadcrumb-item.component";
|
|
48
|
+
import * as i47 from "../components/navigation/header/header.component";
|
|
49
|
+
import * as i48 from "../components/utils/icon/icon.component";
|
|
50
|
+
import * as i49 from "../components/utils/not-found-page/not-found-page.component";
|
|
51
|
+
import * as i50 from "../components/utils/language-switcher/language-switcher.component";
|
|
52
|
+
import * as i51 from "../pipes/mark-matching-text.pipe";
|
|
53
|
+
import * as i52 from "@angular/common";
|
|
54
|
+
import * as i53 from "@ngx-translate/core";
|
|
55
|
+
import * as i54 from "@angular/forms";
|
|
56
|
+
import * as i55 from "@angular/router";
|
|
55
57
|
export declare class ComponentsModule {
|
|
56
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentsModule, never>;
|
|
57
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ComponentsModule, [typeof i1.AbstractComponent, typeof i2.AbstractFormComponent, typeof i3.AccordionComponent, typeof i4.AlertComponent, typeof i5.BadgeDirective, typeof i6.ButtonDirective, typeof i7.CalloutComponent, typeof i8.CardComponent, typeof i9.CarouselComponent, typeof i10.CarouselItemComponent, typeof i11.ChipComponent, typeof i12.CollapseComponent, typeof i13.DimmerButtonsComponent, typeof i14.DimmerComponent, typeof i15.DimmerIconComponent, typeof i16.DropdownComponent, typeof i17.DropdownItemComponent, typeof i18.ForwardDirective, typeof i19.LinkComponent, typeof i20.ListComponent, typeof i21.ListItemComponent, typeof i22.ModalComponent, typeof i23.NotificationsComponent, typeof i24.PaginationComponent, typeof i25.PopoverDirective, typeof i26.ProgressBarComponent, typeof i27.ProgressButtonComponent, typeof i28.SpinnerComponent, typeof i29.
|
|
59
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ComponentsModule, [typeof i1.AbstractComponent, typeof i2.AbstractFormComponent, typeof i3.AccordionComponent, typeof i4.AlertComponent, typeof i5.BadgeDirective, typeof i6.ButtonDirective, typeof i7.CalloutComponent, typeof i8.CardComponent, typeof i9.CarouselComponent, typeof i10.CarouselItemComponent, typeof i11.ChipComponent, typeof i12.CollapseComponent, typeof i13.DimmerButtonsComponent, typeof i14.DimmerComponent, typeof i15.DimmerIconComponent, typeof i16.DropdownComponent, typeof i17.DropdownItemComponent, typeof i18.ForwardDirective, typeof i19.LinkComponent, typeof i20.ListComponent, typeof i21.ListItemComponent, typeof i22.ModalComponent, typeof i23.NotificationsComponent, typeof i24.PaginationComponent, typeof i25.PopoverDirective, typeof i26.ProgressBarComponent, typeof i27.ProgressButtonComponent, typeof i28.SpinnerComponent, typeof i29.SteppersContainerComponent, typeof i30.SteppersItemComponent, typeof i31.TabContainerComponent, typeof i32.TabItemComponent, typeof i33.TableComponent, typeof i34.TooltipDirective, typeof i35.CheckboxComponent, typeof i36.InputComponent, typeof i37.PasswordInputComponent, typeof i38.RadioButtonComponent, typeof i39.SelectComponent, typeof i40.TextareaComponent, typeof i41.UploadDragDropComponent, typeof i42.UploadFileListComponent, typeof i43.BackButtonComponent, typeof i44.BackToTopComponent, typeof i45.BreadcrumbComponent, typeof i46.BreadcrumbItemComponent, typeof i47.HeaderComponent, typeof i48.IconComponent, typeof i49.NotFoundPageComponent, typeof i50.LanguageSwitcherComponent, typeof i51.MarkMatchingTextPipe], [typeof i52.CommonModule, typeof i53.TranslateModule, typeof i54.ReactiveFormsModule, typeof i52.NgIf, typeof i52.NgForOf, typeof i55.RouterLink], [typeof i3.AccordionComponent, typeof i4.AlertComponent, typeof i5.BadgeDirective, typeof i6.ButtonDirective, typeof i7.CalloutComponent, typeof i8.CardComponent, typeof i9.CarouselComponent, typeof i10.CarouselItemComponent, typeof i11.ChipComponent, typeof i12.CollapseComponent, typeof i13.DimmerButtonsComponent, typeof i14.DimmerComponent, typeof i15.DimmerIconComponent, typeof i16.DropdownComponent, typeof i17.DropdownItemComponent, typeof i18.ForwardDirective, typeof i19.LinkComponent, typeof i20.ListComponent, typeof i21.ListItemComponent, typeof i22.ModalComponent, typeof i23.NotificationsComponent, typeof i24.PaginationComponent, typeof i25.PopoverDirective, typeof i26.ProgressBarComponent, typeof i27.ProgressButtonComponent, typeof i28.SpinnerComponent, typeof i29.SteppersContainerComponent, typeof i30.SteppersItemComponent, typeof i31.TabContainerComponent, typeof i32.TabItemComponent, typeof i33.TableComponent, typeof i34.TooltipDirective, typeof i35.CheckboxComponent, typeof i36.InputComponent, typeof i37.PasswordInputComponent, typeof i38.RadioButtonComponent, typeof i39.SelectComponent, typeof i40.TextareaComponent, typeof i41.UploadDragDropComponent, typeof i42.UploadFileListComponent, typeof i43.BackButtonComponent, typeof i44.BackToTopComponent, typeof i45.BreadcrumbComponent, typeof i46.BreadcrumbItemComponent, typeof i47.HeaderComponent, typeof i48.IconComponent, typeof i49.NotFoundPageComponent, typeof i50.LanguageSwitcherComponent, typeof i51.MarkMatchingTextPipe]>;
|
|
58
60
|
static ɵinj: i0.ɵɵInjectorDeclaration<ComponentsModule>;
|
|
59
61
|
}
|
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -26,6 +26,8 @@ export * from './lib/components/core/popover/popover.directive';
|
|
|
26
26
|
export * from './lib/components/core/progress-bar/progress-bar.component';
|
|
27
27
|
export * from './lib/components/core/progress-button/progress-button.component';
|
|
28
28
|
export * from './lib/components/core/spinner/spinner.component';
|
|
29
|
+
export * from './lib/components/core/steppers/steppers-container/steppers-container.component';
|
|
30
|
+
export * from './lib/components/core/steppers/steppers-item/steppers-item.component';
|
|
29
31
|
export * from './lib/components/core/tab/tab-container/tab-container.component';
|
|
30
32
|
export * from './lib/components/core/tab/tab-item/tab-item.component';
|
|
31
33
|
export * from './lib/components/core/table/table.component';
|