@transferwise/components 45.28.0 → 46.0.0

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 (59) hide show
  1. package/build/i18n/cs.json +2 -0
  2. package/build/i18n/de.json +2 -0
  3. package/build/i18n/es.json +2 -0
  4. package/build/i18n/fr.json +2 -0
  5. package/build/i18n/hu.json +2 -0
  6. package/build/i18n/id.json +2 -0
  7. package/build/i18n/it.json +2 -0
  8. package/build/i18n/ja.json +2 -0
  9. package/build/i18n/pl.json +2 -0
  10. package/build/i18n/pt.json +5 -3
  11. package/build/i18n/ro.json +5 -3
  12. package/build/i18n/ru.json +3 -1
  13. package/build/i18n/th.json +2 -0
  14. package/build/i18n/tr.json +2 -0
  15. package/build/i18n/uk.json +2 -0
  16. package/build/i18n/zh-CN.json +8 -6
  17. package/build/i18n/zh-HK.json +2 -0
  18. package/build/index.esm.js +86 -67
  19. package/build/index.esm.js.map +1 -1
  20. package/build/index.js +86 -66
  21. package/build/index.js.map +1 -1
  22. package/build/types/common/hooks/useLayout/useLayout.d.ts +9 -6
  23. package/build/types/common/hooks/useLayout/useLayout.d.ts.map +1 -1
  24. package/build/types/index.d.ts +1 -0
  25. package/build/types/index.d.ts.map +1 -1
  26. package/build/types/inputs/SelectInput.d.ts.map +1 -1
  27. package/package.json +1 -1
  28. package/src/common/hooks/useLayout/useLayout.ts +21 -49
  29. package/src/common/responsivePanel/ResponsivePanel.spec.js +3 -1
  30. package/src/dateLookup/DateLookup.testingLibrary.spec.js +1 -19
  31. package/src/dateLookup/dateHeader/DateHeader.spec.js +2 -0
  32. package/src/drawer/Drawer.rtl.spec.js +3 -1
  33. package/src/drawer/Drawer.spec.js +2 -0
  34. package/src/i18n/cs.json +2 -0
  35. package/src/i18n/de.json +2 -0
  36. package/src/i18n/es.json +2 -0
  37. package/src/i18n/fr.json +2 -0
  38. package/src/i18n/hu.json +2 -0
  39. package/src/i18n/id.json +2 -0
  40. package/src/i18n/it.json +2 -0
  41. package/src/i18n/ja.json +2 -0
  42. package/src/i18n/pl.json +2 -0
  43. package/src/i18n/pt.json +5 -3
  44. package/src/i18n/ro.json +5 -3
  45. package/src/i18n/ru.json +3 -1
  46. package/src/i18n/th.json +2 -0
  47. package/src/i18n/tr.json +2 -0
  48. package/src/i18n/uk.json +2 -0
  49. package/src/i18n/zh-CN.json +8 -6
  50. package/src/i18n/zh-HK.json +2 -0
  51. package/src/index.ts +1 -0
  52. package/src/info/Info.spec.js +7 -11
  53. package/src/inputs/SelectInput.spec.tsx +5 -5
  54. package/src/inputs/SelectInput.tsx +16 -3
  55. package/src/modal/Modal.rtl.spec.js +3 -1
  56. package/src/modal/Modal.spec.js +2 -0
  57. package/src/modal/Modal.tsx +2 -2
  58. package/src/ssr.spec.js +1 -0
  59. package/src/uploadInput/UploadInput.spec.tsx +3 -1
