ui-core-abv 0.1.82 → 0.1.91
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/fesm2022/ui-core-abv.mjs +208 -80
- package/fesm2022/ui-core-abv.mjs.map +1 -1
- package/lib/components/dynamic-form/form/dynamic-form.component.d.ts +2 -0
- package/lib/components/dynamic-form/form-wrapper/form-wrapper.component.d.ts +8 -3
- package/lib/components/dynamic-form/form.models.d.ts +16 -11
- package/lib/components/inputs/checkbox/checkbox.component.d.ts +1 -1
- package/lib/components/inputs/date-picker/date-picker.component.d.ts +2 -1
- package/lib/components/inputs/file-input/file-input.component.d.ts +2 -1
- package/lib/components/inputs/input/input.component.d.ts +2 -1
- package/lib/components/inputs/input-wrapper/input-wrapper.component.d.ts +12 -0
- package/lib/components/inputs/multy-select/multy-select.component.d.ts +3 -1
- package/lib/components/inputs/phone-input/phone-input.component.d.ts +2 -1
- package/lib/components/inputs/select/select.component.d.ts +2 -1
- package/lib/components/inputs/time-picker/time-picker.component.d.ts +3 -1
- package/lib/components/table/table.component.d.ts +1 -1
- package/lib/components/table/table.models.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { FormGroup } from '@angular/forms';
|
|
2
2
|
import { FormField } from '../form.models';
|
|
3
|
+
import { ButtonColor } from '../../button/button.component';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class UicDynamicFormComponent {
|
|
5
6
|
fields: FormField[];
|
|
@@ -9,6 +10,7 @@ export declare class UicDynamicFormComponent {
|
|
|
9
10
|
cols: number;
|
|
10
11
|
getErrorMessages(field: FormField): string[];
|
|
11
12
|
private readonly errorMessages;
|
|
13
|
+
getInputColor(field: FormField, value: string): ButtonColor;
|
|
12
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicDynamicFormComponent, never>;
|
|
13
15
|
static ɵcmp: i0.ɵɵComponentDeclaration<UicDynamicFormComponent, "ui-dynamic-form", never, { "fields": { "alias": "fields"; "required": false; }; "form": { "alias": "form"; "required": true; }; "disabled": { "alias": "disabled"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
16
|
}
|
|
@@ -11,6 +11,7 @@ export declare class UicFormWrapperComponent implements OnChanges {
|
|
|
11
11
|
externalData: Record<string, AppSelectOption[]>;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
disabled: boolean;
|
|
14
|
+
showButtons: boolean;
|
|
14
15
|
initialValues: Record<string, any>;
|
|
15
16
|
formSubmit: EventEmitter<FormResult>;
|
|
16
17
|
formChange: EventEmitter<any>;
|
|
@@ -29,11 +30,15 @@ export declare class UicFormWrapperComponent implements OnChanges {
|
|
|
29
30
|
updateFieldValue(name: string, value: any): void;
|
|
30
31
|
updateFieldDisabled(name: string, disabled: boolean): void;
|
|
31
32
|
updateFieldLoading(name: string, loading: boolean): void;
|
|
32
|
-
|
|
33
|
+
submit(): void;
|
|
34
|
+
clean(hardReset?: boolean): void;
|
|
33
35
|
addFieldControl(field: FormField, after?: string): void;
|
|
36
|
+
removeFieldControl(name: string): void;
|
|
37
|
+
private resolveResetValue;
|
|
38
|
+
private blankValue;
|
|
34
39
|
private newFieldInitialValue;
|
|
35
40
|
private insertField;
|
|
36
|
-
|
|
41
|
+
private updateSchemaField;
|
|
37
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicFormWrapperComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicFormWrapperComponent, "ui-form-wrapper", never, { "schema": { "alias": "schema"; "required": false; }; "externalData": { "alias": "externalData"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "initialValues": { "alias": "initialValues"; "required": false; }; }, { "formSubmit": "formSubmit"; "formChange": "formChange"; }, never, never, true, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicFormWrapperComponent, "ui-form-wrapper", never, { "schema": { "alias": "schema"; "required": false; }; "externalData": { "alias": "externalData"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showButtons": { "alias": "showButtons"; "required": false; }; "initialValues": { "alias": "initialValues"; "required": false; }; }, { "formSubmit": "formSubmit"; "formChange": "formChange"; }, never, never, true, never>;
|
|
39
44
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Observable } from "rxjs";
|
|
2
2
|
import { AppSelectOption } from "../inputs/select/select.component";
|
|
3
|
+
import { ButtonColor } from "../button/button.component";
|
|
3
4
|
export interface FormStep {
|
|
4
5
|
title: string;
|
|
5
6
|
form: FormSchema;
|
|
@@ -16,39 +17,43 @@ export interface FormBlock {
|
|
|
16
17
|
fields: FormField[];
|
|
17
18
|
}
|
|
18
19
|
export interface FormField {
|
|
19
|
-
type: FieldType;
|
|
20
20
|
name: string;
|
|
21
|
-
|
|
21
|
+
type: FieldType;
|
|
22
|
+
label?: string;
|
|
22
23
|
icon?: string;
|
|
24
|
+
iconColor?: ButtonColor;
|
|
23
25
|
disabled?: boolean;
|
|
24
26
|
loading?: boolean;
|
|
25
27
|
tooltip?: string;
|
|
26
28
|
tip?: string;
|
|
27
29
|
colSpan?: number;
|
|
28
30
|
newLine?: boolean;
|
|
29
|
-
description?: string;
|
|
30
|
-
placeholder?: string;
|
|
31
31
|
required?: boolean;
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
internalIcon?: string;
|
|
33
|
+
internalIconColor?: ButtonColor;
|
|
34
|
+
internalColorScale?: number[];
|
|
35
|
+
internalColorScaleOrder?: 'asc' | 'desc';
|
|
36
|
+
placeholder?: string;
|
|
36
37
|
minLength?: number;
|
|
37
38
|
maxLength?: number;
|
|
38
39
|
showCounter?: boolean;
|
|
40
|
+
min?: number;
|
|
41
|
+
max?: number;
|
|
42
|
+
step?: number;
|
|
43
|
+
sliderInterval?: number;
|
|
44
|
+
sliderMarks?: number;
|
|
39
45
|
monthMode?: boolean;
|
|
40
46
|
monthDay?: 'first' | 'last';
|
|
47
|
+
timeInterval?: number;
|
|
41
48
|
fileTypes?: string[] | string;
|
|
42
49
|
poolEnabledListView?: boolean;
|
|
43
50
|
poolTitle?: string;
|
|
44
|
-
sliderInterval?: number;
|
|
45
|
-
sliderMarks?: number;
|
|
46
|
-
pattern?: RegExp;
|
|
47
51
|
options?: AppSelectOption[];
|
|
48
52
|
multyEnabled?: boolean;
|
|
49
53
|
searchFn?: (query: string) => Observable<any[]>;
|
|
50
54
|
searchDisplayFn?: (item: any) => string;
|
|
51
55
|
searchIsEnabledFn?: (item: any) => boolean;
|
|
56
|
+
pattern?: RegExp;
|
|
52
57
|
}
|
|
53
58
|
export type FieldType = 'text' | 'number' | 'phone' | 'date' | 'time' | 'select' | 'checkbox' | 'switch' | 'textarea' | 'pool' | 'file' | 'multyselect' | 'searcher' | 'slider';
|
|
54
59
|
export interface FormResult {
|
|
@@ -18,6 +18,7 @@ export declare class UicDatePickerComponent extends base {
|
|
|
18
18
|
icon: string;
|
|
19
19
|
iconColor: ButtonColor;
|
|
20
20
|
internalIcon: string;
|
|
21
|
+
internalIconColor: ButtonColor;
|
|
21
22
|
disabled: boolean;
|
|
22
23
|
label: string;
|
|
23
24
|
error: string;
|
|
@@ -80,6 +81,6 @@ export declare class UicDatePickerComponent extends base {
|
|
|
80
81
|
isMonthDisabled(monthIndex: number): boolean;
|
|
81
82
|
isSelectedMonth(monthIndex: number): boolean;
|
|
82
83
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicDatePickerComponent, never>;
|
|
83
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicDatePickerComponent, "ui-date-picker", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "justMonth": { "alias": "justMonth"; "required": false; }; "monthDay": { "alias": "monthDay"; "required": false; }; }, {}, never, never, true, never>;
|
|
84
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicDatePickerComponent, "ui-date-picker", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "internalIconColor": { "alias": "internalIconColor"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "justMonth": { "alias": "justMonth"; "required": false; }; "monthDay": { "alias": "monthDay"; "required": false; }; }, {}, never, never, true, never>;
|
|
84
85
|
}
|
|
85
86
|
export {};
|
|
@@ -19,6 +19,7 @@ export declare class UicFileInputComponent extends base {
|
|
|
19
19
|
icon: string;
|
|
20
20
|
iconColor: ButtonColor;
|
|
21
21
|
internalIcon: string;
|
|
22
|
+
internalIconColor: ButtonColor;
|
|
22
23
|
size: 's' | 'm' | 'l';
|
|
23
24
|
label: string;
|
|
24
25
|
error: string;
|
|
@@ -48,6 +49,6 @@ export declare class UicFileInputComponent extends base {
|
|
|
48
49
|
private isExcelType;
|
|
49
50
|
private isWordType;
|
|
50
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicFileInputComponent, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicFileInputComponent, "ui-file-input", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "multy": { "alias": "multy"; "required": false; }; "fileTypes": { "alias": "fileTypes"; "required": false; }; }, {}, never,
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicFileInputComponent, "ui-file-input", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "internalIconColor": { "alias": "internalIconColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "multy": { "alias": "multy"; "required": false; }; "fileTypes": { "alias": "fileTypes"; "required": false; }; }, {}, never, never, true, never>;
|
|
52
53
|
}
|
|
53
54
|
export {};
|
|
@@ -5,6 +5,7 @@ export declare class UicInputComponent {
|
|
|
5
5
|
icon: string;
|
|
6
6
|
iconColor: ButtonColor;
|
|
7
7
|
internalIcon: string;
|
|
8
|
+
internalIconColor: ButtonColor;
|
|
8
9
|
size: 's' | 'm' | 'l';
|
|
9
10
|
label: string;
|
|
10
11
|
error: string;
|
|
@@ -15,5 +16,5 @@ export declare class UicInputComponent {
|
|
|
15
16
|
disableBtn: boolean;
|
|
16
17
|
disableButton(): void;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicInputComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicInputComponent, "ui-input", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "clickButton": "clickButton"; }, never, ["*", "[counter]"], true, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicInputComponent, "ui-input", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "internalIconColor": { "alias": "internalIconColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "clickButton": "clickButton"; }, never, ["*", "[counter]"], true, never>;
|
|
19
20
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ButtonColor } from '../../button/button.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class InputWrapperComponent {
|
|
4
|
+
icon: string;
|
|
5
|
+
iconColor: ButtonColor;
|
|
6
|
+
label: string;
|
|
7
|
+
error: string;
|
|
8
|
+
tip: string;
|
|
9
|
+
disabled: boolean;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputWrapperComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputWrapperComponent, "ui-input-wrapper", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
12
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
2
|
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
3
3
|
import { AppSelectOption } from '../select/select.component';
|
|
4
|
+
import { ButtonColor } from '../../button/button.component';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
type selectId = (number | string)[];
|
|
6
7
|
declare const base: abstract new () => {
|
|
@@ -18,6 +19,7 @@ export declare class UicMultySelectComponent extends base {
|
|
|
18
19
|
icon: string;
|
|
19
20
|
iconColor: 'primary' | 'secondary';
|
|
20
21
|
internalIcon: string;
|
|
22
|
+
internalIconColor: ButtonColor;
|
|
21
23
|
size: 's' | 'm' | 'l';
|
|
22
24
|
label: string;
|
|
23
25
|
error: string;
|
|
@@ -44,6 +46,6 @@ export declare class UicMultySelectComponent extends base {
|
|
|
44
46
|
closeList(): void;
|
|
45
47
|
writeValue(value: (string | number)[]): void;
|
|
46
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicMultySelectComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicMultySelectComponent, "ui-multy-select", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "showSubtitle": { "alias": "showSubtitle"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicMultySelectComponent, "ui-multy-select", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "internalIconColor": { "alias": "internalIconColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "showSubtitle": { "alias": "showSubtitle"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
48
50
|
}
|
|
49
51
|
export {};
|
|
@@ -24,6 +24,7 @@ export declare class UicPhoneInputComponent extends base implements OnChanges, O
|
|
|
24
24
|
icon: string;
|
|
25
25
|
iconColor: ButtonColor;
|
|
26
26
|
internalIcon: string;
|
|
27
|
+
internalIconColor: ButtonColor;
|
|
27
28
|
size: 's' | 'm' | 'l';
|
|
28
29
|
label: string;
|
|
29
30
|
error: string;
|
|
@@ -67,6 +68,6 @@ export declare class UicPhoneInputComponent extends base implements OnChanges, O
|
|
|
67
68
|
private resetCountryLists;
|
|
68
69
|
private getDefaultCountry;
|
|
69
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicPhoneInputComponent, never>;
|
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicPhoneInputComponent, "ui-phone-input", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "preferredCountries": { "alias": "preferredCountries"; "required": false; }; "flagPath": { "alias": "flagPath"; "required": false; }; "countries": { "alias": "countries"; "required": false; }; }, {}, never, never, true, never>;
|
|
71
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicPhoneInputComponent, "ui-phone-input", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "internalIconColor": { "alias": "internalIconColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "preferredCountries": { "alias": "preferredCountries"; "required": false; }; "flagPath": { "alias": "flagPath"; "required": false; }; "countries": { "alias": "countries"; "required": false; }; }, {}, never, never, true, never>;
|
|
71
72
|
}
|
|
72
73
|
export {};
|
|
@@ -18,6 +18,7 @@ export declare class UicSelectComponent extends base {
|
|
|
18
18
|
icon: string;
|
|
19
19
|
iconColor: ButtonColor;
|
|
20
20
|
internalIcon: string;
|
|
21
|
+
internalIconColor: ButtonColor;
|
|
21
22
|
size: 's' | 'm' | 'l';
|
|
22
23
|
label: string;
|
|
23
24
|
error: string;
|
|
@@ -41,7 +42,7 @@ export declare class UicSelectComponent extends base {
|
|
|
41
42
|
closeList(): void;
|
|
42
43
|
writeValue(value: string | number | null): void;
|
|
43
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicSelectComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicSelectComponent, "ui-select", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "showSubtitle": { "alias": "showSubtitle"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "nullable": { "alias": "nullable"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicSelectComponent, "ui-select", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "internalIconColor": { "alias": "internalIconColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "showSubtitle": { "alias": "showSubtitle"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "nullable": { "alias": "nullable"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
45
46
|
}
|
|
46
47
|
export interface AppSelectOption {
|
|
47
48
|
id?: string | number | null;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementRef, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
2
|
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
3
|
+
import { ButtonColor } from '../../button/button.component';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
declare const base: abstract new () => {
|
|
5
6
|
value: string;
|
|
@@ -16,6 +17,7 @@ export declare class UicTimePickerComponent extends base {
|
|
|
16
17
|
icon: string;
|
|
17
18
|
iconColor: 'primary' | 'secondary';
|
|
18
19
|
internalIcon: string;
|
|
20
|
+
internalIconColor: ButtonColor;
|
|
19
21
|
disabled: boolean;
|
|
20
22
|
label: string;
|
|
21
23
|
error: string;
|
|
@@ -60,6 +62,6 @@ export declare class UicTimePickerComponent extends base {
|
|
|
60
62
|
private scrollToSelection;
|
|
61
63
|
private scrollColumn;
|
|
62
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicTimePickerComponent, never>;
|
|
63
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicTimePickerComponent, "ui-time-picker", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "interval": { "alias": "interval"; "required": false; }; }, {}, never, never, true, never>;
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicTimePickerComponent, "ui-time-picker", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "internalIconColor": { "alias": "internalIconColor"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "interval": { "alias": "interval"; "required": false; }; }, {}, never, never, true, never>;
|
|
64
66
|
}
|
|
65
67
|
export {};
|
|
@@ -35,7 +35,7 @@ export declare class UicTableComponent {
|
|
|
35
35
|
getFontColor(data: TableRowData[], key: string): string;
|
|
36
36
|
getBackgroundColor(data: TableRowData[], key: string): import("ui-core-abv").BackgroundColors;
|
|
37
37
|
isValidRule(data: TableRowData[], key: string[] | undefined): boolean;
|
|
38
|
-
getIcon(data: TableRowData[], key: string): string;
|
|
38
|
+
getIcon(data: TableRowData[], key: string): string | null;
|
|
39
39
|
getList(data: TableRowData[], key: string): import("ui-core-abv").TableList[];
|
|
40
40
|
getUser(data: TableRowData[], key: string): import("ui-core-abv").TableUser | undefined;
|
|
41
41
|
sortClick(key: string): void;
|