@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.
@@ -2972,7 +2972,7 @@ const DateInput = ({
2972
2972
  const returnOrderedInputs = () => {
2973
2973
  if (monthYearOnly) {
2974
2974
  return /*#__PURE__*/jsxs(Fragment, {
2975
- children: ["!yearFirst && ", getMonth(), getYear(), "yearFirst && ", getMonth()]
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: ["!yearFirst && ", getMonth(), getYear(), "yearFirst && ", getMonth()]
3008
+ children: [!yearFirst && getMonth(), getYear(), yearFirst && getMonth()]
3009
3009
  });
3010
3010
  }
3011
3011
  if (monthBeforeDay) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transferwise/components",
3
- "version": "0.0.0-experimental-7fb3545",
3
+ "version": "0.0.0-experimental-1d96fa0",
4
4
  "description": "Neptune React components",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -302,9 +302,9 @@ const DateInput = ({
302
302
  if (monthYearOnly) {
303
303
  return (
304
304
  <>
305
- !yearFirst && {getMonth()}
305
+ {!yearFirst && getMonth()}
306
306
  {getYear()}
307
- yearFirst && {getMonth()}
307
+ {yearFirst && getMonth()}
308
308
  </>
309
309
  );
310
310
  }