@transferwise/components 0.0.0-experimental-8f9699a → 0.0.0-experimental-dabc13b

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.
Files changed (73) hide show
  1. package/build/i18n/cs.json +1 -0
  2. package/build/i18n/de.json +1 -0
  3. package/build/i18n/es.json +1 -0
  4. package/build/i18n/fr.json +1 -0
  5. package/build/i18n/hu.json +1 -0
  6. package/build/i18n/id.json +1 -0
  7. package/build/i18n/it.json +1 -0
  8. package/build/i18n/ja.json +1 -0
  9. package/build/i18n/pl.json +1 -0
  10. package/build/i18n/pt.json +4 -3
  11. package/build/i18n/ro.json +4 -3
  12. package/build/i18n/ru.json +2 -1
  13. package/build/i18n/th.json +1 -0
  14. package/build/i18n/tr.json +1 -0
  15. package/build/i18n/uk.json +1 -0
  16. package/build/i18n/zh-CN.json +1 -0
  17. package/build/i18n/zh-HK.json +1 -0
  18. package/build/index.esm.js +99 -159
  19. package/build/index.esm.js.map +1 -1
  20. package/build/index.js +99 -159
  21. package/build/index.js.map +1 -1
  22. package/build/main.css +1 -1
  23. package/build/styles/chips/Chip.css +1 -1
  24. package/build/styles/dateLookup/DateLookup.css +1 -1
  25. package/build/styles/main.css +1 -1
  26. package/build/types/dateLookup/DateLookup.d.ts.map +1 -1
  27. package/build/types/dateLookup/monthCalendar/table/MonthCalendarTable.d.ts +1 -1
  28. package/build/types/dateLookup/monthCalendar/table/MonthCalendarTable.d.ts.map +1 -1
  29. package/build/types/dateLookup/tableLink/TableLink.d.ts +4 -14
  30. package/build/types/dateLookup/tableLink/TableLink.d.ts.map +1 -1
  31. package/build/types/dateLookup/tableLink/index.d.ts +1 -1
  32. package/build/types/dateLookup/tableLink/index.d.ts.map +1 -1
  33. package/build/types/dateLookup/yearCalendar/table/YearCalendarTable.d.ts.map +1 -1
  34. package/package.json +2 -2
  35. package/src/chips/Chip.css +1 -1
  36. package/src/chips/Chip.less +9 -21
  37. package/src/dateLookup/DateLookup.css +1 -1
  38. package/src/dateLookup/DateLookup.js +4 -19
  39. package/src/dateLookup/DateLookup.keyboardEvents.spec.js +0 -12
  40. package/src/dateLookup/DateLookup.less +49 -39
  41. package/src/dateLookup/DateLookup.story.js +7 -8
  42. package/src/dateLookup/dayCalendar/table/DayCalendarTable.js +3 -28
  43. package/src/dateLookup/dayCalendar/table/DayCalendarTable.spec.js +0 -25
  44. package/src/dateLookup/monthCalendar/table/MonthCalendarTable.js +20 -33
  45. package/src/dateLookup/monthCalendar/table/MonthCalendarTable.spec.js +0 -33
  46. package/src/dateLookup/tableLink/TableLink.js +70 -0
  47. package/src/dateLookup/tableLink/TableLink.spec.js +15 -6
  48. package/src/dateLookup/yearCalendar/table/YearCalendarTable.js +11 -33
  49. package/src/dateLookup/yearCalendar/table/YearCalendarTable.spec.js +0 -26
  50. package/src/i18n/cs.json +1 -0
  51. package/src/i18n/de.json +1 -0
  52. package/src/i18n/es.json +1 -0
  53. package/src/i18n/fr.json +1 -0
  54. package/src/i18n/hu.json +1 -0
  55. package/src/i18n/id.json +1 -0
  56. package/src/i18n/it.json +1 -0
  57. package/src/i18n/ja.json +1 -0
  58. package/src/i18n/pl.json +1 -0
  59. package/src/i18n/pt.json +4 -3
  60. package/src/i18n/ro.json +4 -3
  61. package/src/i18n/ru.json +2 -1
  62. package/src/i18n/th.json +1 -0
  63. package/src/i18n/tr.json +1 -0
  64. package/src/i18n/uk.json +1 -0
  65. package/src/i18n/zh-CN.json +1 -0
  66. package/src/i18n/zh-HK.json +1 -0
  67. package/src/main.css +1 -1
  68. package/build/types/dateLookup/getFocusableTime/getFocusableTime.d.ts +0 -9
  69. package/build/types/dateLookup/getFocusableTime/getFocusableTime.d.ts.map +0 -1
  70. package/src/dateLookup/getFocusableTime/getFocusable.spec.ts +0 -40
  71. package/src/dateLookup/getFocusableTime/getFocusableTime.tsx +0 -14
  72. package/src/dateLookup/tableLink/TableLink.tsx +0 -79
  73. /package/src/dateLookup/tableLink/{index.ts → index.js} +0 -0
