@transferwise/components 0.0.0-experimental-0cf5b04 → 0.0.0-experimental-e2abab4
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/README.md +1 -1
- package/build/i18n/it.json +1 -1
- package/build/index.esm.js +7 -3
- package/build/index.esm.js.map +1 -1
- package/build/index.js +7 -3
- package/build/index.js.map +1 -1
- package/build/mocks.esm.js +33 -27
- package/build/mocks.esm.js.map +1 -1
- package/build/mocks.js +33 -27
- package/build/mocks.js.map +1 -1
- package/build/types/dateInput/DateInput.d.ts.map +1 -1
- package/package.json +17 -1
- package/src/dateInput/DateInput.tsx +6 -2
- package/src/i18n/it.json +1 -1
- package/build/mocks.d.ts +0 -9
- package/build/mocks.d.ts.map +0 -1
package/build/index.js
CHANGED
|
@@ -2967,7 +2967,9 @@ const DateInput = ({
|
|
|
2967
2967
|
}), /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
2968
2968
|
className: `input-group input-group-${size}`,
|
|
2969
2969
|
children: /*#__PURE__*/jsxRuntime.jsx(Input, {
|
|
2970
|
-
type: "
|
|
2970
|
+
type: "text",
|
|
2971
|
+
inputMode: "numeric",
|
|
2972
|
+
pattern: "[0-9]*",
|
|
2971
2973
|
name: "day",
|
|
2972
2974
|
autoComplete: dayAutoComplete,
|
|
2973
2975
|
value: day || '',
|
|
@@ -2990,7 +2992,9 @@ const DateInput = ({
|
|
|
2990
2992
|
}), /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
2991
2993
|
className: `input-group input-group-${size}`,
|
|
2992
2994
|
children: /*#__PURE__*/jsxRuntime.jsx(Input, {
|
|
2993
|
-
type: "
|
|
2995
|
+
type: "text",
|
|
2996
|
+
inputMode: "numeric",
|
|
2997
|
+
pattern: "[0-9]*",
|
|
2994
2998
|
name: "year",
|
|
2995
2999
|
autoComplete: yearAutoComplete,
|
|
2996
3000
|
placeholder: placeholders.year,
|
|
@@ -14462,7 +14466,7 @@ var it = {
|
|
|
14462
14466
|
"neptune.Upload.csButtonText": "Carica un altro documento?",
|
|
14463
14467
|
"neptune.Upload.csFailureText": "Caricamento fallito. Per favore riprova",
|
|
14464
14468
|
"neptune.Upload.csSuccessText": "Caricamento completato!",
|
|
14465
|
-
"neptune.Upload.csTooLargeMessage": "Carica un file
|
|
14469
|
+
"neptune.Upload.csTooLargeMessage": "Carica un file inferiore a {maxSize}MB",
|
|
14466
14470
|
"neptune.Upload.csWrongTypeMessage": "Formato del documento non supportato. Riprova con un formato diverso",
|
|
14467
14471
|
"neptune.Upload.psButtonText": "Annulla",
|
|
14468
14472
|
"neptune.Upload.psProcessingText": "Caricamento...",
|