@@ -1847,43 +1847,36 @@ const useHasIntersected = ({
1847
1847
  return [hasIntersected];
1848
1848
  };
1849
1849
 
1850
+ function useMedia(query) {
1851
+ return useSyncExternalStore(onStoreChange => {
1852
+ const mediaQueryList = window.matchMedia(query);
1853
+ mediaQueryList.addEventListener('change', onStoreChange);
1854
+ return () => {
1855
+ mediaQueryList.removeEventListener('change', onStoreChange);
1856
+ };
1857
+ }, () => typeof window !== 'undefined' ? window.matchMedia(query).matches : undefined, () => undefined);
1858
+ }
1859
+
1860
+ function useScreenSize(size) {
1861
+ return useMedia(`(min-width: ${size}px)`);
1862
+ }
1863
+
1864
+ /**
1865
+ * @deprecated Prefer `useScreenSize` instead.
1866
+ */
1850
1867
  const useLayout = () => {
1851
- const windowReference = typeof window === 'undefined' ? undefined : window;
1852
- const [breakpoint, setBreakpoint] = useState();
1853
- const [clientWidth] = useClientWidth({
1854
- ref: windowReference
1855
- });
1856
- useEffect(() => {
1857
- if (!clientWidth) {
1858
- return;
1859
- }
1860
- if (clientWidth <= Breakpoint.EXTRA_SMALL) {
1861
- setBreakpoint(Breakpoint.EXTRA_SMALL);
1862
- return;
1863
- }
1864
- if (Breakpoint.EXTRA_SMALL < clientWidth && clientWidth <= Breakpoint.SMALL) {
1865
- setBreakpoint(Breakpoint.SMALL);
1866
- return;
1867
- }
1868
- if (Breakpoint.SMALL < clientWidth && clientWidth <= Breakpoint.MEDIUM) {
1869
- setBreakpoint(Breakpoint.MEDIUM);
1870
- return;
1871
- }
1872
- if (Breakpoint.MEDIUM < clientWidth && clientWidth <= Breakpoint.LARGE) {
1873
- setBreakpoint(Breakpoint.LARGE);
1874
- return;
1875
- }
1876
- if (Breakpoint.LARGE < clientWidth) {
1877
- setBreakpoint(Breakpoint.EXTRA_LARGE);
1878
- }
1879
- }, [clientWidth]);
1868
+ const screenXs = useScreenSize(Breakpoint.EXTRA_SMALL);
1869
+ const screenSm = useScreenSize(Breakpoint.SMALL);
1870
+ const screenMd = useScreenSize(Breakpoint.MEDIUM);
1871
+ const screenLg = useScreenSize(Breakpoint.LARGE);
1872
+ const screenXl = useScreenSize(Breakpoint.EXTRA_LARGE);
1880
1873
  return {
1881
- isMobile: !!breakpoint && [Breakpoint.EXTRA_SMALL, Breakpoint.SMALL].includes(breakpoint),
1882
- isExtraSmall: breakpoint === Breakpoint.EXTRA_SMALL,
1883
- isSmall: breakpoint === Breakpoint.SMALL,
1884
- isMedium: breakpoint === Breakpoint.MEDIUM,
1885
- isLarge: breakpoint === Breakpoint.LARGE,
1886
- isExtraLarge: breakpoint === Breakpoint.EXTRA_LARGE
1874
+ isMobile: screenSm != null ? !screenSm : undefined,
1875
+ isExtraSmall: screenXs,
1876
+ isSmall: screenSm,
1877
+ isMedium: screenMd,
1878
+ isLarge: screenLg,
1879
+ isExtraLarge: screenXl
1887
1880
  };
1888
1881
  };
1889
1882
 
@@ -2008,16 +2001,6 @@ Drawer.defaultProps = {
2008
2001
  };
2009
2002
  var Drawer$1 = Drawer;
2010
2003
 
2011
- function useMedia(query) {
2012
- return useSyncExternalStore(onStoreChange => {
2013
- const mediaQueryList = window.matchMedia(query);
2014
- mediaQueryList.addEventListener('change', onStoreChange);
2015
- return () => {
2016
- mediaQueryList.removeEventListener('change', onStoreChange);
2017
- };
2018
- }, () => typeof window !== 'undefined' ? window.matchMedia(query).matches : undefined, () => undefined);
2019
- }
2020
-
2021
2004
  const INITIAL_Y_POSITION = 0;
2022
2005
  const CONTENT_SCROLL_THRESHOLD = 1;
2023
2006
  const MOVE_OFFSET_THRESHOLD = 50;
@@ -6026,14 +6009,13 @@ const Modal = ({
6026
6009
  }) => {
6027
6010
  const checkSpecialClasses = classToCheck => className?.split(' ').includes(classToCheck);
6028
6011
  const {
6029
- isMobile,
6030
- isMedium: isTablet
6012
+ isMedium
6031
6013
  } = useLayout();
6032
6014
  // These should be replaced with props in breaking change.
6033
6015
  const isCompact = checkSpecialClasses('compact');
6034
6016
  const noDivider = checkSpecialClasses('no-divider');
6035
6017
  const contentReference = useRef(null);
6036
- return isMobile || isTablet ? /*#__PURE__*/jsx(Drawer$1, {
6018
+ return !isMedium ? /*#__PURE__*/jsx(Drawer$1, {
6037
6019
  open: open,
6038
6020
  headerTitle: title,
6039
6021
  footerContent: footer,
@@ -6467,10 +6449,6 @@ const SearchInput = /*#__PURE__*/forwardRef(function SearchInput({
6467
6449
  });
6468
6450
  });
6469
6451
 
6470
- function useScreenSize(size) {
6471
- return useMedia(`(min-width: ${size}px)`);
6472
- }
6473
-
6474
6452
  const PolymorphicWithOverrides = /*#__PURE__*/forwardRef(function PolymorphicWithOverrides({
6475
6453
  __overrides: {
6476
6454
  as: Element,
@@ -6899,6 +6877,11 @@ function SelectInput({
6899
6877
  ...mergeProps({
6900
6878
  onClick: () => {
6901
6879
  setOpen(prev => !prev);
6880
+ },
6881
+ onKeyDown: event => {
6882
+ if (event.key === ' ' || event.key === 'Enter' || event.key === 'ArrowDown' || event.key === 'ArrowUp') {
6883
+ setOpen(prev => !prev);
6884
+ }
6902
6885
  }
6903
6886
  }, getInteractionProps())
6904
6887
  },
@@ -6944,6 +6927,7 @@ function SelectInputTriggerButton({
6944
6927
  const {
6945
6928
  ref,
6946
6929
  onClick,
6930
+ onKeyDown,
6947
6931
  ...interactionProps
6948
6932
  } = useContext(SelectInputTriggerButtonPropsContext);
6949
6933
  return /*#__PURE__*/jsx(Listbox.Button, {
@@ -6954,7 +6938,8 @@ function SelectInputTriggerButton({
6954
6938
  ...interactionProps
6955
6939
  },
6956
6940
  ...mergeProps({
6957
- onClick
6941
+ onClick,
6942
+ onKeyDown
6958
6943
  }, restProps)
6959
6944
  });
6960
6945
  }
@@ -14679,9 +14664,11 @@ var cs = {
14679
14664
  "neptune.DateLookup.twentyYears": "20 let",
14680
14665
  "neptune.DateLookup.year": "rok",
14681
14666
  "neptune.FlowNavigation.back": "back to previous step",
14667
+ "neptune.Info.ariaLabel": "Více informací",
14682
14668
  "neptune.Link.opensInNewTab": "(opens in new tab)",
14683
14669
  "neptune.MoneyInput.Select.placeholder": "Vybrat možnost...",
14684
14670
  "neptune.Select.searchPlaceholder": "Hledat...",
14671
+ "neptune.SelectInput.noResultsFound": "Nebyly nalezeny žádné výsledky",
14685
14672
  "neptune.Summary.statusDone": "Položka dokončena",
14686
14673
  "neptune.Summary.statusNotDone": "Položka k dokončení",
14687
14674
  "neptune.Summary.statusPending": "Čekající položka",
@@ -14732,9 +14719,11 @@ var de = {
14732
14719
  "neptune.DateLookup.twentyYears": "20 Jahre",
14733
14720
  "neptune.DateLookup.year": "Jahr",
14734
14721
  "neptune.FlowNavigation.back": "zurück zum vorherigen Schritt",
14722
+ "neptune.Info.ariaLabel": "Weitere Informationen",
14735
14723
  "neptune.Link.opensInNewTab": "(wird in einem neuen Tab geöffnet)",
14736
14724
  "neptune.MoneyInput.Select.placeholder": "Wähle eine der Möglichkeiten aus...",
14737
14725
  "neptune.Select.searchPlaceholder": "Wird gesucht...",
14726
+ "neptune.SelectInput.noResultsFound": "Keine Ergebnisse gefunden",
14738
14727
  "neptune.Summary.statusDone": "Schritt erledigt",
14739
14728
  "neptune.Summary.statusNotDone": "Schritt noch zu erledigen",
14740
14729
  "neptune.Summary.statusPending": "Schritt ausstehend",
@@ -14785,9 +14774,11 @@ var es = {
14785
14774
  "neptune.DateLookup.twentyYears": "20 años",
14786
14775
  "neptune.DateLookup.year": "año",
14787
14776
  "neptune.FlowNavigation.back": "volver al paso anterior",
14777
+ "neptune.Info.ariaLabel": "Más información",
14788
14778
  "neptune.Link.opensInNewTab": "(se abre en una pestaña nueva)",
14789
14779
  "neptune.MoneyInput.Select.placeholder": "Selecciona una opción...",
14790
14780
  "neptune.Select.searchPlaceholder": "Buscar...",
14781
+ "neptune.SelectInput.noResultsFound": "No se han encontrado resultados",
14791
14782
  "neptune.Summary.statusDone": "Apartado listo",
14792
14783
  "neptune.Summary.statusNotDone": "Apartado a completar",
14793
14784
  "neptune.Summary.statusPending": "Apartado pendiente",
@@ -14838,9 +14829,11 @@ var fr = {
14838
14829
  "neptune.DateLookup.twentyYears": "20 ans",
14839
14830
  "neptune.DateLookup.year": "année",
14840
14831
  "neptune.FlowNavigation.back": "revenir à l'étape précédente",
14832
+ "neptune.Info.ariaLabel": "Plus d'informations",
14841
14833
  "neptune.Link.opensInNewTab": "(ouvre dans un nouvel onglet)",
14842
14834
  "neptune.MoneyInput.Select.placeholder": "Sélectionner une option...",
14843
14835
  "neptune.Select.searchPlaceholder": "Recherche...",
14836
+ "neptune.SelectInput.noResultsFound": "Aucun résultat trouvé",
14844
14837
  "neptune.Summary.statusDone": "Validé",
14845
14838
  "neptune.Summary.statusNotDone": "À compléter",
14846
14839
  "neptune.Summary.statusPending": "En attente",
@@ -14891,9 +14884,11 @@ var hu = {
14891
14884
  "neptune.DateLookup.twentyYears": "20 év",
14892
14885
  "neptune.DateLookup.year": "év",
14893
14886
  "neptune.FlowNavigation.back": "vissza az előző lépéshez",
14887
+ "neptune.Info.ariaLabel": "További információ",
14894
14888
  "neptune.Link.opensInNewTab": "(új lapon nyílik meg)",
14895
14889
  "neptune.MoneyInput.Select.placeholder": "Válassz ki egy lehetőséget...",
14896
14890
  "neptune.Select.searchPlaceholder": "Keresés...",
14891
+ "neptune.SelectInput.noResultsFound": "Nincs találat",
14897
14892
  "neptune.Summary.statusDone": "Kész",
14898
14893
  "neptune.Summary.statusNotDone": "Hátravan",
14899
14894
  "neptune.Summary.statusPending": "Függőben",
@@ -14944,9 +14939,11 @@ var id = {
14944
14939
  "neptune.DateLookup.twentyYears": "20 tahun",
14945
14940
  "neptune.DateLookup.year": "tahun",
14946
14941
  "neptune.FlowNavigation.back": "kembali ke langkah sebelumnya",
14942
+ "neptune.Info.ariaLabel": "Informasi lebih lanjut",
14947
14943
  "neptune.Link.opensInNewTab": "(terbuka di tab baru)",
14948
14944
  "neptune.MoneyInput.Select.placeholder": "Pilih opsi...",
14949
14945
  "neptune.Select.searchPlaceholder": "Cari...",
14946
+ "neptune.SelectInput.noResultsFound": "Hasil tidak ditemukan",
14950
14947
  "neptune.Summary.statusDone": "Item selesai",
14951
14948
  "neptune.Summary.statusNotDone": "Item yang harus dilakukan",
14952
14949
  "neptune.Summary.statusPending": "Item tertunda",
@@ -14997,9 +14994,11 @@ var it = {
14997
14994
  "neptune.DateLookup.twentyYears": "20 anni",
14998
14995
  "neptune.DateLookup.year": "anno",
14999
14996
  "neptune.FlowNavigation.back": "torna al passaggio precedente",
14997
+ "neptune.Info.ariaLabel": "Maggiori informazioni",
15000
14998
  "neptune.Link.opensInNewTab": "(si apre in una nuova scheda)",
15001
14999
  "neptune.MoneyInput.Select.placeholder": "Seleziona un'opzione...",
15002
15000
  "neptune.Select.searchPlaceholder": "Cerca...",
15001
+ "neptune.SelectInput.noResultsFound": "Nessun risultato trovato",
15003
15002
  "neptune.Summary.statusDone": "Completato",
15004
15003
  "neptune.Summary.statusNotDone": "Da completare",
15005
15004
  "neptune.Summary.statusPending": "In corso",
@@ -15050,9 +15049,11 @@ var ja = {
15050
15049
  "neptune.DateLookup.twentyYears": "20年",
15051
15050
  "neptune.DateLookup.year": "年",
15052
15051
  "neptune.FlowNavigation.back": "前のステップに戻る",
15052
+ "neptune.Info.ariaLabel": "詳細",
15053
15053
  "neptune.Link.opensInNewTab": "(新しいタブで開きます)",
15054
15054
  "neptune.MoneyInput.Select.placeholder": "選択してください...",
15055
15055
  "neptune.Select.searchPlaceholder": "検索... ",
15056
+ "neptune.SelectInput.noResultsFound": "結果が見つかりませんでした",
15056
15057
  "neptune.Summary.statusDone": "完了",
15057
15058
  "neptune.Summary.statusNotDone": "未対応",
15058
15059
  "neptune.Summary.statusPending": "保留中",
@@ -15103,9 +15104,11 @@ var pl = {
15103
15104
  "neptune.DateLookup.twentyYears": "20 lat",
15104
15105
  "neptune.DateLookup.year": "rok",
15105
15106
  "neptune.FlowNavigation.back": "wróć do poprzedniego kroku",
15107
+ "neptune.Info.ariaLabel": "Więcej informacji",
15106
15108
  "neptune.Link.opensInNewTab": "(otworzy się w nowej zakładce)",
15107
15109
  "neptune.MoneyInput.Select.placeholder": "Wybierz opcję...",
15108
15110
  "neptune.Select.searchPlaceholder": "Wyszukaj...",
15111
+ "neptune.SelectInput.noResultsFound": "Nie znaleziono wyników",
15109
15112
  "neptune.Summary.statusDone": "Czynność wykonana",
15110
15113
  "neptune.Summary.statusNotDone": "Czynność do wykonania",
15111
15114
  "neptune.Summary.statusPending": "Czynność oczekująca",
@@ -15148,17 +15151,19 @@ var pt = {
15148
15151
  "neptune.DateInput.month.label": "Mês",
15149
15152
  "neptune.DateInput.year.label": "Ano",
15150
15153
  "neptune.DateLookup.day": "dia",
15151
- "neptune.DateLookup.goTo20YearView": "Go to 20 year view",
15154
+ "neptune.DateLookup.goTo20YearView": "Acessar a visualização de 20 anos",
15152
15155
  "neptune.DateLookup.month": "mês",
15153
15156
  "neptune.DateLookup.next": "próximo",
15154
15157
  "neptune.DateLookup.previous": "anterior",
15155
15158
  "neptune.DateLookup.selected": "selecionada",
15156
15159
  "neptune.DateLookup.twentyYears": "20 anos",
15157
15160
  "neptune.DateLookup.year": "ano",
15158
- "neptune.FlowNavigation.back": "back to previous step",
15159
- "neptune.Link.opensInNewTab": "(abrir a página em uma nova aba)",
15161
+ "neptune.FlowNavigation.back": "voltar à etapa anterior",
15162
+ "neptune.Info.ariaLabel": "Mais informações",
15163
+ "neptune.Link.opensInNewTab": "(abre em uma nova aba)",
15160
15164
  "neptune.MoneyInput.Select.placeholder": "Escolha uma opção...",
15161
15165
  "neptune.Select.searchPlaceholder": "Buscar...",
15166
+ "neptune.SelectInput.noResultsFound": "Nenhum resultado encontrado",
15162
15167
  "neptune.Summary.statusDone": "Pronto",
15163
15168
  "neptune.Summary.statusNotDone": "Não iniciado",
15164
15169
  "neptune.Summary.statusPending": "Pendente",
@@ -15202,16 +15207,18 @@ var ro = {
15202
15207
  "neptune.DateInput.year.label": "An",
15203
15208
  "neptune.DateLookup.day": "zi",
15204
15209
  "neptune.DateLookup.goTo20YearView": "Accesează vizualizarea pe 20 de ani",
15205
- "neptune.DateLookup.month": "luna",
15210
+ "neptune.DateLookup.month": "lună",
15206
15211
  "neptune.DateLookup.next": "înainte",
15207
- "neptune.DateLookup.previous": "precedenta",
15212
+ "neptune.DateLookup.previous": "înapoi",
15208
15213
  "neptune.DateLookup.selected": "selectată",
15209
15214
  "neptune.DateLookup.twentyYears": "20 de ani",
15210
- "neptune.DateLookup.year": "anul",
15215
+ "neptune.DateLookup.year": "an",
15211
15216
  "neptune.FlowNavigation.back": "înapoi la pasul anterior",
15217
+ "neptune.Info.ariaLabel": "Mai multe informații",
15212
15218
  "neptune.Link.opensInNewTab": "(se deschide într-o filă nouă)",
15213
15219
  "neptune.MoneyInput.Select.placeholder": "Selectează o opţiune...",
15214
15220
  "neptune.Select.searchPlaceholder": "Caută...",
15221
+ "neptune.SelectInput.noResultsFound": "Nu s-a găsit niciun rezultat",
15215
15222
  "neptune.Summary.statusDone": "Finalizat",
15216
15223
  "neptune.Summary.statusNotDone": "De făcut",
15217
15224
  "neptune.Summary.statusPending": "În așteptare",
@@ -15257,14 +15264,16 @@ var ru = {
15257
15264
  "neptune.DateLookup.goTo20YearView": "Перейти к обзору 20 лет",
15258
15265
  "neptune.DateLookup.month": "месяц",
15259
15266
  "neptune.DateLookup.next": "далее",
15260
- "neptune.DateLookup.previous": "предыдущий",
15267
+ "neptune.DateLookup.previous": "назад",
15261
15268
  "neptune.DateLookup.selected": "выбрано",
15262
15269
  "neptune.DateLookup.twentyYears": "20 лет",
15263
15270
  "neptune.DateLookup.year": "год",
15264
15271
  "neptune.FlowNavigation.back": "вернуться к предыдущему шагу",
15272
+ "neptune.Info.ariaLabel": "Подробнее",
15265
15273
  "neptune.Link.opensInNewTab": "(откроется в новой вкладке)",
15266
15274
  "neptune.MoneyInput.Select.placeholder": "Выберите вариант...",
15267
15275
  "neptune.Select.searchPlaceholder": "Поиск...",
15276
+ "neptune.SelectInput.noResultsFound": "Ничего не найдено",
15268
15277
  "neptune.Summary.statusDone": "Этап завершен",
15269
15278
  "neptune.Summary.statusNotDone": "Этап к выполнению",
15270
15279
  "neptune.Summary.statusPending": "Этап в процессе",
@@ -15315,9 +15324,11 @@ var th = {
15315
15324
  "neptune.DateLookup.twentyYears": "20 ปี",
15316
15325
  "neptune.DateLookup.year": "ปี",
15317
15326
  "neptune.FlowNavigation.back": "back to previous step",
15327
+ "neptune.Info.ariaLabel": "ข้อมูลเพิ่มเติม",
15318
15328
  "neptune.Link.opensInNewTab": "(opens in new tab)",
15319
15329
  "neptune.MoneyInput.Select.placeholder": "เลือกตัวเลือก...",
15320
15330
  "neptune.Select.searchPlaceholder": "ค้นหา...",
15331
+ "neptune.SelectInput.noResultsFound": "ไม่พบผลลัพธ์",
15321
15332
  "neptune.Summary.statusDone": "รายการที่ทำแล้ว",
15322
15333
  "neptune.Summary.statusNotDone": "รายการที่ต้องทำ",
15323
15334
  "neptune.Summary.statusPending": "รายการที่รอดำเนินการ",
@@ -15368,9 +15379,11 @@ var tr = {
15368
15379
  "neptune.DateLookup.twentyYears": "20 yıl",
15369
15380
  "neptune.DateLookup.year": "yıl",
15370
15381
  "neptune.FlowNavigation.back": "önceki adıma dön",
15382
+ "neptune.Info.ariaLabel": "Daha fazla bilgi",
15371
15383
  "neptune.Link.opensInNewTab": "(yeni sekmede açılır)",
15372
15384
  "neptune.MoneyInput.Select.placeholder": "Bir seçenek seçin...",
15373
15385
  "neptune.Select.searchPlaceholder": "Ara...",
15386
+ "neptune.SelectInput.noResultsFound": "Sonuç bulunamadı",
15374
15387
  "neptune.Summary.statusDone": "Tamamlanan aşama",
15375
15388
  "neptune.Summary.statusNotDone": "Yapılacak",
15376
15389
  "neptune.Summary.statusPending": "Bekliyor",
@@ -15421,9 +15434,11 @@ var uk = {
15421
15434
  "neptune.DateLookup.twentyYears": "20 років",
15422
15435
  "neptune.DateLookup.year": "рік",
15423
15436
  "neptune.FlowNavigation.back": "back to previous step",
15437
+ "neptune.Info.ariaLabel": "Більше відомостей",
15424
15438
  "neptune.Link.opensInNewTab": "(opens in new tab)",
15425
15439
  "neptune.MoneyInput.Select.placeholder": "Виберіть варіант…",
15426
15440
  "neptune.Select.searchPlaceholder": "Пошук…",
15441
+ "neptune.SelectInput.noResultsFound": "Нічого не знайдено",
15427
15442
  "neptune.Summary.statusDone": "Виконано",
15428
15443
  "neptune.Summary.statusNotDone": "Не виконано",
15429
15444
  "neptune.Summary.statusPending": "Виконується",
@@ -15460,23 +15475,25 @@ var uk = {
15460
15475
  var zhCN = {
15461
15476
  "neptune.Button.loadingAriaLabel": "正在加载",
15462
15477
  "neptune.Chips.ariaLabel": "清除 {choice}",
15463
- "neptune.ClearButton.ariaLabel": "清晰",
15478
+ "neptune.ClearButton.ariaLabel": "清除",
15464
15479
  "neptune.CloseButton.ariaLabel": "关闭",
15465
15480
  "neptune.DateInput.day.label": "日",
15466
15481
  "neptune.DateInput.month.label": "月",
15467
15482
  "neptune.DateInput.year.label": "年",
15468
15483
  "neptune.DateLookup.day": "日",
15469
- "neptune.DateLookup.goTo20YearView": "Go to 20 year view",
15484
+ "neptune.DateLookup.goTo20YearView": "转到 20 年视图",
15470
15485
  "neptune.DateLookup.month": "月",
15471
15486
  "neptune.DateLookup.next": "下一页",
15472
15487
  "neptune.DateLookup.previous": "上一页",
15473
15488
  "neptune.DateLookup.selected": "已选",
15474
- "neptune.DateLookup.twentyYears": "20年",
15489
+ "neptune.DateLookup.twentyYears": "20 年",
15475
15490
  "neptune.DateLookup.year": "年",
15476
- "neptune.FlowNavigation.back": "back to previous step",
15477
- "neptune.Link.opensInNewTab": "(opens in new tab)",
15491
+ "neptune.FlowNavigation.back": "返回上一步",
15492
+ "neptune.Info.ariaLabel": "更多信息",
15493
+ "neptune.Link.opensInNewTab": "(在新标签页中打开)",
15478
15494
  "neptune.MoneyInput.Select.placeholder": "请选择...",
15479
15495
  "neptune.Select.searchPlaceholder": "搜索",
15496
+ "neptune.SelectInput.noResultsFound": "找不到结果",
15480
15497
  "neptune.Summary.statusDone": "已完成",
15481
15498
  "neptune.Summary.statusNotDone": "未完成",
15482
15499
  "neptune.Summary.statusPending": "待处理",
@@ -15492,7 +15509,7 @@ var zhCN = {
15492
15509
  "neptune.Upload.usPlaceholder": "拖放小于 5MB 的文件",
15493
15510
  "neptune.UploadButton.allFileTypes": "所有文件类型",
15494
15511
  "neptune.UploadButton.dropFiles": "拖放文件开始上传",
15495
- "neptune.UploadButton.instructions": "{fileTypes},小于 {size}MB",
15512
+ "neptune.UploadButton.instructions": "{fileTypes},小于 {size} MB",
15496
15513
  "neptune.UploadButton.uploadFile": "上传文件",
15497
15514
  "neptune.UploadButton.uploadFiles": "上传文件",
15498
15515
  "neptune.UploadInput.deleteModalBody": "删除此文件会将其从我们的系统中删除",
@@ -15527,9 +15544,11 @@ var zhHK = {
15527
15544
  "neptune.DateLookup.twentyYears": "20年",
15528
15545
  "neptune.DateLookup.year": "年",
15529
15546
  "neptune.FlowNavigation.back": "返回上一個步驟",
15547
+ "neptune.Info.ariaLabel": "更多資訊",
15530
15548
  "neptune.Link.opensInNewTab": "(在新分頁中開啟)",
15531
15549
  "neptune.MoneyInput.Select.placeholder": "選擇一個選項…",
15532
15550
  "neptune.Select.searchPlaceholder": "搜尋…",
15551
+ "neptune.SelectInput.noResultsFound": "找不到任何結果",
15533
15552
  "neptune.Summary.statusDone": "已完成事項",
15534
15553
  "neptune.Summary.statusNotDone": "未完成事項",
15535
15554
  "neptune.Summary.statusPending": "待處理事項",
@@ -15584,5 +15603,5 @@ const translations = {
15584
15603
  'zh-HK': zhHK
15585
15604
  };
15586
15605
 
15587
- export { Accordion, ActionButton, ActionOption, Alert$1 as Alert, ArrowPosition as AlertArrowPosition, Avatar, AvatarType, AvatarWrapper, Badge, Card as BaseCard, Body, BottomSheet$2 as BottomSheet, Breakpoint, Button, Card$2 as Card, Checkbox$1 as Checkbox, CheckboxButton$1 as CheckboxButton, CheckboxOption, Chevron$1 as Chevron, Chip, Chips, CircularButton$1 as CircularButton, ControlType, CriticalCommsBanner, DEFAULT_LANG, DEFAULT_LOCALE, DateInput$1 as DateInput, DateLookup$1 as DateLookup, DateMode, Decision$1 as Decision, Presentation as DecisionPresentation, Type as DecisionType, DefinitionList$1 as DefinitionList, Dimmer$1 as Dimmer, Direction, DirectionProvider, Display, Drawer$1 as Drawer, DropFade, DynamicFieldDefinitionList$1 as DynamicFieldDefinitionList, Emphasis, FileType, FlowNavigation, Header, Image, Info, InfoPresentation, InlineAlert, Input, InputGroup, InputWithDisplayFormat$1 as InputWithDisplayFormat, InstructionsList$1 as InstructionsList, LanguageProvider, Layout$1 as Layout, Link, ListItem$1 as ListItem, Loader$1 as Loader, Logo$1 as Logo, LogoType, Markdown$1 as Markdown, MarkdownNodeType, Modal, Money$1 as Money, MoneyInput$1 as MoneyInput, MonthFormat, NavigationOption, NavigationOptionList$1 as NavigationOptionsList, Nudge, Option$2 as Option, OverlayHeader$1 as OverlayHeader, PhoneNumberInput$1 as PhoneNumberInput, Popover$2 as Popover, Position, Priority, ProcessIndicator$1 as ProcessIndicator, ProfileType, Progress, ProgressBar, PromoCard$1 as PromoCard, PromoCard$1 as PromoCardGroup, Provider$1 as Provider, RTL_LANGUAGES, Radio$1 as Radio, RadioGroup$1 as RadioGroup, RadioOption$1 as RadioOption, SUPPORTED_LANGUAGES, Scroll, SearchInput, Section, Select, SelectInput, SelectInputOptionContent, SelectInputTriggerButton, Sentiment, Size, SlidingPanel$1 as SlidingPanel, SnackbarConsumer, SnackbarContext, SnackbarPortal, SnackbarProvider$1 as SnackbarProvider, Status, StatusIcon, Stepper, Sticky$1 as Sticky, Summary, Switch, SwitchOption, Tabs$1 as Tabs, TextArea, TextareaWithDisplayFormat$1 as TextareaWithDisplayFormat, Theme, Title, Tooltip$1 as Tooltip, Type$1 as Type, Typeahead, Typography, Upload$1 as Upload, UploadInput, UploadStep, Variant, Width, adjustLocale, getCountryFromLocale, getDirectionFromLocale, getLangFromLocale, isBrowser, isServerSide, translations, useDirection, useLayout, useSnackbar };
15606
+ export { Accordion, ActionButton, ActionOption, Alert$1 as Alert, ArrowPosition as AlertArrowPosition, Avatar, AvatarType, AvatarWrapper, Badge, Card as BaseCard, Body, BottomSheet$2 as BottomSheet, Breakpoint, Button, Card$2 as Card, Checkbox$1 as Checkbox, CheckboxButton$1 as CheckboxButton, CheckboxOption, Chevron$1 as Chevron, Chip, Chips, CircularButton$1 as CircularButton, ControlType, CriticalCommsBanner, DEFAULT_LANG, DEFAULT_LOCALE, DateInput$1 as DateInput, DateLookup$1 as DateLookup, DateMode, Decision$1 as Decision, Presentation as DecisionPresentation, Type as DecisionType, DefinitionList$1 as DefinitionList, Dimmer$1 as Dimmer, Direction, DirectionProvider, Display, Drawer$1 as Drawer, DropFade, DynamicFieldDefinitionList$1 as DynamicFieldDefinitionList, Emphasis, FileType, FlowNavigation, Header, Image, Info, InfoPresentation, InlineAlert, Input, InputGroup, InputWithDisplayFormat$1 as InputWithDisplayFormat, InstructionsList$1 as InstructionsList, LanguageProvider, Layout$1 as Layout, Link, ListItem$1 as ListItem, Loader$1 as Loader, Logo$1 as Logo, LogoType, Markdown$1 as Markdown, MarkdownNodeType, Modal, Money$1 as Money, MoneyInput$1 as MoneyInput, MonthFormat, NavigationOption, NavigationOptionList$1 as NavigationOptionsList, Nudge, Option$2 as Option, OverlayHeader$1 as OverlayHeader, PhoneNumberInput$1 as PhoneNumberInput, Popover$2 as Popover, Position, Priority, ProcessIndicator$1 as ProcessIndicator, ProfileType, Progress, ProgressBar, PromoCard$1 as PromoCard, PromoCard$1 as PromoCardGroup, Provider$1 as Provider, RTL_LANGUAGES, Radio$1 as Radio, RadioGroup$1 as RadioGroup, RadioOption$1 as RadioOption, SUPPORTED_LANGUAGES, Scroll, SearchInput, Section, Select, SelectInput, SelectInputOptionContent, SelectInputTriggerButton, Sentiment, Size, SlidingPanel$1 as SlidingPanel, SnackbarConsumer, SnackbarContext, SnackbarPortal, SnackbarProvider$1 as SnackbarProvider, Status, StatusIcon, Stepper, Sticky$1 as Sticky, Summary, Switch, SwitchOption, Tabs$1 as Tabs, TextArea, TextareaWithDisplayFormat$1 as TextareaWithDisplayFormat, Theme, Title, Tooltip$1 as Tooltip, Type$1 as Type, Typeahead, Typography, Upload$1 as Upload, UploadInput, UploadStep, Variant, Width, adjustLocale, getCountryFromLocale, getDirectionFromLocale, getLangFromLocale, isBrowser, isServerSide, translations, useDirection, useLayout, useScreenSize, useSnackbar };
15588
15607
  //# sourceMappingURL=index.esm.js.map