@pega/angular-sdk-components 0.24.3 → 0.24.4
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/field/currency/currency.component.mjs +6 -4
- package/esm2022/lib/_components/field/decimal/decimal.component.mjs +4 -3
- package/esm2022/lib/_components/field/percentage/percentage.component.mjs +6 -4
- package/esm2022/lib/_components/infra/Containers/flow-container/flow-container.component.mjs +3 -3
- package/esm2022/lib/_components/widget/todo/todo.component.mjs +4 -3
- package/fesm2022/pega-angular-sdk-components.mjs +17 -11
- package/fesm2022/pega-angular-sdk-components.mjs.map +1 -1
- package/lib/_components/field/currency/currency.component.d.ts +3 -0
- package/lib/_components/field/percentage/percentage.component.d.ts +2 -0
- package/lib/_components/widget/todo/todo.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ import { PConnFieldProps } from '../../../_types/PConnProps.interface';
|
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
interface CurrrencyProps extends PConnFieldProps {
|
|
9
9
|
currencyISOCode?: string;
|
|
10
|
+
allowDecimals: boolean;
|
|
10
11
|
}
|
|
11
12
|
export declare class CurrencyComponent implements OnInit, OnDestroy {
|
|
12
13
|
private angularPConnect;
|
|
@@ -35,6 +36,8 @@ export declare class CurrencyComponent implements OnInit, OnDestroy {
|
|
|
35
36
|
currSym: string;
|
|
36
37
|
currSep: string;
|
|
37
38
|
currDec: string;
|
|
39
|
+
inputMode: any;
|
|
40
|
+
decimalPrecision: number | undefined;
|
|
38
41
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
39
42
|
ngOnInit(): void;
|
|
40
43
|
ngOnDestroy(): void;
|
|
@@ -32,6 +32,8 @@ export declare class PercentageComponent implements OnInit, OnDestroy {
|
|
|
32
32
|
placeholder: string;
|
|
33
33
|
currDec: string;
|
|
34
34
|
currSep: string;
|
|
35
|
+
inputMode: any;
|
|
36
|
+
decimalPrecision: number | undefined;
|
|
35
37
|
fieldControl: FormControl<number | null>;
|
|
36
38
|
constructor(angularPConnect: AngularPConnectService, cdRef: ChangeDetectorRef, utils: Utils);
|
|
37
39
|
ngOnInit(): void;
|
|
@@ -40,6 +40,7 @@ export declare class TodoComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
40
40
|
localeCategory: string;
|
|
41
41
|
showlessLocalizedValue: any;
|
|
42
42
|
showMoreLocalizedValue: any;
|
|
43
|
+
canPerform: boolean;
|
|
43
44
|
constructor(psService: ProgressSpinnerService, erService: ErrorMessagesService, ngZone: NgZone, utils: Utils);
|
|
44
45
|
ngOnInit(): void;
|
|
45
46
|
ngOnDestroy(): void;
|