@pega/angular-sdk-components 0.242.2 → 0.242.3
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/esm2022/lib/_components/designSystemExtension/material-details-fields/material-details-fields.component.mjs +7 -4
- package/esm2022/lib/_components/field/auto-complete/auto-complete.component.mjs +9 -7
- package/esm2022/lib/_components/field/check-box/check-box.component.mjs +7 -5
- package/esm2022/lib/_components/field/currency/currency.component.mjs +15 -4
- package/esm2022/lib/_components/field/date/date.component.mjs +17 -37
- package/esm2022/lib/_components/field/date-time/date-time.component.mjs +13 -11
- package/esm2022/lib/_components/field/decimal/decimal.component.mjs +3 -3
- package/esm2022/lib/_components/field/dropdown/dropdown.component.mjs +8 -10
- package/esm2022/lib/_components/field/email/email.component.mjs +11 -4
- package/esm2022/lib/_components/field/integer/integer.component.mjs +12 -7
- package/esm2022/lib/_components/field/multiselect/multiselect.component.mjs +7 -2
- package/esm2022/lib/_components/field/percentage/percentage.component.mjs +19 -16
- package/esm2022/lib/_components/field/phone/phone.component.mjs +9 -16
- package/esm2022/lib/_components/field/radio-buttons/radio-buttons.component.mjs +6 -8
- package/esm2022/lib/_components/field/rich-text/rich-text.component.mjs +5 -6
- package/esm2022/lib/_components/field/text/text.component.mjs +4 -2
- package/esm2022/lib/_components/field/text-area/text-area.component.mjs +12 -8
- package/esm2022/lib/_components/field/text-input/text-input.component.mjs +12 -7
- package/esm2022/lib/_components/field/time/time.component.mjs +18 -9
- package/esm2022/lib/_components/field/url/url.component.mjs +12 -7
- package/esm2022/lib/_components/field/user-reference/user-reference.component.mjs +8 -5
- package/esm2022/lib/_components/infra/Containers/flow-container/flow-container.component.mjs +4 -3
- package/esm2022/lib/_components/infra/stages/stages.component.mjs +3 -3
- package/esm2022/lib/_components/template/details-two-column/details-two-column.component.mjs +2 -2
- package/esm2022/lib/_components/template/field-value-list/field-value-list.component.mjs +3 -3
- package/esm2022/lib/_helpers/formatters/common.mjs +3 -5
- package/esm2022/lib/_helpers/formatters/date.mjs +4 -4
- package/esm2022/lib/_helpers/formatters/index.mjs +17 -3
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/pega-angular-sdk-components.mjs +464 -430
- package/fesm2022/pega-angular-sdk-components.mjs.map +1 -1
- package/lib/_components/designSystemExtension/material-details-fields/material-details-fields.component.d.ts +1 -1
- package/lib/_components/field/auto-complete/auto-complete.component.d.ts +3 -2
- package/lib/_components/field/check-box/check-box.component.d.ts +2 -2
- package/lib/_components/field/currency/currency.component.d.ts +3 -0
- package/lib/_components/field/date/date.component.d.ts +3 -2
- package/lib/_components/field/date-time/date-time.component.d.ts +3 -1
- package/lib/_components/field/dropdown/dropdown.component.d.ts +2 -1
- package/lib/_components/field/email/email.component.d.ts +2 -0
- package/lib/_components/field/integer/integer.component.d.ts +3 -1
- package/lib/_components/field/multiselect/multiselect.component.d.ts +3 -2
- package/lib/_components/field/percentage/percentage.component.d.ts +5 -1
- package/lib/_components/field/phone/phone.component.d.ts +3 -1
- package/lib/_components/field/radio-buttons/radio-buttons.component.d.ts +2 -1
- package/lib/_components/field/rich-text/rich-text.component.d.ts +2 -0
- package/lib/_components/field/text/text.component.d.ts +3 -1
- package/lib/_components/field/text-area/text-area.component.d.ts +3 -1
- package/lib/_components/field/text-input/text-input.component.d.ts +3 -1
- package/lib/_components/field/time/time.component.d.ts +4 -1
- package/lib/_components/field/url/url.component.d.ts +3 -1
- package/lib/_components/field/user-reference/user-reference.component.d.ts +2 -0
- package/lib/_helpers/formatters/common.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -5,7 +5,7 @@ export declare class MaterialDetailsFieldsComponent {
|
|
|
5
5
|
constructor(utils: Utils);
|
|
6
6
|
arFields$: any[];
|
|
7
7
|
arHighlightedFields: any[];
|
|
8
|
-
_getValue(configValue: any): any;
|
|
8
|
+
_getValue(configValue: any, field?: any): any;
|
|
9
9
|
_formatDate(dateValue: string, dateFormat: string): string;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialDetailsFieldsComponent, never>;
|
|
11
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<MaterialDetailsFieldsComponent, "app-material-details-fields", never, { "arFields$": { "alias": "arFields$"; "required": false; }; "arHighlightedFields": { "alias": "arHighlightedFields"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
2
|
import { OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
3
3
|
import { FormControl, FormGroup } from '@angular/forms';
|
|
4
|
-
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
5
4
|
import { Observable } from 'rxjs';
|
|
6
5
|
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
7
6
|
import { Utils } from '../../../_helpers/utils';
|
|
@@ -48,6 +47,8 @@ export declare class AutoCompleteComponent implements OnInit, OnDestroy {
|
|
|
48
47
|
hideLabel: boolean;
|
|
49
48
|
filteredOptions: Observable<any[]>;
|
|
50
49
|
filterValue: string;
|
|
50
|
+
actionsApi: Object;
|
|
51
|
+
propName: string;
|
|
51
52
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils, dataPageService: DatapageService);
|
|
52
53
|
ngOnInit(): Promise<void>;
|
|
53
54
|
ngOnDestroy(): void;
|
|
@@ -65,7 +66,7 @@ export declare class AutoCompleteComponent implements OnInit, OnDestroy {
|
|
|
65
66
|
getDisplayFieldsMetaData(columnList: any): any;
|
|
66
67
|
preProcessColumns(columnList: any): any;
|
|
67
68
|
fieldOnChange(event: Event): void;
|
|
68
|
-
optionChanged(event:
|
|
69
|
+
optionChanged(event: any): void;
|
|
69
70
|
fieldOnBlur(event: Event): void;
|
|
70
71
|
getErrorMessage(): string;
|
|
71
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<AutoCompleteComponent, never>;
|
|
@@ -51,8 +51,8 @@ export declare class CheckBoxComponent implements OnInit, OnDestroy {
|
|
|
51
51
|
selectedvalues: any;
|
|
52
52
|
referenceList: string;
|
|
53
53
|
listOfCheckboxes: any[];
|
|
54
|
-
actionsApi:
|
|
55
|
-
propName:
|
|
54
|
+
actionsApi: Object;
|
|
55
|
+
propName: string;
|
|
56
56
|
fieldControl: FormControl<string | null>;
|
|
57
57
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
58
58
|
ngOnInit(): void;
|
|
@@ -8,6 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
interface CurrrencyProps extends PConnFieldProps {
|
|
9
9
|
currencyISOCode?: string;
|
|
10
10
|
allowDecimals: boolean;
|
|
11
|
+
formatter?: string;
|
|
11
12
|
}
|
|
12
13
|
export declare class CurrencyComponent implements OnInit, OnDestroy {
|
|
13
14
|
private angularPConnect;
|
|
@@ -38,6 +39,8 @@ export declare class CurrencyComponent implements OnInit, OnDestroy {
|
|
|
38
39
|
currDec: string;
|
|
39
40
|
inputMode: any;
|
|
40
41
|
decimalPrecision: number | undefined;
|
|
42
|
+
formattedValue: string;
|
|
43
|
+
formatter: any;
|
|
41
44
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
42
45
|
ngOnInit(): void;
|
|
43
46
|
ngOnDestroy(): void;
|
|
@@ -59,6 +59,9 @@ export declare class DateComponent implements OnInit, OnDestroy {
|
|
|
59
59
|
dateFormatStringLC: string;
|
|
60
60
|
dateFormatMask: string;
|
|
61
61
|
};
|
|
62
|
+
actionsApi: Object;
|
|
63
|
+
propName: string;
|
|
64
|
+
formattedValue$: any;
|
|
62
65
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils, config: MyFormat);
|
|
63
66
|
ngOnInit(): void;
|
|
64
67
|
ngOnDestroy(): void;
|
|
@@ -66,10 +69,8 @@ export declare class DateComponent implements OnInit, OnDestroy {
|
|
|
66
69
|
checkAndUpdate(): void;
|
|
67
70
|
updateSelf(): void;
|
|
68
71
|
fieldOnDateChange(event: any): void;
|
|
69
|
-
fieldOnBlur(event: any): void;
|
|
70
72
|
hasErrors(): boolean;
|
|
71
73
|
getErrorMessage(): string;
|
|
72
|
-
getFormattedValue(): string;
|
|
73
74
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateComponent, never>;
|
|
74
75
|
static ɵcmp: i0.ɵɵComponentDeclaration<DateComponent, "app-date", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
75
76
|
}
|
|
@@ -45,6 +45,9 @@ export declare class DateTimeComponent implements OnInit, OnDestroy {
|
|
|
45
45
|
dateFormatMask: string;
|
|
46
46
|
};
|
|
47
47
|
placeholder: string;
|
|
48
|
+
actionsApi: Object;
|
|
49
|
+
propName: string;
|
|
50
|
+
formattedValue$: any;
|
|
48
51
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
49
52
|
ngOnInit(): void;
|
|
50
53
|
ngOnDestroy(): void;
|
|
@@ -52,7 +55,6 @@ export declare class DateTimeComponent implements OnInit, OnDestroy {
|
|
|
52
55
|
checkAndUpdate(): void;
|
|
53
56
|
updateSelf(): void;
|
|
54
57
|
fieldOnDateChange(event: any): void;
|
|
55
|
-
fieldOnBlur(event: any): void;
|
|
56
58
|
getErrorMessage(): string;
|
|
57
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateTimeComponent, never>;
|
|
58
60
|
static ɵcmp: i0.ɵɵComponentDeclaration<DateTimeComponent, "app-date-time", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -43,6 +43,8 @@ export declare class DropdownComponent implements OnInit, OnDestroy {
|
|
|
43
43
|
localeName: string;
|
|
44
44
|
localePath: string;
|
|
45
45
|
localizedValue: string;
|
|
46
|
+
actionsApi: Object;
|
|
47
|
+
propName: string;
|
|
46
48
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
47
49
|
ngOnInit(): void;
|
|
48
50
|
ngOnDestroy(): void;
|
|
@@ -51,7 +53,6 @@ export declare class DropdownComponent implements OnInit, OnDestroy {
|
|
|
51
53
|
updateSelf(): void;
|
|
52
54
|
isSelected(buttonValue: string): boolean;
|
|
53
55
|
fieldOnChange(event: any): void;
|
|
54
|
-
fieldOnBlur(event: any): void;
|
|
55
56
|
getLocalizedOptionValue(opt: IOption): string;
|
|
56
57
|
getErrorMessage(): string;
|
|
57
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
@@ -29,6 +29,8 @@ export declare class EmailComponent implements OnInit, OnDestroy {
|
|
|
29
29
|
helperText: string;
|
|
30
30
|
placeholder: string;
|
|
31
31
|
fieldControl: FormControl<string | null>;
|
|
32
|
+
actionsApi: Object;
|
|
33
|
+
propName: string;
|
|
32
34
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
33
35
|
ngOnInit(): void;
|
|
34
36
|
ngOnDestroy(): void;
|
|
@@ -29,13 +29,15 @@ export declare class IntegerComponent implements OnInit, OnDestroy {
|
|
|
29
29
|
helperText: string;
|
|
30
30
|
placeholder: string;
|
|
31
31
|
fieldControl: FormControl<number | null>;
|
|
32
|
+
actionsApi: Object;
|
|
33
|
+
propName: string;
|
|
32
34
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
33
35
|
ngOnInit(): void;
|
|
34
36
|
ngOnDestroy(): void;
|
|
35
37
|
onStateChange(): void;
|
|
36
38
|
checkAndUpdate(): void;
|
|
37
39
|
updateSelf(): void;
|
|
38
|
-
fieldOnChange(
|
|
40
|
+
fieldOnChange(): void;
|
|
39
41
|
fieldOnBlur(event: any): void;
|
|
40
42
|
getErrorMessage(): string;
|
|
41
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<IntegerComponent, never>;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
2
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
3
3
|
import { FormControl, FormGroup } from '@angular/forms';
|
|
4
|
-
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
5
4
|
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
6
5
|
import { Utils } from '../../../_helpers/utils';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
@@ -44,6 +43,8 @@ export declare class MultiselectComponent implements OnInit, OnDestroy {
|
|
|
44
43
|
dataApiObj: any;
|
|
45
44
|
itemsTree: any[];
|
|
46
45
|
trigger: any;
|
|
46
|
+
actionsApi: Object;
|
|
47
|
+
propName: string;
|
|
47
48
|
constructor(angularPConnect: AngularPConnectService, utils: Utils);
|
|
48
49
|
ngOnInit(): void;
|
|
49
50
|
ngOnDestroy(): void;
|
|
@@ -53,7 +54,7 @@ export declare class MultiselectComponent implements OnInit, OnDestroy {
|
|
|
53
54
|
setPropertyValuesFromProps(): void;
|
|
54
55
|
getCaseListBasedOnParams(searchText: any, group: any, selectedRows: any, currentItemsTree: any, isTriggeredFromSearch?: boolean): void;
|
|
55
56
|
fieldOnChange(event: Event): void;
|
|
56
|
-
optionChanged(event:
|
|
57
|
+
optionChanged(event: any): void;
|
|
57
58
|
optionClicked: (event: Event, data: any) => void;
|
|
58
59
|
toggleSelection: (data: any) => void;
|
|
59
60
|
removeChip: (data: any) => void;
|
|
@@ -8,6 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
interface PercentageProps extends PConnFieldProps {
|
|
9
9
|
showGroupSeparators?: string;
|
|
10
10
|
decimalPrecision?: number;
|
|
11
|
+
currencyISOCode?: string;
|
|
11
12
|
}
|
|
12
13
|
export declare class PercentageComponent implements OnInit, OnDestroy {
|
|
13
14
|
private angularPConnect;
|
|
@@ -35,13 +36,16 @@ export declare class PercentageComponent implements OnInit, OnDestroy {
|
|
|
35
36
|
inputMode: any;
|
|
36
37
|
decimalPrecision: number | undefined;
|
|
37
38
|
fieldControl: FormControl<number | null>;
|
|
39
|
+
actionsApi: Object;
|
|
40
|
+
propName: string;
|
|
41
|
+
formattedValue: string;
|
|
38
42
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
39
43
|
ngOnInit(): void;
|
|
40
44
|
ngOnDestroy(): void;
|
|
41
45
|
onStateChange(): void;
|
|
42
46
|
checkAndUpdate(): void;
|
|
43
47
|
updateSelf(): void;
|
|
44
|
-
fieldOnChange(
|
|
48
|
+
fieldOnChange(): void;
|
|
45
49
|
fieldOnBlur(event: any): void;
|
|
46
50
|
getErrorMessage(): string;
|
|
47
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<PercentageComponent, never>;
|
|
@@ -33,14 +33,16 @@ export declare class PhoneComponent implements OnInit, OnDestroy {
|
|
|
33
33
|
phoneForm: FormGroup<{
|
|
34
34
|
phone: FormControl<string | null>;
|
|
35
35
|
}>;
|
|
36
|
+
actionsApi: Object;
|
|
37
|
+
propName: string;
|
|
36
38
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
37
39
|
ngOnInit(): void;
|
|
38
40
|
ngOnDestroy(): void;
|
|
39
41
|
onStateChange(): void;
|
|
40
42
|
checkAndUpdate(): void;
|
|
41
43
|
updateSelf(): void;
|
|
44
|
+
fieldOnBlur(): void;
|
|
42
45
|
fieldOnChange(): void;
|
|
43
|
-
fieldOnBlur(event: any): void;
|
|
44
46
|
getErrorMessage(): string;
|
|
45
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneComponent, never>;
|
|
46
48
|
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneComponent, "app-phone", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -43,6 +43,8 @@ export declare class RadioButtonsComponent implements OnInit, OnDestroy {
|
|
|
43
43
|
localeName: string;
|
|
44
44
|
localePath: string;
|
|
45
45
|
localizedValue: string;
|
|
46
|
+
actionsApi: Object;
|
|
47
|
+
propName: string;
|
|
46
48
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
47
49
|
ngOnInit(): void;
|
|
48
50
|
ngOnDestroy(): void;
|
|
@@ -51,7 +53,6 @@ export declare class RadioButtonsComponent implements OnInit, OnDestroy {
|
|
|
51
53
|
updateSelf(): void;
|
|
52
54
|
isSelected(buttonValue: string): boolean;
|
|
53
55
|
fieldOnChange(event: any): void;
|
|
54
|
-
fieldOnBlur(event: any): void;
|
|
55
56
|
getLocalizedOptionValue(opt: IOption): string;
|
|
56
57
|
getErrorMessage(): string;
|
|
57
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonsComponent, never>;
|
|
@@ -28,6 +28,8 @@ export declare class RichTextComponent implements OnInit, OnDestroy {
|
|
|
28
28
|
info: any;
|
|
29
29
|
error: boolean;
|
|
30
30
|
status: any;
|
|
31
|
+
actionsApi: Object;
|
|
32
|
+
propName: string;
|
|
31
33
|
constructor(angularPConnect: AngularPConnectService, utils: Utils);
|
|
32
34
|
ngOnInit(): void;
|
|
33
35
|
ngOnDestroy(): void;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="pcore-pconnect-typedefs" />
|
|
2
2
|
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
3
4
|
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
4
5
|
import { Utils } from '../../../_helpers/utils';
|
|
5
6
|
import { PConnFieldProps } from '../../../_types/PConnProps.interface';
|
|
@@ -10,6 +11,7 @@ export declare class TextComponent implements OnInit, OnDestroy {
|
|
|
10
11
|
private angularPConnect;
|
|
11
12
|
private utils;
|
|
12
13
|
pConn$: typeof PConnect;
|
|
14
|
+
formGroup$: FormGroup;
|
|
13
15
|
formatAs$: string;
|
|
14
16
|
angularPConnectData: AngularPConnectData;
|
|
15
17
|
configProps$: TextProps;
|
|
@@ -35,6 +37,6 @@ export declare class TextComponent implements OnInit, OnDestroy {
|
|
|
35
37
|
generateDate(sVal: any): string;
|
|
36
38
|
generateDateTime(sVal: any): string;
|
|
37
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextComponent, "app-text", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formatAs$": { "alias": "formatAs$"; "required": false; }; }, {}, never, never, true, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextComponent, "app-text", never, { "pConn$": { "alias": "pConn$"; "required": false; }; "formGroup$": { "alias": "formGroup$"; "required": false; }; "formatAs$": { "alias": "formatAs$"; "required": false; }; }, {}, never, never, true, never>;
|
|
39
41
|
}
|
|
40
42
|
export {};
|
|
@@ -30,13 +30,15 @@ export declare class TextAreaComponent implements OnInit, OnDestroy {
|
|
|
30
30
|
testId: string;
|
|
31
31
|
helperText: string;
|
|
32
32
|
fieldControl: FormControl<string | null>;
|
|
33
|
+
actionsApi: Object;
|
|
34
|
+
propName: string;
|
|
33
35
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
34
36
|
ngOnInit(): void;
|
|
35
37
|
ngOnDestroy(): void;
|
|
36
38
|
onStateChange(): void;
|
|
37
39
|
checkAndUpdate(): void;
|
|
38
40
|
updateSelf(): void;
|
|
39
|
-
fieldOnChange(
|
|
41
|
+
fieldOnChange(): void;
|
|
40
42
|
fieldOnBlur(event: any): void;
|
|
41
43
|
getErrorMessage(): string;
|
|
42
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
|
|
@@ -30,13 +30,15 @@ export declare class TextInputComponent implements OnInit, OnDestroy {
|
|
|
30
30
|
helperText: string;
|
|
31
31
|
placeholder: string;
|
|
32
32
|
fieldControl: FormControl<string | null>;
|
|
33
|
+
actionsApi: Object;
|
|
34
|
+
propName: string;
|
|
33
35
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
34
36
|
ngOnInit(): void;
|
|
35
37
|
ngOnDestroy(): void;
|
|
36
38
|
onStateChange(): void;
|
|
37
39
|
checkAndUpdate(): void;
|
|
38
40
|
updateSelf(): void;
|
|
39
|
-
fieldOnChange(
|
|
41
|
+
fieldOnChange(): void;
|
|
40
42
|
fieldOnBlur(event: any): void;
|
|
41
43
|
getErrorMessage(): string;
|
|
42
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextInputComponent, never>;
|
|
@@ -29,13 +29,16 @@ export declare class TimeComponent implements OnInit, OnDestroy {
|
|
|
29
29
|
helperText: string;
|
|
30
30
|
placeholder: string;
|
|
31
31
|
fieldControl: FormControl<string | null>;
|
|
32
|
+
actionsApi: Object;
|
|
33
|
+
propName: string;
|
|
34
|
+
formattedValue$: any;
|
|
32
35
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
33
36
|
ngOnInit(): void;
|
|
34
37
|
ngOnDestroy(): void;
|
|
35
38
|
onStateChange(): void;
|
|
36
39
|
checkAndUpdate(): void;
|
|
37
40
|
updateSelf(): void;
|
|
38
|
-
fieldOnChange(
|
|
41
|
+
fieldOnChange(): void;
|
|
39
42
|
fieldOnBlur(event: any): void;
|
|
40
43
|
getErrorMessage(): string;
|
|
41
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<TimeComponent, never>;
|
|
@@ -29,13 +29,15 @@ export declare class UrlComponent implements OnInit, OnDestroy {
|
|
|
29
29
|
helperText: string;
|
|
30
30
|
placeholder: string;
|
|
31
31
|
fieldControl: FormControl<string | null>;
|
|
32
|
+
actionsApi: Object;
|
|
33
|
+
propName: string;
|
|
32
34
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
33
35
|
ngOnInit(): void;
|
|
34
36
|
ngOnDestroy(): void;
|
|
35
37
|
onStateChange(): void;
|
|
36
38
|
checkAndUpdate(): void;
|
|
37
39
|
updateSelf(): void;
|
|
38
|
-
fieldOnChange(
|
|
40
|
+
fieldOnChange(): void;
|
|
39
41
|
fieldOnBlur(event: any): void;
|
|
40
42
|
getErrorMessage(): string;
|
|
41
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<UrlComponent, never>;
|
|
@@ -28,6 +28,8 @@ export declare class UserReferenceComponent implements OnInit, OnDestroy {
|
|
|
28
28
|
filteredOptions: Observable<any[]>;
|
|
29
29
|
filterValue: string;
|
|
30
30
|
fieldControl: FormControl<string | null>;
|
|
31
|
+
actionsApi: Object;
|
|
32
|
+
propName: string;
|
|
31
33
|
constructor(angularPConnect: AngularPConnectService, utils: Utils);
|
|
32
34
|
ngOnInit(): Promise<void>;
|
|
33
35
|
ngOnDestroy(): void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare function getLocale(locale?: string): string | undefined;
|
|
2
|
-
export declare function getCurrentTimezone(
|
|
2
|
+
export declare function getCurrentTimezone(): string | undefined;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -115,6 +115,7 @@ export * from './lib/_services/endpoints';
|
|
|
115
115
|
export * from './lib/_helpers/case-utils';
|
|
116
116
|
export * from './lib/_helpers/currency-utils';
|
|
117
117
|
export * from './lib/_helpers/common';
|
|
118
|
+
export * from './lib/_helpers/createstage-utils';
|
|
118
119
|
export * from './lib/_helpers/date-format-utils';
|
|
119
120
|
export * from './lib/_helpers/event-util';
|
|
120
121
|
export * from './lib/_helpers/field-group-utils';
|