@pega/react-sdk-overrides 0.23.34 → 0.23.35
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.
|
@@ -6,7 +6,9 @@ import handleEvent from '@pega/react-sdk-components/lib/components/helpers/event
|
|
|
6
6
|
import { format } from '@pega/react-sdk-components/lib/components/helpers/formatters';
|
|
7
7
|
import { getCurrencyCharacters, getCurrencyOptions } from './currency-utils';
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
/* Using @unicef/material-ui-currency-textfield component here, since it allows formatting decimal values,
|
|
10
|
+
as per the locale.
|
|
11
|
+
*/
|
|
10
12
|
|
|
11
13
|
interface CurrrencyProps extends PConnFieldProps {
|
|
12
14
|
// If any, enter additional props that only exist on Currency here
|
|
@@ -6,7 +6,9 @@ import { format } from '@pega/react-sdk-components/lib/components/helpers/format
|
|
|
6
6
|
import { getComponentFromMap } from '@pega/react-sdk-components/lib/bridge/helpers/sdk_component_map';
|
|
7
7
|
import { PConnFieldProps } from '@pega/react-sdk-components/lib/types/PConnProps';
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
/* Using @unicef/material-ui-currency-textfield component here, since it allows formatting decimal values,
|
|
10
|
+
as per the locale.
|
|
11
|
+
*/
|
|
10
12
|
|
|
11
13
|
interface DecimalProps extends PConnFieldProps {
|
|
12
14
|
// If any, enter additional props that only exist on Decimal here
|
|
@@ -6,6 +6,9 @@ import { getCurrencyCharacters, getCurrencyOptions } from '@pega/react-sdk-compo
|
|
|
6
6
|
import handleEvent from '@pega/react-sdk-components/lib/components/helpers/event-utils';
|
|
7
7
|
import { format } from '@pega/react-sdk-components/lib/components/helpers/formatters';
|
|
8
8
|
|
|
9
|
+
/* Using @unicef/material-ui-currency-textfield component here, since it allows formatting decimal values,
|
|
10
|
+
as per the locale.
|
|
11
|
+
*/
|
|
9
12
|
interface PercentageProps extends PConnFieldProps {
|
|
10
13
|
// If any, enter additional props that only exist on Percentage here
|
|
11
14
|
currencyISOCode?: string;
|
|
@@ -154,7 +154,8 @@ export default function ListView(props: ListViewProps) {
|
|
|
154
154
|
paper: {
|
|
155
155
|
width: '100%',
|
|
156
156
|
marginTop: theme.spacing(2),
|
|
157
|
-
marginBottom: theme.spacing(2)
|
|
157
|
+
marginBottom: theme.spacing(2),
|
|
158
|
+
display: 'grid'
|
|
158
159
|
},
|
|
159
160
|
search: {
|
|
160
161
|
padding: '5px 5px'
|
package/package.json
CHANGED