@@ -3575,10 +3575,6 @@ DateHeader.defaultProps = {
3575
3575
  };
3576
3576
  var DateHeader$1 = DateHeader;
3577
3577
 
3578
- function getFocusableTime(props) {
3579
- return props.timeSpan.find(time => props.isActive(time)) || props.timeSpan.find(time => props.isNow(time) && !props.isDisabled(time)) || props.timeSpan.find(time => !props.isDisabled(time));
3580
- }
3581
-
3582
3578
  // NB! Using with UTC timestamp (YYYY-MM-DD) might lead to unexpected results, for example
3583
3579
  // getStartOfDay(new Date('1995-01-01')) in Los Angeles returns 31 Dec 1994, but in
3584
3580
  // in Singapore it is 1 Jan 1995.
@@ -3590,56 +3586,61 @@ function getStartOfDay(date) {
3590
3586
  return new Date(date.getFullYear(), date.getMonth(), date.getDate());
3591
3587
  }
3592
3588
 
3593
- const TableLink = ({
3594
- item,
3595
- type,
3596
- title,
3597
- longTitle,
3598
- active,
3599
- disabled,
3600
- today,
3601
- autofocus,
3602
- onClick
3603
- }) => {
3604
- const buttonRef = useRef(null);
3605
- const intl = useIntl();
3606
- useEffect(() => {
3607
- if (autofocus) {
3608
- setTimeout(() => {
3609
- buttonRef.current?.focus();
3610
- }, 0);
3611
- }
3612
- }, [autofocus]);
3613
- const onCalendarClick = event => {
3589
+ class TableLink extends PureComponent {
3590
+ onClick = event => {
3614
3591
  event.preventDefault();
3615
- if (!disabled) {
3616
- onClick(item);
3592
+ if (!this.props.disabled) {
3593
+ this.props.onClick(this.props.item);
3617
3594
  }
3618
3595
  };
3619
- const calculateAriaLabel = () => {
3596
+ calculateAriaLabel = (longTitle, title, active, type, formatMessage) => {
3620
3597
  if (active) {
3621
- return `${longTitle || title || ''}, ${intl.formatMessage(messages$6.selected)} ${intl.formatMessage(messages$6[type])}`;
3598
+ return `${longTitle || title}, ${formatMessage(messages$6.selected)} ${formatMessage(messages$6[type])}`;
3622
3599
  }
3623
3600
  return longTitle || title;
3624
3601
  };
3625
- return /*#__PURE__*/jsx(Fragment, {
3626
- children: /*#__PURE__*/jsx("button", {
3627
- ref: buttonRef,
3628
- type: "button",
3629
- className: classNames(`tw-date-lookup-${type}-option np-text-body-default-bold`, {
3630
- active: !!active
3631
- }, {
3632
- today: !!today
3633
- }),
3634
- disabled: disabled,
3635
- tabIndex: autofocus ? 0 : -1,
3636
- "aria-label": calculateAriaLabel(),
3637
- "aria-pressed": active,
3638
- onClick: onCalendarClick,
3639
- children: title || item
3640
- })
3641
- });
3602
+ render() {
3603
+ const {
3604
+ item,
3605
+ type,
3606
+ title,
3607
+ longTitle,
3608
+ active,
3609
+ disabled,
3610
+ today,
3611
+ intl: {
3612
+ formatMessage
3613
+ }
3614
+ } = this.props;
3615
+ return /*#__PURE__*/jsx(Fragment, {
3616
+ children: /*#__PURE__*/jsx("button", {
3617
+ type: "button",
3618
+ className: `tw-date-lookup-${type}-option ${active ? 'active' : ''} ${today ? 'today' : ''} np-text-body-default-bold`,
3619
+ disabled: disabled,
3620
+ "aria-label": this.calculateAriaLabel(longTitle, title, active, type, formatMessage),
3621
+ "aria-pressed": active,
3622
+ onClick: this.onClick,
3623
+ children: title || item
3624
+ })
3625
+ });
3626
+ }
3627
+ }
3628
+ TableLink.propTypes = {
3629
+ item: PropTypes.number.isRequired,
3630
+ // day (1-31), month (0-11) or year (2018 etc)
3631
+ type: PropTypes.oneOf(['day', 'month', 'year']).isRequired,
3632
+ title: PropTypes.string,
3633
+ longTitle: PropTypes.string,
3634
+ active: PropTypes.bool.isRequired,
3635
+ disabled: PropTypes.bool.isRequired,
3636
+ today: PropTypes.bool.isRequired,
3637
+ onClick: PropTypes.func.isRequired
3642
3638
  };
3639
+ TableLink.defaultProps = {
3640
+ title: null,
3641
+ longTitle: null
3642
+ };
3643
+ var TableLink$1 = injectIntl(TableLink);
3643
3644
 
3644
3645
  const SHORT_DAY_FORMAT = {
3645
3646
  day: 'numeric'
@@ -3710,22 +3711,6 @@ class DayCalendarTable extends PureComponent {
3710
3711
  } = this.props;
3711
3712
  return !!(selectedDate && +new Date(viewYear, viewMonth, day) === +selectedDate);
3712
3713
  };
3713
- isToday = day => {
3714
- const {
3715
- viewMonth,
3716
- viewYear
3717
- } = this.props;
3718
- return Number(getStartOfDay(new Date())) === Number(new Date(viewYear, viewMonth, day));
3719
- };
3720
- getAutofocusDay = weeks => {
3721
- const days = weeks.flatMap(week => week);
3722
- return getFocusableTime({
3723
- isActive: this.isActive,
3724
- isNow: this.isToday,
3725
- isDisabled: this.isDisabled,
3726
- timeSpan: days
3727
- });
3728
- };
3729
3714
  render() {
3730
3715
  const {
3731
3716
  viewMonth,
@@ -3735,13 +3720,12 @@ class DayCalendarTable extends PureComponent {
3735
3720
  }
3736
3721
  } = this.props;
3737
3722
  const weeks = this.getTableStructure();
3738
- let autoFocusDay = this.getAutofocusDay(weeks, viewMonth, viewYear);
3739
3723
  return /*#__PURE__*/jsxs("table", {
3740
3724
  className: "table table-condensed table-bordered tw-date-lookup-calendar m-b-0",
3741
3725
  children: [/*#__PURE__*/jsx("thead", {
3742
3726
  children: /*#__PURE__*/jsx("tr", {
3743
3727
  children: this.days.map((day, index) => /*#__PURE__*/jsxs("th", {
3744
- className: index > 4 ? 'text-xs-center np-text-body-default' : 'text-xs-center np-text-body-default-bold',
3728
+ className: "text-xs-center np-text-body-default-bold",
3745
3729
  children: [/*#__PURE__*/jsx("span", {
3746
3730
  className: "hidden-xs",
3747
3731
  children: /*#__PURE__*/jsx("abbr", {
@@ -3760,16 +3744,15 @@ class DayCalendarTable extends PureComponent {
3760
3744
  }), /*#__PURE__*/jsx("tbody", {
3761
3745
  children: weeks.map((week, weekIndex) => /*#__PURE__*/jsx("tr", {
3762
3746
  children: week.map((day, dayIndex) => /*#__PURE__*/jsx("td", {
3763
- className: dayIndex > 4 ? 'weekend' : '',
3764
- children: day && /*#__PURE__*/jsx(TableLink, {
3747
+ className: dayIndex > 4 ? 'default' : '',
3748
+ children: day && /*#__PURE__*/jsx(TableLink$1, {
3765
3749
  item: day,
3766
3750
  type: "day",
3767
3751
  title: formatDate(new Date(viewYear, viewMonth, day), locale, SHORT_DAY_FORMAT),
3768
- autofocus: day === autoFocusDay,
3769
3752
  longTitle: formatDate(new Date(viewYear, viewMonth, day), locale),
3770
3753
  active: this.isActive(day),
3771
3754
  disabled: this.isDisabled(day),
3772
- today: this.isToday(day),
3755
+ today: +getStartOfDay(new Date()) === +new Date(viewYear, viewMonth, day),
3773
3756
  onClick: this.selectDay
3774
3757
  })
3775
3758
  }, dayIndex))
@@ -3870,11 +3853,11 @@ var DayCalendar$1 = injectIntl(DayCalendar);
3870
3853
 
3871
3854
  const ROWS$1 = 3;
3872
3855
  const COLS$1 = 4;
3873
- const MONTH_ONLY_FORMAT = {
3856
+ const MONTH_ONLY_FORMAY = {
3874
3857
  month: 'short'
3875
3858
  };
3876
3859
  const MonthCalendarTable = ({
3877
- selectedDate,
3860
+ selectedDate: selected,
3878
3861
  min,
3879
3862
  max,
3880
3863
  viewYear,
@@ -3884,37 +3867,19 @@ const MonthCalendarTable = ({
3884
3867
  const {
3885
3868
  locale
3886
3869
  } = useIntl();
3887
- const getLink = month => {
3888
- return /*#__PURE__*/jsx(TableLink, {
3889
- item: month,
3890
- type: "month",
3891
- title: formatDate(new Date(viewYear, month), locale, MONTH_ONLY_FORMAT),
3892
- active: isActive(month),
3893
- disabled: isDisabled(month),
3894
- today: viewYear === new Date().getFullYear() && month === new Date().getMonth(),
3895
- autofocus: autofocusMonth === month,
3896
- onClick: onSelect
3897
- });
3898
- };
3899
- const isActive = month => {
3900
- return selectedDate && month === selectedDate.getMonth() && viewYear === selectedDate.getFullYear();
3901
- };
3902
- const isThisMonth = month => {
3903
- return viewYear === new Date().getFullYear() && month === new Date().getMonth();
3904
- };
3870
+ const getLink = month => /*#__PURE__*/jsx(TableLink$1, {
3871
+ item: month,
3872
+ type: "month",
3873
+ title: formatDate(new Date(viewYear, month), locale, MONTH_ONLY_FORMAY),
3874
+ active: !!(selected && month === selected.getMonth() && viewYear === selected.getFullYear()),
3875
+ disabled: isDisabled(month),
3876
+ today: viewYear === new Date().getFullYear() && month === new Date().getMonth(),
3877
+ onClick: onSelect
3878
+ });
3905
3879
  const isDisabled = month => {
3906
3880
  const date = new Date(viewYear, month);
3907
3881
  return !!(min && date < new Date(min.getFullYear(), min.getMonth()) || max && date > new Date(max.getFullYear(), max.getMonth()));
3908
3882
  };
3909
- const autofocusMonth = (() => {
3910
- const months = [...new Array(ROWS$1 * COLS$1)].map((_, index) => index);
3911
- return getFocusableTime({
3912
- isActive,
3913
- isNow: isThisMonth,
3914
- isDisabled,
3915
- timeSpan: months
3916
- });
3917
- })();
3918
3883
  return /*#__PURE__*/jsxs("table", {
3919
3884
  className: "table table-condensed table-bordered tw-date-lookup-calendar np-text-body-default-bold m-b-0",
3920
3885
  children: [/*#__PURE__*/jsx("thead", {
@@ -4033,36 +3998,15 @@ const YearCalendarTable = ({
4033
3998
  locale
4034
3999
  } = useIntl();
4035
4000
  const startYear = viewYear - viewYear % 20;
4036
- const getLink = year => {
4037
- return /*#__PURE__*/jsx(TableLink, {
4038
- item: year,
4039
- type: "year",
4040
- title: formatDate(new Date(year, 0), locale, YEAR_ONLY_FORMAT),
4041
- active: isActive(year),
4042
- disabled: isDisabled(year),
4043
- today: isThisYear(year),
4044
- autofocus: autofocusYear === year,
4045
- onClick: onSelect
4046
- });
4047
- };
4048
- const isActive = year => {
4049
- return !!(selectedDate && year === selectedDate.getFullYear());
4050
- };
4051
- const isThisYear = year => {
4052
- return year === new Date().getFullYear();
4053
- };
4054
- const isDisabled = year => {
4055
- return !!(min && year < min.getFullYear() || max && year > max.getFullYear());
4056
- };
4057
- const autofocusYear = (() => {
4058
- const years = [...new Array(ROWS * COLS)].map((_, index) => startYear + index);
4059
- return getFocusableTime({
4060
- isActive,
4061
- isNow: isThisYear,
4062
- isDisabled,
4063
- timeSpan: years
4064
- });
4065
- })();
4001
+ const getLink = year => /*#__PURE__*/jsx(TableLink$1, {
4002
+ item: year,
4003
+ type: "year",
4004
+ title: formatDate(new Date(year, 0), locale, YEAR_ONLY_FORMAT),
4005
+ active: !!(selectedDate && year === selectedDate.getFullYear()),
4006
+ disabled: !!(min && year < min.getFullYear() || max && year > max.getFullYear()),
4007
+ today: year === new Date().getFullYear(),
4008
+ onClick: onSelect
4009
+ });
4066
4010
  return /*#__PURE__*/jsxs("table", {
4067
4011
  className: "table table-condensed table-bordered tw-date-lookup-calendar m-b-0",
4068
4012
  children: [/*#__PURE__*/jsx("thead", {
@@ -4169,7 +4113,6 @@ class DateLookup extends PureComponent {
4169
4113
  super(props);
4170
4114
  this.state = {
4171
4115
  selectedDate: getStartOfDay(props.value),
4172
- originalDate: null,
4173
4116
  min: getStartOfDay(props.min),
4174
4117
  max: getStartOfDay(props.max),
4175
4118
  viewMonth: (props.value || new Date()).getMonth(),
@@ -4232,22 +4175,12 @@ class DateLookup extends PureComponent {
4232
4175
  onFocus();
4233
4176
  }
4234
4177
  };
4235
- discard = () => {
4236
- const {
4237
- originalDate
4238
- } = this.state;
4239
- if (originalDate !== null) {
4240
- this.props.onChange(originalDate);
4241
- }
4242
- this.close();
4243
- };
4244
4178
  close = () => {
4245
4179
  const {
4246
4180
  onBlur
4247
4181
  } = this.props;
4248
4182
  this.setState({
4249
- open: false,
4250
- originalDate: null
4183
+ open: false
4251
4184
  });
4252
4185
  if (onBlur) {
4253
4186
  onBlur();
@@ -4255,8 +4188,7 @@ class DateLookup extends PureComponent {
4255
4188
  };
4256
4189
  handleKeyDown = event => {
4257
4190
  const {
4258
- open,
4259
- originalDate
4191
+ open
4260
4192
  } = this.state;
4261
4193
  switch (event.keyCode) {
4262
4194
  case KeyCodes.LEFT:
@@ -4292,9 +4224,6 @@ class DateLookup extends PureComponent {
4292
4224
  event.preventDefault();
4293
4225
  break;
4294
4226
  case KeyCodes.ESCAPE:
4295
- if (originalDate !== null) {
4296
- this.props.onChange(originalDate);
4297
- }
4298
4227
  this.close();
4299
4228
  event.preventDefault();
4300
4229
  break;
@@ -4305,14 +4234,8 @@ class DateLookup extends PureComponent {
4305
4234
  selectedDate,
4306
4235
  min,
4307
4236
  max,
4308
- mode,
4309
- originalDate
4237
+ mode
4310
4238
  } = this.state;
4311
- if (originalDate === null) {
4312
- this.setState({
4313
- originalDate: selectedDate
4314
- });
4315
- }
4316
4239
  let date;
4317
4240
  if (selectedDate) {
4318
4241
  date = new Date(mode === MODE.YEAR ? selectedDate.getFullYear() + yearsToAdd : selectedDate.getFullYear(), mode === MODE.MONTH ? selectedDate.getMonth() + monthsToAdd : selectedDate.getMonth(), mode === MODE.DAY ? selectedDate.getDate() + daysToAdd : selectedDate.getDate());
@@ -4445,7 +4368,7 @@ class DateLookup extends PureComponent {
4445
4368
  open: open,
4446
4369
  className: "tw-date-lookup-menu",
4447
4370
  position: Position.BOTTOM,
4448
- onClose: this.discard,
4371
+ onClose: this.close,
4449
4372
  children: this.getCalendar()
4450
4373
  })]
4451
4374
  });
@@ -14621,6 +14544,7 @@ var cs = {
14621
14544
  "neptune.Link.opensInNewTab": "(opens in new tab)",
14622
14545
  "neptune.MoneyInput.Select.placeholder": "Vybrat možnost...",
14623
14546
  "neptune.Select.searchPlaceholder": "Hledat...",
14547
+ "neptune.SelectInput.noResultsFound": "Nebyly nalezeny žádné výsledky",
14624
14548
  "neptune.Summary.statusDone": "Položka dokončena",
14625
14549
  "neptune.Summary.statusNotDone": "Položka k dokončení",
14626
14550
  "neptune.Summary.statusPending": "Čekající položka",
@@ -14674,6 +14598,7 @@ var de = {
14674
14598
  "neptune.Link.opensInNewTab": "(wird in einem neuen Tab geöffnet)",
14675
14599
  "neptune.MoneyInput.Select.placeholder": "Wähle eine der Möglichkeiten aus...",
14676
14600
  "neptune.Select.searchPlaceholder": "Wird gesucht...",
14601
+ "neptune.SelectInput.noResultsFound": "Keine Ergebnisse gefunden",
14677
14602
  "neptune.Summary.statusDone": "Schritt erledigt",
14678
14603
  "neptune.Summary.statusNotDone": "Schritt noch zu erledigen",
14679
14604
  "neptune.Summary.statusPending": "Schritt ausstehend",
@@ -14727,6 +14652,7 @@ var es = {
14727
14652
  "neptune.Link.opensInNewTab": "(se abre en una pestaña nueva)",
14728
14653
  "neptune.MoneyInput.Select.placeholder": "Selecciona una opción...",
14729
14654
  "neptune.Select.searchPlaceholder": "Buscar...",
14655
+ "neptune.SelectInput.noResultsFound": "No se han encontrado resultados",
14730
14656
  "neptune.Summary.statusDone": "Apartado listo",
14731
14657
  "neptune.Summary.statusNotDone": "Apartado a completar",
14732
14658
  "neptune.Summary.statusPending": "Apartado pendiente",
@@ -14780,6 +14706,7 @@ var fr = {
14780
14706
  "neptune.Link.opensInNewTab": "(ouvre dans un nouvel onglet)",
14781
14707
  "neptune.MoneyInput.Select.placeholder": "Sélectionner une option...",
14782
14708
  "neptune.Select.searchPlaceholder": "Recherche...",
14709
+ "neptune.SelectInput.noResultsFound": "Aucun résultat trouvé",
14783
14710
  "neptune.Summary.statusDone": "Validé",
14784
14711
  "neptune.Summary.statusNotDone": "À compléter",
14785
14712
  "neptune.Summary.statusPending": "En attente",
@@ -14833,6 +14760,7 @@ var hu = {
14833
14760
  "neptune.Link.opensInNewTab": "(új lapon nyílik meg)",
14834
14761
  "neptune.MoneyInput.Select.placeholder": "Válassz ki egy lehetőséget...",
14835
14762
  "neptune.Select.searchPlaceholder": "Keresés...",
14763
+ "neptune.SelectInput.noResultsFound": "Nincs találat",
14836
14764
  "neptune.Summary.statusDone": "Kész",
14837
14765
  "neptune.Summary.statusNotDone": "Hátravan",
14838
14766
  "neptune.Summary.statusPending": "Függőben",
@@ -14886,6 +14814,7 @@ var id = {
14886
14814
  "neptune.Link.opensInNewTab": "(terbuka di tab baru)",
14887
14815
  "neptune.MoneyInput.Select.placeholder": "Pilih opsi...",
14888
14816
  "neptune.Select.searchPlaceholder": "Cari...",
14817
+ "neptune.SelectInput.noResultsFound": "Hasil tidak ditemukan",
14889
14818
  "neptune.Summary.statusDone": "Item selesai",
14890
14819
  "neptune.Summary.statusNotDone": "Item yang harus dilakukan",
14891
14820
  "neptune.Summary.statusPending": "Item tertunda",
@@ -14939,6 +14868,7 @@ var it = {
14939
14868
  "neptune.Link.opensInNewTab": "(si apre in una nuova scheda)",
14940
14869
  "neptune.MoneyInput.Select.placeholder": "Seleziona un'opzione...",
14941
14870
  "neptune.Select.searchPlaceholder": "Cerca...",
14871
+ "neptune.SelectInput.noResultsFound": "Nessun risultato trovato",
14942
14872
  "neptune.Summary.statusDone": "Completato",
14943
14873
  "neptune.Summary.statusNotDone": "Da completare",
14944
14874
  "neptune.Summary.statusPending": "In corso",
@@ -14992,6 +14922,7 @@ var ja = {
14992
14922
  "neptune.Link.opensInNewTab": "(新しいタブで開きます)",
14993
14923
  "neptune.MoneyInput.Select.placeholder": "選択してください...",
14994
14924
  "neptune.Select.searchPlaceholder": "検索... ",
14925
+ "neptune.SelectInput.noResultsFound": "結果が見つかりませんでした",
14995
14926
  "neptune.Summary.statusDone": "完了",
14996
14927
  "neptune.Summary.statusNotDone": "未対応",
14997
14928
  "neptune.Summary.statusPending": "保留中",
@@ -15045,6 +14976,7 @@ var pl = {
15045
14976
  "neptune.Link.opensInNewTab": "(otworzy się w nowej zakładce)",
15046
14977
  "neptune.MoneyInput.Select.placeholder": "Wybierz opcję...",
15047
14978
  "neptune.Select.searchPlaceholder": "Wyszukaj...",
14979
+ "neptune.SelectInput.noResultsFound": "Nie znaleziono wyników",
15048
14980
  "neptune.Summary.statusDone": "Czynność wykonana",
15049
14981
  "neptune.Summary.statusNotDone": "Czynność do wykonania",
15050
14982
  "neptune.Summary.statusPending": "Czynność oczekująca",
@@ -15087,17 +15019,18 @@ var pt = {
15087
15019
  "neptune.DateInput.month.label": "Mês",
15088
15020
  "neptune.DateInput.year.label": "Ano",
15089
15021
  "neptune.DateLookup.day": "dia",
15090
- "neptune.DateLookup.goTo20YearView": "Go to 20 year view",
15022
+ "neptune.DateLookup.goTo20YearView": "Acessar a visualização de 20 anos",
15091
15023
  "neptune.DateLookup.month": "mês",
15092
15024
  "neptune.DateLookup.next": "próximo",
15093
15025
  "neptune.DateLookup.previous": "anterior",
15094
15026
  "neptune.DateLookup.selected": "selecionada",
15095
15027
  "neptune.DateLookup.twentyYears": "20 anos",
15096
15028
  "neptune.DateLookup.year": "ano",
15097
- "neptune.FlowNavigation.back": "back to previous step",
15098
- "neptune.Link.opensInNewTab": "(abrir a página em uma nova aba)",
15029
+ "neptune.FlowNavigation.back": "voltar à etapa anterior",
15030
+ "neptune.Link.opensInNewTab": "(abre em uma nova aba)",
15099
15031
  "neptune.MoneyInput.Select.placeholder": "Escolha uma opção...",
15100
15032
  "neptune.Select.searchPlaceholder": "Buscar...",
15033
+ "neptune.SelectInput.noResultsFound": "Nenhum resultado encontrado",
15101
15034
  "neptune.Summary.statusDone": "Pronto",
15102
15035
  "neptune.Summary.statusNotDone": "Não iniciado",
15103
15036
  "neptune.Summary.statusPending": "Pendente",
@@ -15141,16 +15074,17 @@ var ro = {
15141
15074
  "neptune.DateInput.year.label": "An",
15142
15075
  "neptune.DateLookup.day": "zi",
15143
15076
  "neptune.DateLookup.goTo20YearView": "Accesează vizualizarea pe 20 de ani",
15144
- "neptune.DateLookup.month": "luna",
15077
+ "neptune.DateLookup.month": "lună",
15145
15078
  "neptune.DateLookup.next": "înainte",
15146
- "neptune.DateLookup.previous": "precedenta",
15079
+ "neptune.DateLookup.previous": "înapoi",
15147
15080
  "neptune.DateLookup.selected": "selectată",
15148
15081
  "neptune.DateLookup.twentyYears": "20 de ani",
15149
- "neptune.DateLookup.year": "anul",
15082
+ "neptune.DateLookup.year": "an",
15150
15083
  "neptune.FlowNavigation.back": "înapoi la pasul anterior",
15151
15084
  "neptune.Link.opensInNewTab": "(se deschide într-o filă nouă)",
15152
15085
  "neptune.MoneyInput.Select.placeholder": "Selectează o opţiune...",
15153
15086
  "neptune.Select.searchPlaceholder": "Caută...",
15087
+ "neptune.SelectInput.noResultsFound": "Nu s-a găsit niciun rezultat",
15154
15088
  "neptune.Summary.statusDone": "Finalizat",
15155
15089
  "neptune.Summary.statusNotDone": "De făcut",
15156
15090
  "neptune.Summary.statusPending": "În așteptare",
@@ -15196,7 +15130,7 @@ var ru = {
15196
15130
  "neptune.DateLookup.goTo20YearView": "Перейти к обзору 20 лет",
15197
15131
  "neptune.DateLookup.month": "месяц",
15198
15132
  "neptune.DateLookup.next": "далее",
15199
- "neptune.DateLookup.previous": "предыдущий",
15133
+ "neptune.DateLookup.previous": "назад",
15200
15134
  "neptune.DateLookup.selected": "выбрано",
15201
15135
  "neptune.DateLookup.twentyYears": "20 лет",
15202
15136
  "neptune.DateLookup.year": "год",
@@ -15204,6 +15138,7 @@ var ru = {
15204
15138
  "neptune.Link.opensInNewTab": "(откроется в новой вкладке)",
15205
15139
  "neptune.MoneyInput.Select.placeholder": "Выберите вариант...",
15206
15140
  "neptune.Select.searchPlaceholder": "Поиск...",
15141
+ "neptune.SelectInput.noResultsFound": "Ничего не найдено",
15207
15142
  "neptune.Summary.statusDone": "Этап завершен",
15208
15143
  "neptune.Summary.statusNotDone": "Этап к выполнению",
15209
15144
  "neptune.Summary.statusPending": "Этап в процессе",
@@ -15257,6 +15192,7 @@ var th = {
15257
15192
  "neptune.Link.opensInNewTab": "(opens in new tab)",
15258
15193
  "neptune.MoneyInput.Select.placeholder": "เลือกตัวเลือก...",
15259
15194
  "neptune.Select.searchPlaceholder": "ค้นหา...",
15195
+ "neptune.SelectInput.noResultsFound": "ไม่พบผลลัพธ์",
15260
15196
  "neptune.Summary.statusDone": "รายการที่ทำแล้ว",
15261
15197
  "neptune.Summary.statusNotDone": "รายการที่ต้องทำ",
15262
15198
  "neptune.Summary.statusPending": "รายการที่รอดำเนินการ",
@@ -15310,6 +15246,7 @@ var tr = {
15310
15246
  "neptune.Link.opensInNewTab": "(yeni sekmede açılır)",
15311
15247
  "neptune.MoneyInput.Select.placeholder": "Bir seçenek seçin...",
15312
15248
  "neptune.Select.searchPlaceholder": "Ara...",
15249
+ "neptune.SelectInput.noResultsFound": "Sonuç bulunamadı",
15313
15250
  "neptune.Summary.statusDone": "Tamamlanan aşama",
15314
15251
  "neptune.Summary.statusNotDone": "Yapılacak",
15315
15252
  "neptune.Summary.statusPending": "Bekliyor",
@@ -15363,6 +15300,7 @@ var uk = {
15363
15300
  "neptune.Link.opensInNewTab": "(opens in new tab)",
15364
15301
  "neptune.MoneyInput.Select.placeholder": "Виберіть варіант…",
15365
15302
  "neptune.Select.searchPlaceholder": "Пошук…",
15303
+ "neptune.SelectInput.noResultsFound": "Нічого не знайдено",
15366
15304
  "neptune.Summary.statusDone": "Виконано",
15367
15305
  "neptune.Summary.statusNotDone": "Не виконано",
15368
15306
  "neptune.Summary.statusPending": "Виконується",
@@ -15416,6 +15354,7 @@ var zhCN = {
15416
15354
  "neptune.Link.opensInNewTab": "(opens in new tab)",
15417
15355
  "neptune.MoneyInput.Select.placeholder": "请选择...",
15418
15356
  "neptune.Select.searchPlaceholder": "搜索",
15357
+ "neptune.SelectInput.noResultsFound": "找不到结果",
15419
15358
  "neptune.Summary.statusDone": "已完成",
15420
15359
  "neptune.Summary.statusNotDone": "未完成",
15421
15360
  "neptune.Summary.statusPending": "待处理",
@@ -15469,6 +15408,7 @@ var zhHK = {
15469
15408
  "neptune.Link.opensInNewTab": "(在新分頁中開啟)",
15470
15409
  "neptune.MoneyInput.Select.placeholder": "選擇一個選項…",
15471
15410
  "neptune.Select.searchPlaceholder": "搜尋…",
15411
+ "neptune.SelectInput.noResultsFound": "找不到任何結果",
15472
15412
  "neptune.Summary.statusDone": "已完成事項",
15473
15413
  "neptune.Summary.statusNotDone": "未完成事項",
15474
15414
  "neptune.Summary.statusPending": "待處理事項",