@transferwise/components 0.0.0-experimental-7fb3545 → 0.0.0-experimental-1d96fa0
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/build/index.esm.js +1 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/src/dateInput/DateInput.tsx +2 -2
package/build/index.esm.js
CHANGED
|
@@ -2972,7 +2972,7 @@ const DateInput = ({
|
|
|
2972
2972
|
const returnOrderedInputs = () => {
|
|
2973
2973
|
if (monthYearOnly) {
|
|
2974
2974
|
return /*#__PURE__*/jsxs(Fragment, {
|
|
2975
|
-
children: [
|
|
2975
|
+
children: [!yearFirst && getMonth(), getYear(), yearFirst && getMonth()]
|
|
2976
2976
|
});
|
|
2977
2977
|
}
|
|
2978
2978
|
if (monthBeforeDay) {
|
package/build/index.js
CHANGED
|
@@ -3005,7 +3005,7 @@ const DateInput = ({
|
|
|
3005
3005
|
const returnOrderedInputs = () => {
|
|
3006
3006
|
if (monthYearOnly) {
|
|
3007
3007
|
return /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
3008
|
-
children: [
|
|
3008
|
+
children: [!yearFirst && getMonth(), getYear(), yearFirst && getMonth()]
|
|
3009
3009
|
});
|
|
3010
3010
|
}
|
|
3011
3011
|
if (monthBeforeDay) {
|
package/package.json
CHANGED