itc-components-library20 1.0.1 → 2.0.1
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/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { PrimeNG } from 'primeng/config';
|
|
|
10
10
|
import { HttpClient } from '@angular/common/http';
|
|
11
11
|
import { Observable } from 'rxjs';
|
|
12
12
|
import * as AWS from 'aws-sdk';
|
|
13
|
+
import { IconProp } from '@fortawesome/fontawesome-svg-core';
|
|
13
14
|
|
|
14
15
|
declare class ItcLibrary20 {
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ItcLibrary20, never>;
|
|
@@ -1940,5 +1941,37 @@ declare class ApiReportService {
|
|
|
1940
1941
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiReportService>;
|
|
1941
1942
|
}
|
|
1942
1943
|
|
|
1943
|
-
|
|
1944
|
-
|
|
1944
|
+
type ButtonVariant = 'primary' | 'secondary' | 'third' | 'fourth';
|
|
1945
|
+
declare class Button {
|
|
1946
|
+
variant: i0.InputSignal<ButtonVariant>;
|
|
1947
|
+
label: i0.InputSignal<string | undefined>;
|
|
1948
|
+
icon: i0.InputSignal<IconProp | undefined>;
|
|
1949
|
+
disabled: i0.InputSignal<boolean>;
|
|
1950
|
+
ariaLabel: i0.InputSignal<string | undefined>;
|
|
1951
|
+
bgColor: i0.InputSignal<string>;
|
|
1952
|
+
textColor: i0.InputSignal<string>;
|
|
1953
|
+
borderColor: i0.InputSignal<string>;
|
|
1954
|
+
iconColor: i0.InputSignal<string>;
|
|
1955
|
+
bgColorHover: i0.InputSignal<string>;
|
|
1956
|
+
textColorHover: i0.InputSignal<string>;
|
|
1957
|
+
borderColorHover: i0.InputSignal<string>;
|
|
1958
|
+
iconColorHover: i0.InputSignal<string>;
|
|
1959
|
+
clicked: i0.OutputEmitterRef<void>;
|
|
1960
|
+
protected classes: i0.Signal<string>;
|
|
1961
|
+
protected styles: i0.Signal<{
|
|
1962
|
+
'--btn-bg': string;
|
|
1963
|
+
'--btn-color': string;
|
|
1964
|
+
'--btn-border-color': string;
|
|
1965
|
+
'--btn-icon-color': string;
|
|
1966
|
+
'--btn-bg-hover': string;
|
|
1967
|
+
'--btn-color-hover': string;
|
|
1968
|
+
'--btn-border-color-hover': string;
|
|
1969
|
+
'--btn-icon-color-hover': string;
|
|
1970
|
+
}>;
|
|
1971
|
+
protected handleClick(): void;
|
|
1972
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Button, never>;
|
|
1973
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Button, "lib-button", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "bgColor": { "alias": "bgColor"; "required": false; "isSignal": true; }; "textColor": { "alias": "textColor"; "required": false; "isSignal": true; }; "borderColor": { "alias": "borderColor"; "required": false; "isSignal": true; }; "iconColor": { "alias": "iconColor"; "required": false; "isSignal": true; }; "bgColorHover": { "alias": "bgColorHover"; "required": false; "isSignal": true; }; "textColorHover": { "alias": "textColorHover"; "required": false; "isSignal": true; }; "borderColorHover": { "alias": "borderColorHover"; "required": false; "isSignal": true; }; "iconColorHover": { "alias": "iconColorHover"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, never, true, never>;
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
export { API_CONFIG, ApiAccountDictionaryService, ApiAccountService, ApiAdministrationService, ApiEventService, ApiExamAppointmentService, ApiExamDictionaryService, ApiExamService, ApiGeographyService, ApiKitService, ApiPatientDictionaryService, ApiPatientService, ApiReportService, ApiRequestDictionaryService, ApiRequestService, ApiStructureDictionaryService, ApiStructureService, ApiSurveyDictionaryService, ApiSurveyService, BasicTable, Button, Calendar, CalendarView, FormatDate, ItcLibrary20, Message, Minio, PRIMENG_ITALIAN_LOCALE, PrimaryButton, PrimengItalianLocale, SecondaryButton, SortableTable, Survey, SurveyRadio, SurveyText, SurveyValuebox, ThirdButton };
|
|
1977
|
+
export type { ButtonVariant, IAppointment, IColumn, IMinio, IQuestionAnswer };
|