@testgorilla/tgo-ui 1.1.1 → 1.2.2
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/components/alert-banner/alert-banner.component.d.ts +1 -1
- package/components/autocomplete/autocomplete.component.d.ts +106 -0
- package/components/autocomplete/autocomplete.component.module.d.ts +19 -0
- package/components/autocomplete/autocomplete.model.d.ts +13 -0
- package/components/autocomplete/includes.pipe.d.ts +12 -0
- package/components/autocomplete/transform-Item.pipe.d.ts +11 -0
- package/components/avatar/avatar.component.d.ts +1 -1
- package/components/banner-action/banner-action.component.d.ts +1 -1
- package/components/button/button.component.d.ts +1 -1
- package/components/card/card.component.d.ts +1 -1
- package/components/checkbox/checkbox.component.d.ts +1 -1
- package/components/create-account/create-account.component.d.ts +1 -1
- package/components/create-password/create-password.component.d.ts +1 -1
- package/components/datepicker/datepicker.component.d.ts +1 -1
- package/components/dialog/dialog.component.d.ts +1 -1
- package/components/dropdown/dropdown.component.d.ts +1 -1
- package/components/elevation-shadow/elevation-shadow.component.d.ts +1 -1
- package/components/field/field.component.d.ts +1 -1
- package/components/file-upload/file-upload.component.d.ts +1 -1
- package/components/forgot-password/forgot-password.component.d.ts +1 -1
- package/components/icon/icon.component.d.ts +1 -1
- package/components/icon-label/icon-label.component.d.ts +1 -1
- package/components/label/label.component.d.ts +1 -1
- package/components/login/login.component.d.ts +1 -1
- package/components/logo/logo.component.d.ts +1 -1
- package/components/navbar/navbar.component.d.ts +1 -1
- package/components/navigation/navigation.component.d.ts +1 -1
- package/components/paginator/paginator.component.d.ts +1 -1
- package/components/progress-bar/progress-bar.component.d.ts +1 -1
- package/components/radio-button/radio-button.component.d.ts +1 -1
- package/components/rating/rating.component.d.ts +1 -1
- package/components/snackbar/snackbar.component.d.ts +1 -1
- package/components/table/directives/dynamic-component.directive.d.ts +1 -1
- package/components/table/table.component.d.ts +1 -1
- package/components/tag/tag.component.d.ts +1 -1
- package/components/toggle/toggle.component.d.ts +1 -1
- package/components/tooltip/tooltip.component.d.ts +1 -1
- package/directives/digits-only.directive.d.ts +1 -1
- package/directives/select-text.directive.d.ts +19 -0
- package/esm2022/components/alert-banner/alert-banner.component.mjs +98 -0
- package/{esm2020 → esm2022}/components/alert-banner/alert-banner.component.module.mjs +5 -5
- package/esm2022/components/autocomplete/autocomplete.component.mjs +288 -0
- package/esm2022/components/autocomplete/autocomplete.component.module.mjs +81 -0
- package/esm2022/components/autocomplete/autocomplete.model.mjs +16 -0
- package/esm2022/components/autocomplete/includes.pipe.mjs +21 -0
- package/esm2022/components/autocomplete/transform-Item.pipe.mjs +29 -0
- package/{esm2020 → esm2022}/components/avatar/avatar.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/avatar/avatar.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/banner-action/banner-action.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/banner-action/banner-action.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/button/button.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/button/button.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/card/card.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/card/card.component.module.mjs +5 -5
- package/esm2022/components/checkbox/checkbox.component.mjs +151 -0
- package/{esm2020 → esm2022}/components/checkbox/checkbox.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/confirm-dialog/confirm-dialog.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/confirm-dialog/confirm-dialog.component.module.mjs +8 -8
- package/{esm2020 → esm2022}/components/create-account/create-account.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/create-account/create-account.component.module.mjs +19 -19
- package/{esm2020 → esm2022}/components/create-password/create-password.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/create-password/create-password.component.module.mjs +17 -17
- package/esm2022/components/datepicker/datepicker.component.mjs +179 -0
- package/{esm2020 → esm2022}/components/datepicker/datepicker.component.module.mjs +19 -19
- package/{esm2020 → esm2022}/components/dialog/dialog.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/dialog/dialog.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/dialog/dialog.service.mjs +4 -4
- package/esm2022/components/dropdown/dropdown.component.mjs +158 -0
- package/{esm2020 → esm2022}/components/dropdown/dropdown.component.module.mjs +19 -19
- package/{esm2020 → esm2022}/components/elevation-shadow/elevation-shadow.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/elevation-shadow/elevation-shadow.component.module.mjs +5 -5
- package/esm2022/components/field/field.component.mjs +212 -0
- package/{esm2020 → esm2022}/components/field/field.component.module.mjs +17 -17
- package/esm2022/components/file-upload/file-upload.component.mjs +191 -0
- package/{esm2020 → esm2022}/components/file-upload/file-upload.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/forgot-password/forgot-password.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/forgot-password/forgot-password.component.module.mjs +17 -17
- package/{esm2020 → esm2022}/components/icon/icon.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/icon/icon.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/icon-label/icon-label.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/icon-label/icon-label.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/label/label.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/label/label.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/login/login.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/login/login.component.module.mjs +17 -17
- package/{esm2020 → esm2022}/components/logo/logo.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/logo/logo.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/navbar/navbar.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/navbar/navbar.component.module.mjs +19 -19
- package/{esm2020 → esm2022}/components/navigation/navigation.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/navigation/navigation.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/paginator/paginator.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/paginator/paginator.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/progress-bar/progress-bar.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/progress-bar/progress-bar.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/radio-button/radio-button.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/radio-button/radio-button.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/rating/rating.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/rating/rating.component.module.mjs +5 -5
- package/esm2022/components/snackbar/snackbar.component.mjs +148 -0
- package/esm2022/components/snackbar/snackbar.component.module.mjs +44 -0
- package/{esm2020 → esm2022}/components/snackbar/snackbar.service.mjs +4 -4
- package/{esm2020 → esm2022}/components/spinner/spinner.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/spinner/spinner.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/table/directives/dynamic-component.directive.mjs +4 -4
- package/{esm2020 → esm2022}/components/table/pipes/data-property-getter.mjs +4 -4
- package/esm2022/components/table/table.component.mjs +158 -0
- package/{esm2020 → esm2022}/components/table/table.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/tag/tag.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/tag/tag.component.module.mjs +5 -5
- package/esm2022/components/toggle/toggle.component.mjs +78 -0
- package/{esm2020 → esm2022}/components/toggle/toggle.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/components/tooltip/tooltip.component.mjs +4 -4
- package/{esm2020 → esm2022}/components/tooltip/tooltip.component.module.mjs +5 -5
- package/{esm2020 → esm2022}/directives/digits-only.directive.mjs +4 -4
- package/{esm2020 → esm2022}/directives/drag-drop.directive.mjs +4 -4
- package/esm2022/directives/select-text.directive.mjs +37 -0
- package/{esm2020 → esm2022}/pipes/name-initials.pipe.mjs +4 -4
- package/{esm2020 → esm2022}/public-api.mjs +5 -1
- package/esm2022/utils/autocomplete-utils.mjs +61 -0
- package/esm2022/utils/localization/language.service.mjs +78 -0
- package/{fesm2020 → fesm2022}/testgorilla-tgo-ui.mjs +961 -466
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -0
- package/package.json +17 -23
- package/public-api.d.ts +3 -0
- package/src/assets/i18n/en.json +9 -1
- package/utils/autocomplete-utils.d.ts +11 -0
- package/esm2020/components/alert-banner/alert-banner.component.mjs +0 -98
- package/esm2020/components/checkbox/checkbox.component.mjs +0 -151
- package/esm2020/components/datepicker/datepicker.component.mjs +0 -179
- package/esm2020/components/dropdown/dropdown.component.mjs +0 -158
- package/esm2020/components/field/field.component.mjs +0 -212
- package/esm2020/components/file-upload/file-upload.component.mjs +0 -191
- package/esm2020/components/snackbar/snackbar.component.mjs +0 -148
- package/esm2020/components/snackbar/snackbar.component.module.mjs +0 -44
- package/esm2020/components/table/table.component.mjs +0 -158
- package/esm2020/components/toggle/toggle.component.mjs +0 -78
- package/esm2020/utils/localization/language.service.mjs +0 -78
- package/fesm2015/testgorilla-tgo-ui.mjs +0 -4290
- package/fesm2015/testgorilla-tgo-ui.mjs.map +0 -1
- package/fesm2020/testgorilla-tgo-ui.mjs.map +0 -1
- /package/{esm2020 → esm2022}/components/alert-banner/alert-banner.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/avatar/avatar.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/button/button.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/confirm-dialog/confirm-dialog.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/components/confirm-dialog/confirm-dialog.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/create-account/create-account.constant.mjs +0 -0
- /package/{esm2020 → esm2022}/components/create-account/create-account.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/create-password/create-password.constant.mjs +0 -0
- /package/{esm2020 → esm2022}/components/create-password/create-password.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/dropdown/dropdown.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/elevation-shadow/elevation-shadow.constant.mjs +0 -0
- /package/{esm2020 → esm2022}/components/field/field.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/forgot-password/forgot-password.constant.mjs +0 -0
- /package/{esm2020 → esm2022}/components/forgot-password/forgot-password.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/icon/icon.config.mjs +0 -0
- /package/{esm2020 → esm2022}/components/icon/icon.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/label/label.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/login/login.constant.mjs +0 -0
- /package/{esm2020 → esm2022}/components/login/login.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/logo/logo.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/navbar/navbar.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/radio-button/radio-button.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/snackbar/snackbar.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/table/table.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/tag/tag.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/toggle/toggle.model.mjs +0 -0
- /package/{esm2020 → esm2022}/components/tooltip/tooltip.model.mjs +0 -0
- /package/{esm2020 → esm2022}/testgorilla-tgo-ui.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/alert-bar.model.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/alert-bars.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/utils/validators.utils.mjs +0 -0
|
@@ -62,5 +62,5 @@ export declare class AlertBannerComponent implements OnInit {
|
|
|
62
62
|
ngOnInit(): void;
|
|
63
63
|
dismissClick(): void;
|
|
64
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlertBannerComponent, never>;
|
|
65
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AlertBannerComponent, "ui-alert-banner", never, { "alertType": "alertType"; "message": "message"; "includeDismissButton": "includeDismissButton"; "fixed": "fixed"; "fullWidth": "fullWidth"; "linkText": "linkText"; "linkUrl": "linkUrl"; "linkTarget": "linkTarget"; }, {}, never, never, false, never>;
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertBannerComponent, "ui-alert-banner", never, { "alertType": { "alias": "alertType"; "required": false; }; "message": { "alias": "message"; "required": false; }; "includeDismissButton": { "alias": "includeDismissButton"; "required": false; }; "fixed": { "alias": "fixed"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "linkText": { "alias": "linkText"; "required": false; }; "linkUrl": { "alias": "linkUrl"; "required": false; }; "linkTarget": { "alias": "linkTarget"; "required": false; }; }, {}, never, never, false, never>;
|
|
66
66
|
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnChanges } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
4
|
+
import { MatFormField } from '@angular/material/form-field';
|
|
5
|
+
import { ReplaySubject } from 'rxjs';
|
|
6
|
+
import { Autocomplete, AutocompleteType } from './autocomplete.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class AutocompleteComponent implements ControlValueAccessor, OnChanges, AfterViewInit {
|
|
9
|
+
/**
|
|
10
|
+
* @property itemsList
|
|
11
|
+
* @description The list of items to display in the autocomplete.
|
|
12
|
+
* @memberof AutocompleteComponent
|
|
13
|
+
*/
|
|
14
|
+
itemsList: any[];
|
|
15
|
+
/**
|
|
16
|
+
* @property suggestionsList
|
|
17
|
+
* @description The list of suggestions to display in the autocomplete.
|
|
18
|
+
* @memberof AutocompleteComponent
|
|
19
|
+
*/
|
|
20
|
+
suggestionsList: any[];
|
|
21
|
+
/**
|
|
22
|
+
* @property disabled
|
|
23
|
+
* @description If `true`, the autocomplete is disabled.
|
|
24
|
+
* @memberof AutocompleteComponent
|
|
25
|
+
*/
|
|
26
|
+
disabled: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* @property allowAdd
|
|
29
|
+
* @description If `true`, allows adding new values to the autocomplete.
|
|
30
|
+
* @memberof AutocompleteComponent
|
|
31
|
+
*/
|
|
32
|
+
allowAdd: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* @property textField
|
|
35
|
+
* @description The field to be used as the display text in the autocomplete.
|
|
36
|
+
* @memberof AutocompleteComponent
|
|
37
|
+
*/
|
|
38
|
+
textField: string;
|
|
39
|
+
/**
|
|
40
|
+
* @property valueField
|
|
41
|
+
* @description The field to be used as the value in the autocomplete.
|
|
42
|
+
* @memberof AutocompleteComponent
|
|
43
|
+
*/
|
|
44
|
+
valueField: string;
|
|
45
|
+
/**
|
|
46
|
+
* @property label
|
|
47
|
+
* @description The label for the autocomplete input.
|
|
48
|
+
* @memberof AutocompleteComponent
|
|
49
|
+
*/
|
|
50
|
+
label: string;
|
|
51
|
+
/**
|
|
52
|
+
* @property value
|
|
53
|
+
* @description The selected value(s) in the autocomplete.
|
|
54
|
+
* @memberof AutocompleteComponent
|
|
55
|
+
*/
|
|
56
|
+
set itemValue(v: any);
|
|
57
|
+
/**
|
|
58
|
+
* @property type
|
|
59
|
+
* @description The type of the autocomplete ('single', 'multi', etc.).
|
|
60
|
+
* @memberof AutocompleteComponent
|
|
61
|
+
*/
|
|
62
|
+
type: AutocompleteType;
|
|
63
|
+
/**
|
|
64
|
+
* @property minCharactersSearch
|
|
65
|
+
* @description The minimum characters to trigger search.
|
|
66
|
+
* @memberof AutocompleteComponent
|
|
67
|
+
*/
|
|
68
|
+
minCharactersSearch: number;
|
|
69
|
+
selectionChange: EventEmitter<any>;
|
|
70
|
+
searchTextChange: EventEmitter<string>;
|
|
71
|
+
matFormFieldElement: MatFormField;
|
|
72
|
+
tagContainer: ElementRef<HTMLElement>;
|
|
73
|
+
private readonly cdr;
|
|
74
|
+
protected value: any;
|
|
75
|
+
protected inputValue: any;
|
|
76
|
+
protected isInputFocus: boolean;
|
|
77
|
+
protected autocompleteType: typeof Autocomplete;
|
|
78
|
+
protected isOverLapping: boolean;
|
|
79
|
+
protected isOverlapChecking: boolean;
|
|
80
|
+
protected overlapIndex: number;
|
|
81
|
+
protected inputValueSearch$: ReplaySubject<string>;
|
|
82
|
+
protected filteredItemsList$: import("rxjs").Observable<any>;
|
|
83
|
+
protected filteredSuggestionList$: import("rxjs").Observable<any>;
|
|
84
|
+
protected searchResult$: import("rxjs").Observable<boolean>;
|
|
85
|
+
protected translationContext: string;
|
|
86
|
+
ngOnChanges(): void;
|
|
87
|
+
ngAfterViewInit(): void;
|
|
88
|
+
onChange: (_: any) => void;
|
|
89
|
+
onTouch: () => void;
|
|
90
|
+
registerOnChange(fn: any): void;
|
|
91
|
+
registerOnTouched(fn: any): void;
|
|
92
|
+
setDisabledState(isDisabled: boolean): void;
|
|
93
|
+
writeValue(value: any): void;
|
|
94
|
+
protected onOptionSelected(event: MatAutocompleteSelectedEvent): void;
|
|
95
|
+
protected onOptionRemoved(input: any, option: any): void;
|
|
96
|
+
protected onInputChange(event: Event): void;
|
|
97
|
+
protected onClear(): void;
|
|
98
|
+
protected refillInput(): void;
|
|
99
|
+
protected onFocus(): void;
|
|
100
|
+
private checkOverlap;
|
|
101
|
+
private onUpdate;
|
|
102
|
+
private initValue;
|
|
103
|
+
private addNewValue;
|
|
104
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
|
|
105
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "ui-autocomplete", never, { "itemsList": { "alias": "itemsList"; "required": false; }; "suggestionsList": { "alias": "suggestionsList"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "allowAdd": { "alias": "allowAdd"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "label": { "alias": "label"; "required": false; }; "itemValue": { "alias": "itemValue"; "required": false; }; "type": { "alias": "type"; "required": false; }; "minCharactersSearch": { "alias": "minCharactersSearch"; "required": false; }; }, { "selectionChange": "selectionChange"; "searchTextChange": "searchTextChange"; }, never, never, false, never>;
|
|
106
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./autocomplete.component";
|
|
3
|
+
import * as i2 from "./transform-Item.pipe";
|
|
4
|
+
import * as i3 from "./includes.pipe";
|
|
5
|
+
import * as i4 from "../../directives/select-text.directive";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
import * as i6 from "@angular/material/form-field";
|
|
8
|
+
import * as i7 from "@angular/material/autocomplete";
|
|
9
|
+
import * as i8 from "@angular/material/input";
|
|
10
|
+
import * as i9 from "@angular/forms";
|
|
11
|
+
import * as i10 from "../tag/tag.component.module";
|
|
12
|
+
import * as i11 from "@angular/material/chips";
|
|
13
|
+
import * as i12 from "../icon/icon.component.module";
|
|
14
|
+
import * as i13 from "@ngneat/transloco";
|
|
15
|
+
export declare class AutocompleteComponentModule {
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponentModule, never>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AutocompleteComponentModule, [typeof i1.AutocompleteComponent, typeof i2.TransformItemPipe, typeof i3.IncludesPipe, typeof i4.SelectTextDirective], [typeof i5.CommonModule, typeof i6.MatFormFieldModule, typeof i7.MatAutocompleteModule, typeof i8.MatInputModule, typeof i9.FormsModule, typeof i10.TagComponentModule, typeof i11.MatChipsModule, typeof i12.IconComponentModule, typeof i13.TranslocoModule], [typeof i1.AutocompleteComponent]>;
|
|
18
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AutocompleteComponentModule>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export type AutocompleteType = 'single' | 'multi' | 'large';
|
|
2
|
+
export declare enum Autocomplete {
|
|
3
|
+
SINGLE = "single",
|
|
4
|
+
MULTI = "multi",
|
|
5
|
+
LARGE = "large"
|
|
6
|
+
}
|
|
7
|
+
export declare enum Padding {
|
|
8
|
+
AUTOCOMPLETE_CONTAINER = 80
|
|
9
|
+
}
|
|
10
|
+
export declare enum Timeout {
|
|
11
|
+
VIEW_INITIALIZED_AFTER_ACTION = 20,
|
|
12
|
+
VIEW_INITIALIZED_COMPONENT_LOAD = 500
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* The purpose of this pipe is to determine if the value is present in the values array.
|
|
5
|
+
* If values is an array, the method uses the includes method to check for inclusion.
|
|
6
|
+
* If values is not an array, it checks for strict equality between value and values.
|
|
7
|
+
*/
|
|
8
|
+
export declare class IncludesPipe implements PipeTransform {
|
|
9
|
+
transform(value: any, values: any): boolean;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IncludesPipe, never>;
|
|
11
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<IncludesPipe, "includes", false>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* the TransformItemPipe is designed to selectively extract and return values from objects based on a specified field,
|
|
5
|
+
* providing a way to transform and display data a template.
|
|
6
|
+
*/
|
|
7
|
+
export declare class TransformItemPipe implements PipeTransform {
|
|
8
|
+
transform(value: any, field: string): any;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransformItemPipe, never>;
|
|
10
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TransformItemPipe, "transformItem", false>;
|
|
11
|
+
}
|
|
@@ -44,5 +44,5 @@ export declare class AvatarComponent {
|
|
|
44
44
|
protected onAvatarClick(): void;
|
|
45
45
|
get clickAllowance(): string;
|
|
46
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "ui-avatar", never, { "size": "size"; "imageUrl": "imageUrl"; "name": "name"; "tooltipText": "tooltipText"; "allowClick": "allowClick"; }, { "avatarClick": "avatarClick"; }, never, never, false, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "ui-avatar", never, { "size": { "alias": "size"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; "name": { "alias": "name"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "allowClick": { "alias": "allowClick"; "required": false; }; }, { "avatarClick": "avatarClick"; }, never, never, false, never>;
|
|
48
48
|
}
|
|
@@ -48,5 +48,5 @@ export declare class BannerActionComponent implements OnInit {
|
|
|
48
48
|
buttonClick(event: Event): void;
|
|
49
49
|
ngOnInit(): void;
|
|
50
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<BannerActionComponent, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BannerActionComponent, "ui-banner-action", never, { "message": "message"; "bannerActionType": "bannerActionType"; "buttonText": "buttonText"; "fixed": "fixed"; "fullWidth": "fullWidth"; "buttonIcon": "buttonIcon"; }, { "buttonClickEvent": "buttonClickEvent"; }, never, never, false, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BannerActionComponent, "ui-banner-action", never, { "message": { "alias": "message"; "required": false; }; "bannerActionType": { "alias": "bannerActionType"; "required": false; }; "buttonText": { "alias": "buttonText"; "required": false; }; "fixed": { "alias": "fixed"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "buttonIcon": { "alias": "buttonIcon"; "required": false; }; }, { "buttonClickEvent": "buttonClickEvent"; }, never, never, false, never>;
|
|
52
52
|
}
|
|
@@ -95,5 +95,5 @@ export declare class ButtonComponent implements OnInit {
|
|
|
95
95
|
showSpinner(): boolean;
|
|
96
96
|
showButtonLink(): boolean;
|
|
97
97
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
98
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "ui-button", never, { "size": "size"; "type": "type"; "label": "label"; "iconPosition": "iconPosition"; "justIcon": "justIcon"; "iconName": "iconName"; "disabled": "disabled"; "loading": "loading"; "fullWidth": "fullWidth"; "url": "url"; "urlTarget": "urlTarget"; "value": "value"; }, { "buttonClickEvent": "buttonClickEvent"; "buttonHoverEvent": "buttonHoverEvent"; }, never, never, false, never>;
|
|
98
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "ui-button", never, { "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "justIcon": { "alias": "justIcon"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "url": { "alias": "url"; "required": false; }; "urlTarget": { "alias": "urlTarget"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "buttonClickEvent": "buttonClickEvent"; "buttonHoverEvent": "buttonHoverEvent"; }, never, never, false, never>;
|
|
99
99
|
}
|
|
@@ -3,5 +3,5 @@ export declare class CardComponent {
|
|
|
3
3
|
title: string;
|
|
4
4
|
subTitle: string;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "ui-card", never, { "title": "title"; "subTitle": "subTitle"; }, {}, never, never, false, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "ui-card", never, { "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
7
|
}
|
|
@@ -83,5 +83,5 @@ export declare class CheckboxComponent implements OnInit, ControlValueAccessor {
|
|
|
83
83
|
registerOnTouched(fn: any): void;
|
|
84
84
|
setDisabledState(isDisabled: boolean): void;
|
|
85
85
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
86
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ui-checkbox", never, { "disabled": "disabled"; "checked": "checked"; "indeterminate": "indeterminate"; "color": "color"; "name": "name"; "label": "label"; "multiple": "multiple"; }, { "changed": "changed"; }, never, never, false, never>;
|
|
86
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ui-checkbox", never, { "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "color": { "alias": "color"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; }, { "changed": "changed"; }, never, never, false, never>;
|
|
87
87
|
}
|
|
@@ -71,5 +71,5 @@ export declare class CreateAccountComponent implements OnInit {
|
|
|
71
71
|
passwordErrorMessages: Record<string, string>;
|
|
72
72
|
checkErrors(field: string): void;
|
|
73
73
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreateAccountComponent, never>;
|
|
74
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CreateAccountComponent, "ui-create-account", never, { "email": "email"; "emailEditable": "emailEditable"; "termsOfusePath": "termsOfusePath"; "privacyPolicyPath": "privacyPolicyPath"; "formErrors": "formErrors"; "loading": "loading"; "i18n": "i18n"; }, { "submitEvent": "submitEvent"; "loginEvent": "loginEvent"; }, never, never, false, never>;
|
|
74
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CreateAccountComponent, "ui-create-account", never, { "email": { "alias": "email"; "required": false; }; "emailEditable": { "alias": "emailEditable"; "required": false; }; "termsOfusePath": { "alias": "termsOfusePath"; "required": false; }; "privacyPolicyPath": { "alias": "privacyPolicyPath"; "required": false; }; "formErrors": { "alias": "formErrors"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; }, { "submitEvent": "submitEvent"; "loginEvent": "loginEvent"; }, never, never, false, never>;
|
|
75
75
|
}
|
|
@@ -39,5 +39,5 @@ export declare class CreatePasswordComponent implements OnInit {
|
|
|
39
39
|
submit(): void;
|
|
40
40
|
checkErrors(field: string): void;
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreatePasswordComponent, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CreatePasswordComponent, "ui-create-password", never, { "formErrors": "formErrors"; "loading": "loading"; "i18n": "i18n"; }, { "submitEvent": "submitEvent"; }, never, never, false, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CreatePasswordComponent, "ui-create-password", never, { "formErrors": { "alias": "formErrors"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; }, { "submitEvent": "submitEvent"; }, never, never, false, never>;
|
|
43
43
|
}
|
|
@@ -113,5 +113,5 @@ export declare class DatepickerComponent implements OnChanges, ControlValueAcces
|
|
|
113
113
|
private setRange;
|
|
114
114
|
private getRange;
|
|
115
115
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerComponent, never>;
|
|
116
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "ui-datepicker", never, { "label": "label"; "fieldName": "fieldName"; "placeholder": "placeholder"; "id": "id"; "value": "value"; "errors": "errors"; "isRange": "isRange"; "disabled": "disabled"; "required": "required"; "hintMessage": "hintMessage"; "updateOnBlur": "updateOnBlur"; }, { "changed": "changed"; }, never, never, false, never>;
|
|
116
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "ui-datepicker", never, { "label": { "alias": "label"; "required": false; }; "fieldName": { "alias": "fieldName"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "id": { "alias": "id"; "required": false; }; "value": { "alias": "value"; "required": false; }; "errors": { "alias": "errors"; "required": false; }; "isRange": { "alias": "isRange"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "hintMessage": { "alias": "hintMessage"; "required": false; }; "updateOnBlur": { "alias": "updateOnBlur"; "required": false; }; }, { "changed": "changed"; }, never, never, false, never>;
|
|
117
117
|
}
|
|
@@ -59,5 +59,5 @@ export declare class DialogComponent implements OnInit, OnChanges {
|
|
|
59
59
|
onSecondaryButtonClick(event: Event): void;
|
|
60
60
|
onPrimaryButtonClick(event: Event): void;
|
|
61
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogComponent, never>;
|
|
62
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "ui-dialog", never, { "title": "title"; "showCloseButton": "showCloseButton"; "canCloseFn": "canCloseFn"; "secondaryButtonLabel": "secondaryButtonLabel"; "primaryButtonLabel": "primaryButtonLabel"; "secondaryButtonType": "secondaryButtonType"; "primaryButtonType": "primaryButtonType"; }, { "closeEvent": "closeEvent"; "secondaryButtonClickEvent": "secondaryButtonClickEvent"; "primaryButtonClickEvent": "primaryButtonClickEvent"; }, never, ["*"], false, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "ui-dialog", never, { "title": { "alias": "title"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "canCloseFn": { "alias": "canCloseFn"; "required": false; }; "secondaryButtonLabel": { "alias": "secondaryButtonLabel"; "required": false; }; "primaryButtonLabel": { "alias": "primaryButtonLabel"; "required": false; }; "secondaryButtonType": { "alias": "secondaryButtonType"; "required": false; }; "primaryButtonType": { "alias": "primaryButtonType"; "required": false; }; }, { "closeEvent": "closeEvent"; "secondaryButtonClickEvent": "secondaryButtonClickEvent"; "primaryButtonClickEvent": "primaryButtonClickEvent"; }, never, ["*"], false, never>;
|
|
63
63
|
}
|
|
@@ -108,5 +108,5 @@ export declare class DropdownComponent implements OnInit, ControlValueAccessor {
|
|
|
108
108
|
registerOnTouched(fn: any): void;
|
|
109
109
|
setDisabledState(isDisabled: boolean): void;
|
|
110
110
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
111
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "ui-dropdown", never, { "label": "label"; "name": "name"; "placeholder": "placeholder"; "id": "id"; "value": "value"; "errors": "errors"; "disabled": "disabled"; "valueList": "valueList"; "allowClear": "allowClear"; "allowMultipleSelection": "allowMultipleSelection"; "required": "required"; }, {}, never, never, false, never>;
|
|
111
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "ui-dropdown", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "id": { "alias": "id"; "required": false; }; "value": { "alias": "value"; "required": false; }; "errors": { "alias": "errors"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "valueList": { "alias": "valueList"; "required": false; }; "allowClear": { "alias": "allowClear"; "required": false; }; "allowMultipleSelection": { "alias": "allowMultipleSelection"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, {}, never, never, false, never>;
|
|
112
112
|
}
|
|
@@ -10,5 +10,5 @@ export declare class ElevationShadowComponent {
|
|
|
10
10
|
*/
|
|
11
11
|
elevationType: ElevationType;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElevationShadowComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ElevationShadowComponent, "ui-elevation-shadow", never, { "elevationType": "elevationType"; }, {}, never, ["*"], false, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElevationShadowComponent, "ui-elevation-shadow", never, { "elevationType": { "alias": "elevationType"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
14
14
|
}
|
|
@@ -116,5 +116,5 @@ export declare class FieldComponent implements OnInit, ControlValueAccessor {
|
|
|
116
116
|
registerOnTouched(fn: any): void;
|
|
117
117
|
setDisabledState(isDisabled: boolean): void;
|
|
118
118
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldComponent, never>;
|
|
119
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldComponent, "ui-field", never, { "label": "label"; "fieldName": "fieldName"; "placeholder": "placeholder"; "id": "id"; "value": "value"; "errors": "errors"; "disabled": "disabled"; "required": "required"; "hintMessage": "hintMessage"; "type": "type"; "updateOnBlur": "updateOnBlur"; "allowOnlyDigits": "allowOnlyDigits"; }, {}, never, never, false, never>;
|
|
119
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldComponent, "ui-field", never, { "label": { "alias": "label"; "required": false; }; "fieldName": { "alias": "fieldName"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "id": { "alias": "id"; "required": false; }; "value": { "alias": "value"; "required": false; }; "errors": { "alias": "errors"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "hintMessage": { "alias": "hintMessage"; "required": false; }; "type": { "alias": "type"; "required": false; }; "updateOnBlur": { "alias": "updateOnBlur"; "required": false; }; "allowOnlyDigits": { "alias": "allowOnlyDigits"; "required": false; }; }, {}, never, never, false, never>;
|
|
120
120
|
}
|
|
@@ -70,5 +70,5 @@ export declare class FileUploadComponent implements OnInit, OnChanges, ControlVa
|
|
|
70
70
|
registerOnTouched(fn: any): void;
|
|
71
71
|
setDisabledState(isDisabled: boolean): void;
|
|
72
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
|
|
73
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ui-file-upload", never, { "maxFileSizeMB": "maxFileSizeMB"; "supportedFileTypes": "supportedFileTypes"; "uploadProgress": "uploadProgress"; "errors": "errors"; "disabled": "disabled"; "file": "file"; }, { "OnDrop": "OnDrop"; }, never, never, false, never>;
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ui-file-upload", never, { "maxFileSizeMB": { "alias": "maxFileSizeMB"; "required": false; }; "supportedFileTypes": { "alias": "supportedFileTypes"; "required": false; }; "uploadProgress": { "alias": "uploadProgress"; "required": false; }; "errors": { "alias": "errors"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "file": { "alias": "file"; "required": false; }; }, { "OnDrop": "OnDrop"; }, never, never, false, never>;
|
|
74
74
|
}
|
|
@@ -44,5 +44,5 @@ export declare class ForgotPasswordComponent implements OnInit {
|
|
|
44
44
|
backToLogin(): void;
|
|
45
45
|
checkErrors(field: string): void;
|
|
46
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "ui-forgot-password", never, { "formErrors": "formErrors"; "loading": "loading"; "i18n": "i18n"; }, { "submitEvent": "submitEvent"; "backToLoginEvent": "backToLoginEvent"; }, never, never, false, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "ui-forgot-password", never, { "formErrors": { "alias": "formErrors"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; }, { "submitEvent": "submitEvent"; "backToLoginEvent": "backToLoginEvent"; }, never, never, false, never>;
|
|
48
48
|
}
|
|
@@ -40,5 +40,5 @@ export declare class IconComponent implements OnInit {
|
|
|
40
40
|
setCssClass(): string;
|
|
41
41
|
addIcon(): void;
|
|
42
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "ui-icon", never, { "size": "size"; "cssClass": "cssClass"; "name": "name"; "color": "color"; }, {}, never, never, false, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "ui-icon", never, { "size": { "alias": "size"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>;
|
|
44
44
|
}
|
|
@@ -25,5 +25,5 @@ export declare class IconLabelComponent implements OnInit {
|
|
|
25
25
|
constructor();
|
|
26
26
|
ngOnInit(): void;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconLabelComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconLabelComponent, "ui-icon-label", never, { "iconSize": "iconSize"; "iconName": "iconName"; "text": "text"; }, {}, never, never, false, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconLabelComponent, "ui-icon-label", never, { "iconSize": { "alias": "iconSize"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, never, false, never>;
|
|
29
29
|
}
|
|
@@ -42,5 +42,5 @@ export declare class LabelComponent {
|
|
|
42
42
|
size: LabelSizeEnum;
|
|
43
43
|
constructor();
|
|
44
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "ui-label", never, { "backgroundColor": "backgroundColor"; "textColor": "textColor"; "title": "title"; "description": "description"; "size": "size"; }, {}, never, never, false, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "ui-label", never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
|
|
46
46
|
}
|
|
@@ -53,5 +53,5 @@ export declare class LoginComponent implements OnInit {
|
|
|
53
53
|
createAccount(): void;
|
|
54
54
|
checkErrors(field: string): void;
|
|
55
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
|
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "ui-login", never, { "email": "email"; "loading": "loading"; "i18n": "i18n"; }, { "submitEvent": "submitEvent"; "forgotPasswordEvent": "forgotPasswordEvent"; "createAccountEvent": "createAccountEvent"; }, never, never, false, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "ui-login", never, { "email": { "alias": "email"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; }, { "submitEvent": "submitEvent"; "forgotPasswordEvent": "forgotPasswordEvent"; "createAccountEvent": "createAccountEvent"; }, never, never, false, never>;
|
|
57
57
|
}
|
|
@@ -25,5 +25,5 @@ export declare class LogoComponent {
|
|
|
25
25
|
*/
|
|
26
26
|
ngOnChanges(): void;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<LogoComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LogoComponent, "ui-logo", never, { "type": "type"; }, {}, never, never, false, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LogoComponent, "ui-logo", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
|
|
29
29
|
}
|
|
@@ -48,5 +48,5 @@ export declare class NavbarComponent {
|
|
|
48
48
|
logout(): void;
|
|
49
49
|
clickMenuItem(id: string): void;
|
|
50
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarComponent, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "ui-navbar", never, { "routes": "routes"; "activedRoute": "activedRoute"; "userName": "userName"; "menuItems": "menuItems"; }, { "navigateEvent": "navigateEvent"; "menuItemClicked": "menuItemClicked"; "logoutEvent": "logoutEvent"; }, never, never, false, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "ui-navbar", never, { "routes": { "alias": "routes"; "required": false; }; "activedRoute": { "alias": "activedRoute"; "required": false; }; "userName": { "alias": "userName"; "required": false; }; "menuItems": { "alias": "menuItems"; "required": false; }; }, { "navigateEvent": "navigateEvent"; "menuItemClicked": "menuItemClicked"; "logoutEvent": "logoutEvent"; }, never, never, false, never>;
|
|
52
52
|
}
|
|
@@ -37,5 +37,5 @@ export declare class NavigationComponent {
|
|
|
37
37
|
constructor();
|
|
38
38
|
goBackClicked(): void;
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationComponent, "ui-navigation", never, { "title": "title"; "subtitle": "subtitle"; "labelItem": "labelItem"; "logoURL": "logoURL"; }, { "goBackClickedEvent": "goBackClickedEvent"; }, never, never, false, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationComponent, "ui-navigation", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "labelItem": { "alias": "labelItem"; "required": false; }; "logoURL": { "alias": "logoURL"; "required": false; }; }, { "goBackClickedEvent": "goBackClickedEvent"; }, never, never, false, never>;
|
|
41
41
|
}
|
|
@@ -34,5 +34,5 @@ export declare class PaginatorComponent implements OnInit {
|
|
|
34
34
|
constructor();
|
|
35
35
|
paginatorChanged(paginator: PageEvent): void;
|
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaginatorComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorComponent, "ui-paginator", never, { "length": "length"; "defaultPageSize": "defaultPageSize"; }, { "paginatorChangedEvent": "paginatorChangedEvent"; }, never, never, false, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorComponent, "ui-paginator", never, { "length": { "alias": "length"; "required": false; }; "defaultPageSize": { "alias": "defaultPageSize"; "required": false; }; }, { "paginatorChangedEvent": "paginatorChangedEvent"; }, never, never, false, never>;
|
|
38
38
|
}
|
|
@@ -36,5 +36,5 @@ export declare class ProgressBarComponent {
|
|
|
36
36
|
buffer: number;
|
|
37
37
|
constructor();
|
|
38
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "ui-progress-bar", never, { "color": "color"; "progress": "progress"; "mode": "mode"; "buffer": "buffer"; }, {}, never, never, false, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "ui-progress-bar", never, { "color": { "alias": "color"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "buffer": { "alias": "buffer"; "required": false; }; }, {}, never, never, false, never>;
|
|
40
40
|
}
|
|
@@ -80,5 +80,5 @@ export declare class RadioButtonComponent implements OnInit, OnChanges {
|
|
|
80
80
|
clickRadio(element: MatRadioButton, event: MouseEvent): void;
|
|
81
81
|
setClass(): string;
|
|
82
82
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>;
|
|
83
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "ui-radio-button", never, { "disabled": "disabled"; "selected": "selected"; "allowUnselect": "allowUnselect"; "color": "color"; "name": "name"; "label": "label"; "multiple": "multiple"; "value": "value"; }, { "changeRadio": "changeRadio"; }, never, never, false, never>;
|
|
83
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "ui-radio-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "allowUnselect": { "alias": "allowUnselect"; "required": false; }; "color": { "alias": "color"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "changeRadio": "changeRadio"; }, never, never, false, never>;
|
|
84
84
|
}
|
|
@@ -15,5 +15,5 @@ export declare class RatingComponent {
|
|
|
15
15
|
select(index: number): void;
|
|
16
16
|
onHover(index: number): void;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<RatingComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RatingComponent, "ui-rating", never, { "value": "value"; "theme": "theme"; "barWidth": "barWidth"; "length": "length"; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RatingComponent, "ui-rating", never, { "value": { "alias": "value"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "barWidth": { "alias": "barWidth"; "required": false; }; "length": { "alias": "length"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
19
19
|
}
|
|
@@ -64,5 +64,5 @@ export declare class SnackbarComponent implements OnInit {
|
|
|
64
64
|
onMouseLeave(): void;
|
|
65
65
|
dismissClick(): void;
|
|
66
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<SnackbarComponent, never>;
|
|
67
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SnackbarComponent, "ui-snackbar", never, { "snackbarType": "snackbarType"; "message": "message"; "seconds": "seconds"; "includeDismissButton": "includeDismissButton"; "fixed": "fixed"; "language": "language"; }, {}, never, never, false, never>;
|
|
67
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SnackbarComponent, "ui-snackbar", never, { "snackbarType": { "alias": "snackbarType"; "required": false; }; "message": { "alias": "message"; "required": false; }; "seconds": { "alias": "seconds"; "required": false; }; "includeDismissButton": { "alias": "includeDismissButton"; "required": false; }; "fixed": { "alias": "fixed"; "required": false; }; "language": { "alias": "language"; "required": false; }; }, {}, never, never, false, never>;
|
|
68
68
|
}
|
|
@@ -9,5 +9,5 @@ export declare class DynamicComponentDirective implements OnDestroy {
|
|
|
9
9
|
constructor(vcr: ViewContainerRef);
|
|
10
10
|
ngOnDestroy(): void;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentDirective, never>;
|
|
12
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentDirective, "[dynamicComponent]", never, { "dynamicComponent": "dynamicComponent"; }, {}, never, never, false, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentDirective, "[dynamicComponent]", never, { "dynamicComponent": { "alias": "dynamicComponent"; "required": false; }; }, {}, never, never, false, never>;
|
|
13
13
|
}
|
|
@@ -87,5 +87,5 @@ export declare class TableComponent<T extends IDataSource, TDetail extends IData
|
|
|
87
87
|
*/
|
|
88
88
|
private setTableDetailDataSource;
|
|
89
89
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent<any, any>, never>;
|
|
90
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent<any, any>, "ui-table", never, { "tableDetails": "tableDetails"; "tableData": "tableData"; "tableColumns": "tableColumns"; "tableDetailColumns": "tableDetailColumns"; }, { "onSortEvent": "onSortEvent"; "onRowClickEvent": "onRowClickEvent"; "onDetailRowClickEvent": "onDetailRowClickEvent"; }, never, never, false, never>;
|
|
90
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent<any, any>, "ui-table", never, { "tableDetails": { "alias": "tableDetails"; "required": false; }; "tableData": { "alias": "tableData"; "required": false; }; "tableColumns": { "alias": "tableColumns"; "required": false; }; "tableDetailColumns": { "alias": "tableDetailColumns"; "required": false; }; }, { "onSortEvent": "onSortEvent"; "onRowClickEvent": "onRowClickEvent"; "onDetailRowClickEvent": "onDetailRowClickEvent"; }, never, never, false, never>;
|
|
91
91
|
}
|
|
@@ -93,5 +93,5 @@ export declare class TagComponent implements AfterViewInit {
|
|
|
93
93
|
get tabIndex(): number;
|
|
94
94
|
get filled(): boolean;
|
|
95
95
|
static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
|
|
96
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "ui-tag", never, { "label": "label"; "icon": "icon"; "allowClose": "allowClose"; "readOnly": "readOnly"; "isSelected": "isSelected"; "showIconWhenSelected": "showIconWhenSelected"; "isDisabled": "isDisabled"; }, { "close": "close"; "press": "press"; }, never, never, false, never>;
|
|
96
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "ui-tag", never, { "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "allowClose": { "alias": "allowClose"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "isSelected": { "alias": "isSelected"; "required": false; }; "showIconWhenSelected": { "alias": "showIconWhenSelected"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, { "close": "close"; "press": "press"; }, never, never, false, never>;
|
|
97
97
|
}
|
|
@@ -34,5 +34,5 @@ export declare class ToggleComponent implements ControlValueAccessor {
|
|
|
34
34
|
private onChange;
|
|
35
35
|
private onTouched;
|
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "ui-toggle", never, { "selected": "selected"; "disabled": "disabled"; }, { "toggle": "toggle"; }, never, never, false, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "ui-toggle", never, { "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "toggle": "toggle"; }, never, never, false, never>;
|
|
38
38
|
}
|
|
@@ -21,5 +21,5 @@ export declare class TooltipComponent implements OnInit {
|
|
|
21
21
|
ngOnInit(): void;
|
|
22
22
|
setPosition(): void;
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "ui-tooltip", never, { "position": "position"; "message": "message"; }, {}, never, ["*"], false, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "ui-tooltip", never, { "position": { "alias": "position"; "required": false; }; "message": { "alias": "message"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
25
25
|
}
|
|
@@ -11,5 +11,5 @@ export declare class DigitsOnlyDirective {
|
|
|
11
11
|
onPaste(event: Event): void;
|
|
12
12
|
validate(event: Event, text: string): void;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<DigitsOnlyDirective, never>;
|
|
14
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DigitsOnlyDirective, "[digitsOnly]", never, { "allowNegative": "allowNegative"; "allowDecimal": "allowDecimal"; "allowOnlyDigits": "allowOnlyDigits"; }, {}, never, never, false, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DigitsOnlyDirective, "[digitsOnly]", never, { "allowNegative": { "alias": "allowNegative"; "required": false; }; "allowDecimal": { "alias": "allowDecimal"; "required": false; }; "allowOnlyDigits": { "alias": "allowOnlyDigits"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
15
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ElementRef, OnChanges } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* the SelectTextDirective provides a dynamic way to highlight or style specific text within an element.
|
|
5
|
+
*/
|
|
6
|
+
export declare class SelectTextDirective implements OnChanges {
|
|
7
|
+
private el;
|
|
8
|
+
selectText: string;
|
|
9
|
+
constructor(el: ElementRef);
|
|
10
|
+
/**
|
|
11
|
+
* this method utilizes setTimeout to defer the execution until the next tick of the event loop.
|
|
12
|
+
* The text content of the element is modified by wrapping occurrences of the specified selectText with a <span> element,
|
|
13
|
+
* applying a bold font-weight style.
|
|
14
|
+
*/
|
|
15
|
+
private setTextColor;
|
|
16
|
+
ngOnChanges(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectTextDirective, never>;
|
|
18
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectTextDirective, "[selectText]", never, { "selectText": { "alias": "selectText"; "required": false; }; }, {}, never, never, false, never>;
|
|
19
|
+
}
|