@pega/angular-sdk-components 0.24.3 → 0.24.5
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-case-summary/material-case-summary.component.mjs +3 -3
- package/esm2022/lib/_components/field/check-box/check-box.component.mjs +5 -6
- 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/multiselect/multiselect.component.mjs +6 -10
- 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/infra/view/view.component.mjs +2 -2
- package/esm2022/lib/_components/template/list-view/list-view.component.mjs +2 -2
- package/esm2022/lib/_components/template/simple-table-manual/simple-table-manual.component.mjs +2 -4
- package/esm2022/lib/_components/widget/todo/todo.component.mjs +4 -3
- package/fesm2022/pega-angular-sdk-components.mjs +31 -32
- 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/multiselect/multiselect.component.d.ts +3 -3
- 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
- package/sdk-local-component-map.ts +0 -12
|
@@ -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;
|
|
@@ -1,7 +1,7 @@
|
|
|
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
|
|
4
|
+
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
5
5
|
import { AngularPConnectData, AngularPConnectService } from '../../../_bridge/angular-pconnect';
|
|
6
6
|
import { Utils } from '../../../_helpers/utils';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
@@ -54,8 +54,8 @@ export declare class MultiselectComponent implements OnInit, OnDestroy {
|
|
|
54
54
|
getCaseListBasedOnParams(searchText: any, group: any, selectedRows: any, currentItemsTree: any, isTriggeredFromSearch?: boolean): void;
|
|
55
55
|
fieldOnChange(event: Event): void;
|
|
56
56
|
optionChanged(event: MatAutocompleteSelectedEvent): void;
|
|
57
|
-
optionClicked: (event: Event, data: any
|
|
58
|
-
toggleSelection: (data: any
|
|
57
|
+
optionClicked: (event: Event, data: any) => void;
|
|
58
|
+
toggleSelection: (data: any) => void;
|
|
59
59
|
removeChip: (data: any) => void;
|
|
60
60
|
setSelectedItemsForReferenceList(data: any): void;
|
|
61
61
|
getErrorMessage(): string;
|
|
@@ -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;
|
package/package.json
CHANGED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
// Statically load all "local" components that aren't yet in the npm package
|
|
2
|
-
|
|
3
|
-
/* import end - DO NOT REMOVE */
|
|
4
|
-
|
|
5
|
-
// localSdkComponentMap is the JSON object where we'll store the components that are
|
|
6
|
-
// found locally. If not found here, we'll look in the Pega-provided component map
|
|
7
|
-
|
|
8
|
-
const localSdkComponentMap = {
|
|
9
|
-
/* map end - DO NOT REMOVE */
|
|
10
|
-
};
|
|
11
|
-
|
|
12
|
-
export default localSdkComponentMap;
|