## Description ### Fixes - [x] https://github.com/appsmithorg/appsmith/issues/19383 - [x] https://github.com/appsmithorg/appsmith/issues/19384 - [x] https://github.com/appsmithorg/appsmith/issues/19385 - [x] https://github.com/appsmithorg/appsmith/issues/19386 - [x] https://github.com/appsmithorg/appsmith/issues/19387 - [x] https://github.com/appsmithorg/appsmith/issues/19388 - [x] https://github.com/appsmithorg/appsmith/issues/19389 - [x] https://github.com/appsmithorg/appsmith/issues/19390 - [x] https://github.com/appsmithorg/appsmith/issues/19391 - [x] https://github.com/appsmithorg/appsmith/issues/19392 - [x] https://github.com/appsmithorg/appsmith/issues/19393 - [x] https://github.com/appsmithorg/appsmith/issues/19394 - [x] https://github.com/appsmithorg/appsmith/issues/19395 - [x] https://github.com/appsmithorg/appsmith/issues/19396 - [x] https://github.com/appsmithorg/appsmith/issues/19397 - [x] https://github.com/appsmithorg/appsmith/issues/19398 - [x] https://github.com/appsmithorg/appsmith/issues/19399 - [x] https://github.com/appsmithorg/appsmith/issues/19400 - [x] https://github.com/appsmithorg/appsmith/issues/19401 - [x] https://github.com/appsmithorg/appsmith/issues/19402 - [x] https://github.com/appsmithorg/appsmith/issues/19403 - [x] https://github.com/appsmithorg/appsmith/issues/19404 - [x] https://github.com/appsmithorg/appsmith/issues/19405 - [x] https://github.com/appsmithorg/appsmith/issues/19406 - [x] https://github.com/appsmithorg/appsmith/issues/19407 - [x] https://github.com/appsmithorg/appsmith/issues/19408 - [x] https://github.com/appsmithorg/appsmith/issues/19409 Fixes # (issue) > if no issue exists, please create an issue and ask the maintainers about this first Media > A video or a GIF is preferred. when using Loom, don’t embed because it looks like it’s a GIF. instead, just link to the video ## Type of change > Please delete options that are not relevant. - Bug fix (non-breaking change which fixes an issue) - New feature (non-breaking change which adds functionality) - Breaking change (fix or feature that would cause existing functionality to not work as expected) - Chore (housekeeping or task changes that don't impact user perception) - This change requires a documentation update ## How Has This Been Tested? > Please describe the tests that you ran to verify your changes. Provide instructions, so we can reproduce. > Please also list any relevant details for your test configuration. > Delete anything that is not important - Manual - Jest - Cypress ### Test Plan > Add Testsmith test cases links that relate to this PR ### Issues raised during DP testing > Link issues raised during DP testing for better visiblity and tracking (copy link from comments dropped on this PR) ## Checklist: ### Dev activity - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] PR is being merged under a feature flag ### QA activity: - [ ] Test plan has been approved by relevant developers - [ ] Test plan has been peer reviewed by QA - [ ] Cypress test cases have been added and approved by either SDET or manual QA - [ ] Organized project review call with relevant stakeholders after Round 1/2 of QA - [ ] Added Test Plan Approved label after reveiwing all Cypress test --------- Co-authored-by: Ankita Kinger <ankita@appsmith.com> Co-authored-by: akash-codemonk <67054171+akash-codemonk@users.noreply.github.com> Co-authored-by: Tanvi Bhakta <tanvi@appsmith.com> Co-authored-by: Arsalan <arsalanyaldram0211@outlook.com> Co-authored-by: Aman Agarwal <aman@appsmith.com> Co-authored-by: Rohit Agarwal <rohit_agarwal@live.in> Co-authored-by: Nilesh Sarupriya <nilesh@appsmith.com> Co-authored-by: Nilesh Sarupriya <20905988+nsarupr@users.noreply.github.com> Co-authored-by: Tanvi Bhakta <tanvibhakta@gmail.com> Co-authored-by: Aishwarya UR <aishwarya@appsmith.com> Co-authored-by: Parthvi Goswami <parthvigoswami@Parthvis-MacBook-Pro.local> Co-authored-by: Vijetha-Kaja <vijetha@appsmith.com> Co-authored-by: Parthvi <80334441+Parthvi12@users.noreply.github.com> Co-authored-by: Apple <nandan@thinkify.io> Co-authored-by: Saroj <43822041+sarojsarab@users.noreply.github.com> Co-authored-by: Sangeeth Sivan <74818788+berzerkeer@users.noreply.github.com> Co-authored-by: Ashok Kumar M <35134347+marks0351@users.noreply.github.com> Co-authored-by: Aishwarya-U-R <91450662+Aishwarya-U-R@users.noreply.github.com> Co-authored-by: rahulramesha <rahul@appsmith.com> Co-authored-by: Aswath K <aswath.sana@gmail.com> Co-authored-by: Preet Sidhu <preetsidhu.bits@gmail.com> Co-authored-by: Vijetha-Kaja <119562824+Vijetha-Kaja@users.noreply.github.com> Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
547 lines
16 KiB
TypeScript
547 lines
16 KiB
TypeScript
import React from "react";
|
|
import type { WidgetState } from "widgets/BaseWidget";
|
|
import type { WidgetType } from "constants/WidgetConstants";
|
|
import type { CurrencyInputComponentProps } from "../component";
|
|
import CurrencyInputComponent from "../component";
|
|
import { EventType } from "constants/AppsmithActionConstants/ActionConstants";
|
|
import type { ValidationResponse } from "constants/WidgetValidation";
|
|
import { ValidationTypes } from "constants/WidgetValidation";
|
|
import {
|
|
createMessage,
|
|
FIELD_REQUIRED_ERROR,
|
|
} from "@appsmith/constants/messages";
|
|
import type { DerivedPropertiesMap } from "utils/WidgetFactory";
|
|
import {
|
|
CurrencyDropdownOptions,
|
|
getCountryCodeFromCurrencyCode,
|
|
} from "../component/CurrencyCodeDropdown";
|
|
import { AutocompleteDataType } from "utils/autocomplete/AutocompleteDataType";
|
|
import _ from "lodash";
|
|
import derivedProperties from "./parsedDerivedProperties";
|
|
import BaseInputWidget from "widgets/BaseInputWidget";
|
|
import type { BaseInputWidgetProps } from "widgets/BaseInputWidget/widget";
|
|
import * as Sentry from "@sentry/react";
|
|
import log from "loglevel";
|
|
import {
|
|
formatCurrencyNumber,
|
|
limitDecimalValue,
|
|
} from "../component/utilities";
|
|
import { getLocale, mergeWidgetConfig } from "utils/helpers";
|
|
import { GRID_DENSITY_MIGRATION_V1 } from "widgets/constants";
|
|
import {
|
|
getLocaleDecimalSeperator,
|
|
getLocaleThousandSeparator,
|
|
isAutoHeightEnabledForWidget,
|
|
DefaultAutocompleteDefinitions,
|
|
} from "widgets/WidgetUtils";
|
|
import type { Stylesheet } from "entities/AppTheming";
|
|
import { NumberInputStepButtonPosition } from "widgets/BaseInputWidget/constants";
|
|
import type { AutocompletionDefinitions } from "widgets/constants";
|
|
|
|
export function defaultValueValidation(
|
|
value: any,
|
|
props: CurrencyInputWidgetProps,
|
|
_?: any,
|
|
): ValidationResponse {
|
|
const NUMBER_ERROR_MESSAGE = {
|
|
name: "TypeError",
|
|
message: "This value must be number",
|
|
};
|
|
const DECIMAL_SEPARATOR_ERROR_MESSAGE = {
|
|
name: "ValidationError",
|
|
message: "Please use . as the decimal separator for default values.",
|
|
};
|
|
const EMPTY_ERROR_MESSAGE = {
|
|
name: "",
|
|
message: "",
|
|
};
|
|
const localeLang = navigator.languages?.[0] || "en-US";
|
|
|
|
function getLocaleDecimalSeperator() {
|
|
return Intl.NumberFormat(localeLang)
|
|
.format(1.1)
|
|
.replace(/\p{Number}/gu, "");
|
|
}
|
|
const decimalSeperator = getLocaleDecimalSeperator();
|
|
const defaultDecimalSeperator = ".";
|
|
if (_.isObject(value)) {
|
|
return {
|
|
isValid: false,
|
|
parsed: JSON.stringify(value, null, 2),
|
|
messages: [NUMBER_ERROR_MESSAGE],
|
|
};
|
|
}
|
|
|
|
let parsed: any = Number(value);
|
|
let isValid, messages;
|
|
|
|
if (_.isString(value) && value.trim() === "") {
|
|
/*
|
|
* When value is emtpy string
|
|
*/
|
|
isValid = true;
|
|
messages = [EMPTY_ERROR_MESSAGE];
|
|
parsed = undefined;
|
|
} else if (!Number.isFinite(parsed)) {
|
|
/*
|
|
* When parsed value is not a finite numer
|
|
*/
|
|
isValid = false;
|
|
parsed = undefined;
|
|
|
|
/**
|
|
* Check whether value contains the locale decimal separator apart from "."
|
|
* We only allow "." as a decimal separator inside default value
|
|
*/
|
|
if (
|
|
String(value).indexOf(defaultDecimalSeperator) === -1 &&
|
|
String(value).indexOf(decimalSeperator) > 0
|
|
) {
|
|
messages = [DECIMAL_SEPARATOR_ERROR_MESSAGE];
|
|
} else {
|
|
messages = [NUMBER_ERROR_MESSAGE];
|
|
}
|
|
} else {
|
|
/*
|
|
* When parsed value is a Number
|
|
*/
|
|
|
|
// Check whether value is honoring the decimals property
|
|
if (parsed !== Number(parsed.toFixed(props.decimals))) {
|
|
isValid = false;
|
|
messages = [
|
|
{
|
|
name: "RangeError",
|
|
message:
|
|
"No. of decimals are higher than the decimals field set. Please update the default or the decimals field",
|
|
},
|
|
];
|
|
} else {
|
|
isValid = true;
|
|
messages = [EMPTY_ERROR_MESSAGE];
|
|
}
|
|
|
|
parsed = String(parsed);
|
|
}
|
|
|
|
return {
|
|
isValid,
|
|
parsed,
|
|
messages,
|
|
};
|
|
}
|
|
|
|
class CurrencyInputWidget extends BaseInputWidget<
|
|
CurrencyInputWidgetProps,
|
|
WidgetState
|
|
> {
|
|
static getAutocompleteDefinitions(): AutocompletionDefinitions {
|
|
return {
|
|
"!doc":
|
|
"An input text field is used to capture a currency value. Inputs are used in forms and can have custom validations.",
|
|
"!url": "https://docs.appsmith.com/widget-reference/currency-input",
|
|
text: {
|
|
"!type": "string",
|
|
"!doc": "The formatted text value of the input",
|
|
"!url": "https://docs.appsmith.com/widget-reference/currency-input",
|
|
},
|
|
value: {
|
|
"!type": "number",
|
|
"!doc": "The value of the input",
|
|
"!url": "https://docs.appsmith.com/widget-reference/currency-input",
|
|
},
|
|
isValid: "bool",
|
|
isVisible: DefaultAutocompleteDefinitions.isVisible,
|
|
isDisabled: "bool",
|
|
countryCode: {
|
|
"!type": "string",
|
|
"!doc": "Selected country code for Currency",
|
|
},
|
|
currencyCode: {
|
|
"!type": "string",
|
|
"!doc": "Selected Currency code",
|
|
},
|
|
};
|
|
}
|
|
static getPropertyPaneContentConfig() {
|
|
return mergeWidgetConfig(
|
|
[
|
|
{
|
|
sectionName: "Data",
|
|
children: [
|
|
{
|
|
helpText:
|
|
"Sets the default text of the widget. The text is updated if the default text changes",
|
|
propertyName: "defaultText",
|
|
label: "Default value",
|
|
controlType: "INPUT_TEXT",
|
|
placeholderText: "100",
|
|
isBindProperty: true,
|
|
isTriggerProperty: false,
|
|
validation: {
|
|
type: ValidationTypes.FUNCTION,
|
|
params: {
|
|
fn: defaultValueValidation,
|
|
expected: {
|
|
type: "number",
|
|
example: `100`,
|
|
autocompleteDataType: AutocompleteDataType.STRING,
|
|
},
|
|
},
|
|
},
|
|
dependencies: ["decimals"],
|
|
},
|
|
{
|
|
helpText: "Changes the type of currency",
|
|
propertyName: "defaultCurrencyCode",
|
|
label: "Currency",
|
|
enableSearch: true,
|
|
dropdownHeight: "156px",
|
|
controlType: "DROP_DOWN",
|
|
searchPlaceholderText: "Search by code or name",
|
|
options: CurrencyDropdownOptions,
|
|
virtual: true,
|
|
isJSConvertible: true,
|
|
isBindProperty: true,
|
|
isTriggerProperty: false,
|
|
validation: {
|
|
type: ValidationTypes.TEXT,
|
|
},
|
|
},
|
|
{
|
|
propertyName: "allowCurrencyChange",
|
|
label: "Allow currency change",
|
|
helpText: "Search by currency or country",
|
|
controlType: "SWITCH",
|
|
isJSConvertible: true,
|
|
isBindProperty: true,
|
|
isTriggerProperty: false,
|
|
validation: { type: ValidationTypes.BOOLEAN },
|
|
},
|
|
{
|
|
helpText: "No. of decimals in currency input",
|
|
propertyName: "decimals",
|
|
label: "Decimals allowed",
|
|
controlType: "DROP_DOWN",
|
|
options: [
|
|
{
|
|
label: "0",
|
|
value: 0,
|
|
},
|
|
{
|
|
label: "1",
|
|
value: 1,
|
|
},
|
|
{
|
|
label: "2",
|
|
value: 2,
|
|
},
|
|
],
|
|
isJSConvertible: true,
|
|
isBindProperty: true,
|
|
isTriggerProperty: false,
|
|
validation: {
|
|
type: ValidationTypes.NUMBER,
|
|
params: {
|
|
min: 0,
|
|
max: 2,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
sectionName: "Label",
|
|
children: [],
|
|
},
|
|
{
|
|
sectionName: "Validation",
|
|
children: [
|
|
{
|
|
propertyName: "isRequired",
|
|
label: "Required",
|
|
helpText: "Makes input to the widget mandatory",
|
|
controlType: "SWITCH",
|
|
isJSConvertible: true,
|
|
isBindProperty: true,
|
|
isTriggerProperty: false,
|
|
validation: { type: ValidationTypes.BOOLEAN },
|
|
},
|
|
],
|
|
},
|
|
],
|
|
super.getPropertyPaneContentConfig(),
|
|
);
|
|
}
|
|
|
|
static getPropertyPaneStyleConfig() {
|
|
return super.getPropertyPaneStyleConfig();
|
|
}
|
|
|
|
static getDerivedPropertiesMap(): DerivedPropertiesMap {
|
|
return {
|
|
isValid: `{{(()=>{${derivedProperties.isValid}})()}}`,
|
|
value: `{{(()=>{${derivedProperties.value}})()}}`,
|
|
};
|
|
}
|
|
|
|
static getMetaPropertiesMap(): Record<string, any> {
|
|
return _.merge(super.getMetaPropertiesMap(), {
|
|
text: undefined,
|
|
currencyCode: undefined,
|
|
});
|
|
}
|
|
|
|
static getDefaultPropertiesMap(): Record<string, string> {
|
|
return _.merge(super.getDefaultPropertiesMap(), {
|
|
currencyCode: "defaultCurrencyCode",
|
|
});
|
|
}
|
|
|
|
static getStylesheetConfig(): Stylesheet {
|
|
return {
|
|
accentColor: "{{appsmith.theme.colors.primaryColor}}",
|
|
borderRadius: "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
|
boxShadow: "none",
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
//format the defaultText and store it in text
|
|
this.formatText();
|
|
}
|
|
|
|
componentDidUpdate(prevProps: CurrencyInputWidgetProps) {
|
|
if (
|
|
prevProps.text !== this.props.text &&
|
|
!this.props.isFocused &&
|
|
this.props.text === String(this.props.defaultText)
|
|
) {
|
|
this.formatText();
|
|
}
|
|
// If defaultText property has changed, reset isDirty to false
|
|
if (
|
|
this.props.defaultText !== prevProps.defaultText &&
|
|
this.props.isDirty
|
|
) {
|
|
this.props.updateWidgetMetaProperty("isDirty", false);
|
|
}
|
|
|
|
if (
|
|
this.props.currencyCode === this.props.defaultCurrencyCode &&
|
|
prevProps.currencyCode !== this.props.currencyCode
|
|
) {
|
|
this.onCurrencyTypeChange(this.props.currencyCode);
|
|
}
|
|
}
|
|
|
|
formatText() {
|
|
if (!!this.props.text && !this.isTextFormatted()) {
|
|
try {
|
|
/**
|
|
* Since we are restricting default value to only have "." decimal separator,
|
|
* hence we directly convert it to the current locale
|
|
*/
|
|
const floatVal = parseFloat(this.props.text);
|
|
|
|
const formattedValue = Intl.NumberFormat(getLocale(), {
|
|
style: "decimal",
|
|
minimumFractionDigits: this.props.decimals,
|
|
maximumFractionDigits: this.props.decimals,
|
|
}).format(floatVal);
|
|
this.props.updateWidgetMetaProperty("text", formattedValue);
|
|
} catch (e) {
|
|
log.error(e);
|
|
Sentry.captureException(e);
|
|
}
|
|
}
|
|
}
|
|
|
|
onValueChange = (value: string) => {
|
|
let formattedValue = "";
|
|
const decimalSeperator = getLocaleDecimalSeperator();
|
|
try {
|
|
if (value && value.includes(decimalSeperator)) {
|
|
formattedValue = limitDecimalValue(this.props.decimals, value);
|
|
} else {
|
|
formattedValue = value;
|
|
}
|
|
} catch (e) {
|
|
formattedValue = value;
|
|
log.error(e);
|
|
Sentry.captureException(e);
|
|
}
|
|
|
|
// text is stored as what user has typed
|
|
this.props.updateWidgetMetaProperty("text", String(formattedValue), {
|
|
triggerPropertyName: "onTextChanged",
|
|
dynamicString: this.props.onTextChanged,
|
|
event: {
|
|
type: EventType.ON_TEXT_CHANGE,
|
|
},
|
|
});
|
|
|
|
if (!this.props.isDirty) {
|
|
this.props.updateWidgetMetaProperty("isDirty", true);
|
|
}
|
|
};
|
|
|
|
isTextFormatted = () => {
|
|
return this.props.text.includes(getLocaleThousandSeparator());
|
|
};
|
|
|
|
handleFocusChange = (isFocused?: boolean) => {
|
|
try {
|
|
if (isFocused) {
|
|
const text = this.props.text || "";
|
|
const deFormattedValue = text.replace(
|
|
new RegExp("\\" + getLocaleThousandSeparator(), "g"),
|
|
"",
|
|
);
|
|
this.props.updateWidgetMetaProperty("text", deFormattedValue);
|
|
this.props.updateWidgetMetaProperty("isFocused", isFocused, {
|
|
triggerPropertyName: "onFocus",
|
|
dynamicString: this.props.onFocus,
|
|
event: {
|
|
type: EventType.ON_FOCUS,
|
|
},
|
|
});
|
|
} else {
|
|
if (this.props.text) {
|
|
const formattedValue = formatCurrencyNumber(
|
|
this.props.decimals,
|
|
this.props.text,
|
|
);
|
|
this.props.updateWidgetMetaProperty("text", formattedValue);
|
|
}
|
|
this.props.updateWidgetMetaProperty("isFocused", isFocused, {
|
|
triggerPropertyName: "onBlur",
|
|
dynamicString: this.props.onBlur,
|
|
event: {
|
|
type: EventType.ON_BLUR,
|
|
},
|
|
});
|
|
}
|
|
} catch (e) {
|
|
log.error(e);
|
|
Sentry.captureException(e);
|
|
this.props.updateWidgetMetaProperty("text", this.props.text);
|
|
}
|
|
|
|
super.handleFocusChange(!!isFocused);
|
|
};
|
|
|
|
onCurrencyTypeChange = (currencyCode?: string) => {
|
|
const countryCode = getCountryCodeFromCurrencyCode(currencyCode);
|
|
|
|
this.props.updateWidgetMetaProperty("countryCode", countryCode);
|
|
this.props.updateWidgetMetaProperty("currencyCode", currencyCode);
|
|
};
|
|
|
|
handleKeyDown = (
|
|
e:
|
|
| React.KeyboardEvent<HTMLTextAreaElement>
|
|
| React.KeyboardEvent<HTMLInputElement>,
|
|
) => {
|
|
super.handleKeyDown(e);
|
|
};
|
|
|
|
onStep = (direction: number) => {
|
|
const value = Number(this.props.value) + direction;
|
|
|
|
// Since value is always going to be a number therefore, directly converting it to the current locale
|
|
const formattedValue = Intl.NumberFormat(getLocale()).format(value);
|
|
if (!this.props.isDirty) {
|
|
this.props.updateWidgetMetaProperty("isDirty", true);
|
|
}
|
|
|
|
this.props.updateWidgetMetaProperty("text", String(formattedValue), {
|
|
triggerPropertyName: "onTextChanged",
|
|
dynamicString: this.props.onTextChanged,
|
|
event: {
|
|
type: EventType.ON_TEXT_CHANGE,
|
|
},
|
|
});
|
|
};
|
|
|
|
getPageView() {
|
|
const value = this.props.text ?? "";
|
|
const isInvalid =
|
|
"isValid" in this.props && !this.props.isValid && !!this.props.isDirty;
|
|
const currencyCode = this.props.currencyCode;
|
|
const conditionalProps: Partial<CurrencyInputComponentProps> = {};
|
|
conditionalProps.errorMessage = this.props.errorMessage;
|
|
if (this.props.isRequired && value.length === 0) {
|
|
conditionalProps.errorMessage = createMessage(FIELD_REQUIRED_ERROR);
|
|
}
|
|
|
|
if (this.props.showStepArrows) {
|
|
conditionalProps.buttonPosition = NumberInputStepButtonPosition.RIGHT;
|
|
} else {
|
|
conditionalProps.buttonPosition = NumberInputStepButtonPosition.NONE;
|
|
}
|
|
|
|
return (
|
|
<CurrencyInputComponent
|
|
accentColor={this.props.accentColor}
|
|
allowCurrencyChange={this.props.allowCurrencyChange}
|
|
autoFocus={this.props.autoFocus}
|
|
borderRadius={this.props.borderRadius}
|
|
boxShadow={this.props.boxShadow}
|
|
compactMode={
|
|
!(
|
|
(this.props.bottomRow - this.props.topRow) /
|
|
GRID_DENSITY_MIGRATION_V1 >
|
|
1
|
|
)
|
|
}
|
|
currencyCode={currencyCode}
|
|
decimals={this.props.decimals}
|
|
defaultValue={this.props.defaultText}
|
|
disableNewLineOnPressEnterKey={!!this.props.onSubmit}
|
|
disabled={this.props.isDisabled}
|
|
iconAlign={this.props.iconAlign}
|
|
iconName={this.props.iconName}
|
|
inputType={this.props.inputType}
|
|
isDynamicHeightEnabled={isAutoHeightEnabledForWidget(this.props)}
|
|
isInvalid={isInvalid}
|
|
isLoading={this.props.isLoading}
|
|
label={this.props.label}
|
|
labelAlignment={this.props.labelAlignment}
|
|
labelPosition={this.props.labelPosition}
|
|
labelStyle={this.props.labelStyle}
|
|
labelTextColor={this.props.labelTextColor}
|
|
labelTextSize={this.props.labelTextSize}
|
|
labelWidth={this.getLabelWidth()}
|
|
onCurrencyTypeChange={this.onCurrencyTypeChange}
|
|
onFocusChange={this.handleFocusChange}
|
|
onKeyDown={this.handleKeyDown}
|
|
onStep={this.onStep}
|
|
onValueChange={this.onValueChange}
|
|
placeholder={this.props.placeholderText}
|
|
renderMode={this.props.renderMode}
|
|
showError={!!this.props.isFocused}
|
|
tooltip={this.props.tooltip}
|
|
value={value}
|
|
widgetId={this.props.widgetId}
|
|
{...conditionalProps}
|
|
/>
|
|
);
|
|
}
|
|
|
|
static getWidgetType(): WidgetType {
|
|
return "CURRENCY_INPUT_WIDGET";
|
|
}
|
|
}
|
|
|
|
export interface CurrencyInputWidgetProps extends BaseInputWidgetProps {
|
|
countryCode?: string;
|
|
currencyCode?: string;
|
|
noOfDecimals?: number;
|
|
allowCurrencyChange?: boolean;
|
|
decimals?: number;
|
|
defaultText?: number;
|
|
}
|
|
|
|
export default CurrencyInputWidget;
|