@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.
- package/build/i18n/cs.json +2 -0
- package/build/i18n/de.json +2 -0
- package/build/i18n/es.json +2 -0
- package/build/i18n/fr.json +2 -0
- package/build/i18n/hu.json +2 -0
- package/build/i18n/id.json +2 -0
- package/build/i18n/it.json +2 -0
- package/build/i18n/ja.json +2 -0
- package/build/i18n/pl.json +2 -0
- package/build/i18n/pt.json +5 -3
- package/build/i18n/ro.json +5 -3
- package/build/i18n/ru.json +3 -1
- package/build/i18n/th.json +2 -0
- package/build/i18n/tr.json +2 -0
- package/build/i18n/uk.json +2 -0
- package/build/i18n/zh-CN.json +8 -6
- package/build/i18n/zh-HK.json +2 -0
- package/build/index.esm.js +86 -67
- package/build/index.esm.js.map +1 -1
- package/build/index.js +86 -66
- package/build/index.js.map +1 -1
- package/build/types/common/hooks/useLayout/useLayout.d.ts +9 -6
- package/build/types/common/hooks/useLayout/useLayout.d.ts.map +1 -1
- package/build/types/index.d.ts +1 -0
- package/build/types/index.d.ts.map +1 -1
- package/build/types/inputs/SelectInput.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/common/hooks/useLayout/useLayout.ts +21 -49
- package/src/common/responsivePanel/ResponsivePanel.spec.js +3 -1
- package/src/dateLookup/DateLookup.testingLibrary.spec.js +1 -19
- package/src/dateLookup/dateHeader/DateHeader.spec.js +2 -0
- package/src/drawer/Drawer.rtl.spec.js +3 -1
- package/src/drawer/Drawer.spec.js +2 -0
- package/src/i18n/cs.json +2 -0
- package/src/i18n/de.json +2 -0
- package/src/i18n/es.json +2 -0
- package/src/i18n/fr.json +2 -0
- package/src/i18n/hu.json +2 -0
- package/src/i18n/id.json +2 -0
- package/src/i18n/it.json +2 -0
- package/src/i18n/ja.json +2 -0
- package/src/i18n/pl.json +2 -0
- package/src/i18n/pt.json +5 -3
- package/src/i18n/ro.json +5 -3
- package/src/i18n/ru.json +3 -1
- package/src/i18n/th.json +2 -0
- package/src/i18n/tr.json +2 -0
- package/src/i18n/uk.json +2 -0
- package/src/i18n/zh-CN.json +8 -6
- package/src/i18n/zh-HK.json +2 -0
- package/src/index.ts +1 -0
- package/src/info/Info.spec.js +7 -11
- package/src/inputs/SelectInput.spec.tsx +5 -5
- package/src/inputs/SelectInput.tsx +16 -3
- package/src/modal/Modal.rtl.spec.js +3 -1
- package/src/modal/Modal.spec.js +2 -0
- package/src/modal/Modal.tsx +2 -2
- package/src/ssr.spec.js +1 -0
- package/src/uploadInput/UploadInput.spec.tsx +3 -1
package/build/index.js
CHANGED
|
@@ -1881,43 +1881,36 @@ const useHasIntersected = ({
|
|
|
1881
1881
|
return [hasIntersected];
|
|
1882
1882
|
};
|
|
1883
1883
|
|
|
1884
|
+
function useMedia(query) {
|
|
1885
|
+
return shim.useSyncExternalStore(onStoreChange => {
|
|
1886
|
+
const mediaQueryList = window.matchMedia(query);
|
|
1887
|
+
mediaQueryList.addEventListener('change', onStoreChange);
|
|
1888
|
+
return () => {
|
|
1889
|
+
mediaQueryList.removeEventListener('change', onStoreChange);
|
|
1890
|
+
};
|
|
1891
|
+
}, () => typeof window !== 'undefined' ? window.matchMedia(query).matches : undefined, () => undefined);
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
function useScreenSize(size) {
|
|
1895
|
+
return useMedia(`(min-width: ${size}px)`);
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
/**
|
|
1899
|
+
* @deprecated Prefer `useScreenSize` instead.
|
|
1900
|
+
*/
|
|
1884
1901
|
const useLayout = () => {
|
|
1885
|
-
const
|
|
1886
|
-
const
|
|
1887
|
-
const
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
React.useEffect(() => {
|
|
1891
|
-
if (!clientWidth) {
|
|
1892
|
-
return;
|
|
1893
|
-
}
|
|
1894
|
-
if (clientWidth <= exports.Breakpoint.EXTRA_SMALL) {
|
|
1895
|
-
setBreakpoint(exports.Breakpoint.EXTRA_SMALL);
|
|
1896
|
-
return;
|
|
1897
|
-
}
|
|
1898
|
-
if (exports.Breakpoint.EXTRA_SMALL < clientWidth && clientWidth <= exports.Breakpoint.SMALL) {
|
|
1899
|
-
setBreakpoint(exports.Breakpoint.SMALL);
|
|
1900
|
-
return;
|
|
1901
|
-
}
|
|
1902
|
-
if (exports.Breakpoint.SMALL < clientWidth && clientWidth <= exports.Breakpoint.MEDIUM) {
|
|
1903
|
-
setBreakpoint(exports.Breakpoint.MEDIUM);
|
|
1904
|
-
return;
|
|
1905
|
-
}
|
|
1906
|
-
if (exports.Breakpoint.MEDIUM < clientWidth && clientWidth <= exports.Breakpoint.LARGE) {
|
|
1907
|
-
setBreakpoint(exports.Breakpoint.LARGE);
|
|
1908
|
-
return;
|
|
1909
|
-
}
|
|
1910
|
-
if (exports.Breakpoint.LARGE < clientWidth) {
|
|
1911
|
-
setBreakpoint(exports.Breakpoint.EXTRA_LARGE);
|
|
1912
|
-
}
|
|
1913
|
-
}, [clientWidth]);
|
|
1902
|
+
const screenXs = useScreenSize(exports.Breakpoint.EXTRA_SMALL);
|
|
1903
|
+
const screenSm = useScreenSize(exports.Breakpoint.SMALL);
|
|
1904
|
+
const screenMd = useScreenSize(exports.Breakpoint.MEDIUM);
|
|
1905
|
+
const screenLg = useScreenSize(exports.Breakpoint.LARGE);
|
|
1906
|
+
const screenXl = useScreenSize(exports.Breakpoint.EXTRA_LARGE);
|
|
1914
1907
|
return {
|
|
1915
|
-
isMobile:
|
|
1916
|
-
isExtraSmall:
|
|
1917
|
-
isSmall:
|
|
1918
|
-
isMedium:
|
|
1919
|
-
isLarge:
|
|
1920
|
-
isExtraLarge:
|
|
1908
|
+
isMobile: screenSm != null ? !screenSm : undefined,
|
|
1909
|
+
isExtraSmall: screenXs,
|
|
1910
|
+
isSmall: screenSm,
|
|
1911
|
+
isMedium: screenMd,
|
|
1912
|
+
isLarge: screenLg,
|
|
1913
|
+
isExtraLarge: screenXl
|
|
1921
1914
|
};
|
|
1922
1915
|
};
|
|
1923
1916
|
|
|
@@ -2042,16 +2035,6 @@ Drawer.defaultProps = {
|
|
|
2042
2035
|
};
|
|
2043
2036
|
var Drawer$1 = Drawer;
|
|
2044
2037
|
|
|
2045
|
-
function useMedia(query) {
|
|
2046
|
-
return shim.useSyncExternalStore(onStoreChange => {
|
|
2047
|
-
const mediaQueryList = window.matchMedia(query);
|
|
2048
|
-
mediaQueryList.addEventListener('change', onStoreChange);
|
|
2049
|
-
return () => {
|
|
2050
|
-
mediaQueryList.removeEventListener('change', onStoreChange);
|
|
2051
|
-
};
|
|
2052
|
-
}, () => typeof window !== 'undefined' ? window.matchMedia(query).matches : undefined, () => undefined);
|
|
2053
|
-
}
|
|
2054
|
-
|
|
2055
2038
|
const INITIAL_Y_POSITION = 0;
|
|
2056
2039
|
const CONTENT_SCROLL_THRESHOLD = 1;
|
|
2057
2040
|
const MOVE_OFFSET_THRESHOLD = 50;
|
|
@@ -6060,14 +6043,13 @@ const Modal = ({
|
|
|
6060
6043
|
}) => {
|
|
6061
6044
|
const checkSpecialClasses = classToCheck => className?.split(' ').includes(classToCheck);
|
|
6062
6045
|
const {
|
|
6063
|
-
|
|
6064
|
-
isMedium: isTablet
|
|
6046
|
+
isMedium
|
|
6065
6047
|
} = useLayout();
|
|
6066
6048
|
// These should be replaced with props in breaking change.
|
|
6067
6049
|
const isCompact = checkSpecialClasses('compact');
|
|
6068
6050
|
const noDivider = checkSpecialClasses('no-divider');
|
|
6069
6051
|
const contentReference = React.useRef(null);
|
|
6070
|
-
return
|
|
6052
|
+
return !isMedium ? /*#__PURE__*/jsxRuntime.jsx(Drawer$1, {
|
|
6071
6053
|
open: open,
|
|
6072
6054
|
headerTitle: title,
|
|
6073
6055
|
footerContent: footer,
|
|
@@ -6501,10 +6483,6 @@ const SearchInput = /*#__PURE__*/React.forwardRef(function SearchInput({
|
|
|
6501
6483
|
});
|
|
6502
6484
|
});
|
|
6503
6485
|
|
|
6504
|
-
function useScreenSize(size) {
|
|
6505
|
-
return useMedia(`(min-width: ${size}px)`);
|
|
6506
|
-
}
|
|
6507
|
-
|
|
6508
6486
|
const PolymorphicWithOverrides = /*#__PURE__*/React.forwardRef(function PolymorphicWithOverrides({
|
|
6509
6487
|
__overrides: {
|
|
6510
6488
|
as: Element,
|
|
@@ -6933,6 +6911,11 @@ function SelectInput({
|
|
|
6933
6911
|
...mergeProps__default.default({
|
|
6934
6912
|
onClick: () => {
|
|
6935
6913
|
setOpen(prev => !prev);
|
|
6914
|
+
},
|
|
6915
|
+
onKeyDown: event => {
|
|
6916
|
+
if (event.key === ' ' || event.key === 'Enter' || event.key === 'ArrowDown' || event.key === 'ArrowUp') {
|
|
6917
|
+
setOpen(prev => !prev);
|
|
6918
|
+
}
|
|
6936
6919
|
}
|
|
6937
6920
|
}, getInteractionProps())
|
|
6938
6921
|
},
|
|
@@ -6978,6 +6961,7 @@ function SelectInputTriggerButton({
|
|
|
6978
6961
|
const {
|
|
6979
6962
|
ref,
|
|
6980
6963
|
onClick,
|
|
6964
|
+
onKeyDown,
|
|
6981
6965
|
...interactionProps
|
|
6982
6966
|
} = React.useContext(SelectInputTriggerButtonPropsContext);
|
|
6983
6967
|
return /*#__PURE__*/jsxRuntime.jsx(react$1.Listbox.Button, {
|
|
@@ -6988,7 +6972,8 @@ function SelectInputTriggerButton({
|
|
|
6988
6972
|
...interactionProps
|
|
6989
6973
|
},
|
|
6990
6974
|
...mergeProps__default.default({
|
|
6991
|
-
onClick
|
|
6975
|
+
onClick,
|
|
6976
|
+
onKeyDown
|
|
6992
6977
|
}, restProps)
|
|
6993
6978
|
});
|
|
6994
6979
|
}
|
|
@@ -14713,9 +14698,11 @@ var cs = {
|
|
|
14713
14698
|
"neptune.DateLookup.twentyYears": "20 let",
|
|
14714
14699
|
"neptune.DateLookup.year": "rok",
|
|
14715
14700
|
"neptune.FlowNavigation.back": "back to previous step",
|
|
14701
|
+
"neptune.Info.ariaLabel": "Více informací",
|
|
14716
14702
|
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
14717
14703
|
"neptune.MoneyInput.Select.placeholder": "Vybrat možnost...",
|
|
14718
14704
|
"neptune.Select.searchPlaceholder": "Hledat...",
|
|
14705
|
+
"neptune.SelectInput.noResultsFound": "Nebyly nalezeny žádné výsledky",
|
|
14719
14706
|
"neptune.Summary.statusDone": "Položka dokončena",
|
|
14720
14707
|
"neptune.Summary.statusNotDone": "Položka k dokončení",
|
|
14721
14708
|
"neptune.Summary.statusPending": "Čekající položka",
|
|
@@ -14766,9 +14753,11 @@ var de = {
|
|
|
14766
14753
|
"neptune.DateLookup.twentyYears": "20 Jahre",
|
|
14767
14754
|
"neptune.DateLookup.year": "Jahr",
|
|
14768
14755
|
"neptune.FlowNavigation.back": "zurück zum vorherigen Schritt",
|
|
14756
|
+
"neptune.Info.ariaLabel": "Weitere Informationen",
|
|
14769
14757
|
"neptune.Link.opensInNewTab": "(wird in einem neuen Tab geöffnet)",
|
|
14770
14758
|
"neptune.MoneyInput.Select.placeholder": "Wähle eine der Möglichkeiten aus...",
|
|
14771
14759
|
"neptune.Select.searchPlaceholder": "Wird gesucht...",
|
|
14760
|
+
"neptune.SelectInput.noResultsFound": "Keine Ergebnisse gefunden",
|
|
14772
14761
|
"neptune.Summary.statusDone": "Schritt erledigt",
|
|
14773
14762
|
"neptune.Summary.statusNotDone": "Schritt noch zu erledigen",
|
|
14774
14763
|
"neptune.Summary.statusPending": "Schritt ausstehend",
|
|
@@ -14819,9 +14808,11 @@ var es = {
|
|
|
14819
14808
|
"neptune.DateLookup.twentyYears": "20 años",
|
|
14820
14809
|
"neptune.DateLookup.year": "año",
|
|
14821
14810
|
"neptune.FlowNavigation.back": "volver al paso anterior",
|
|
14811
|
+
"neptune.Info.ariaLabel": "Más información",
|
|
14822
14812
|
"neptune.Link.opensInNewTab": "(se abre en una pestaña nueva)",
|
|
14823
14813
|
"neptune.MoneyInput.Select.placeholder": "Selecciona una opción...",
|
|
14824
14814
|
"neptune.Select.searchPlaceholder": "Buscar...",
|
|
14815
|
+
"neptune.SelectInput.noResultsFound": "No se han encontrado resultados",
|
|
14825
14816
|
"neptune.Summary.statusDone": "Apartado listo",
|
|
14826
14817
|
"neptune.Summary.statusNotDone": "Apartado a completar",
|
|
14827
14818
|
"neptune.Summary.statusPending": "Apartado pendiente",
|
|
@@ -14872,9 +14863,11 @@ var fr = {
|
|
|
14872
14863
|
"neptune.DateLookup.twentyYears": "20 ans",
|
|
14873
14864
|
"neptune.DateLookup.year": "année",
|
|
14874
14865
|
"neptune.FlowNavigation.back": "revenir à l'étape précédente",
|
|
14866
|
+
"neptune.Info.ariaLabel": "Plus d'informations",
|
|
14875
14867
|
"neptune.Link.opensInNewTab": "(ouvre dans un nouvel onglet)",
|
|
14876
14868
|
"neptune.MoneyInput.Select.placeholder": "Sélectionner une option...",
|
|
14877
14869
|
"neptune.Select.searchPlaceholder": "Recherche...",
|
|
14870
|
+
"neptune.SelectInput.noResultsFound": "Aucun résultat trouvé",
|
|
14878
14871
|
"neptune.Summary.statusDone": "Validé",
|
|
14879
14872
|
"neptune.Summary.statusNotDone": "À compléter",
|
|
14880
14873
|
"neptune.Summary.statusPending": "En attente",
|
|
@@ -14925,9 +14918,11 @@ var hu = {
|
|
|
14925
14918
|
"neptune.DateLookup.twentyYears": "20 év",
|
|
14926
14919
|
"neptune.DateLookup.year": "év",
|
|
14927
14920
|
"neptune.FlowNavigation.back": "vissza az előző lépéshez",
|
|
14921
|
+
"neptune.Info.ariaLabel": "További információ",
|
|
14928
14922
|
"neptune.Link.opensInNewTab": "(új lapon nyílik meg)",
|
|
14929
14923
|
"neptune.MoneyInput.Select.placeholder": "Válassz ki egy lehetőséget...",
|
|
14930
14924
|
"neptune.Select.searchPlaceholder": "Keresés...",
|
|
14925
|
+
"neptune.SelectInput.noResultsFound": "Nincs találat",
|
|
14931
14926
|
"neptune.Summary.statusDone": "Kész",
|
|
14932
14927
|
"neptune.Summary.statusNotDone": "Hátravan",
|
|
14933
14928
|
"neptune.Summary.statusPending": "Függőben",
|
|
@@ -14978,9 +14973,11 @@ var id = {
|
|
|
14978
14973
|
"neptune.DateLookup.twentyYears": "20 tahun",
|
|
14979
14974
|
"neptune.DateLookup.year": "tahun",
|
|
14980
14975
|
"neptune.FlowNavigation.back": "kembali ke langkah sebelumnya",
|
|
14976
|
+
"neptune.Info.ariaLabel": "Informasi lebih lanjut",
|
|
14981
14977
|
"neptune.Link.opensInNewTab": "(terbuka di tab baru)",
|
|
14982
14978
|
"neptune.MoneyInput.Select.placeholder": "Pilih opsi...",
|
|
14983
14979
|
"neptune.Select.searchPlaceholder": "Cari...",
|
|
14980
|
+
"neptune.SelectInput.noResultsFound": "Hasil tidak ditemukan",
|
|
14984
14981
|
"neptune.Summary.statusDone": "Item selesai",
|
|
14985
14982
|
"neptune.Summary.statusNotDone": "Item yang harus dilakukan",
|
|
14986
14983
|
"neptune.Summary.statusPending": "Item tertunda",
|
|
@@ -15031,9 +15028,11 @@ var it = {
|
|
|
15031
15028
|
"neptune.DateLookup.twentyYears": "20 anni",
|
|
15032
15029
|
"neptune.DateLookup.year": "anno",
|
|
15033
15030
|
"neptune.FlowNavigation.back": "torna al passaggio precedente",
|
|
15031
|
+
"neptune.Info.ariaLabel": "Maggiori informazioni",
|
|
15034
15032
|
"neptune.Link.opensInNewTab": "(si apre in una nuova scheda)",
|
|
15035
15033
|
"neptune.MoneyInput.Select.placeholder": "Seleziona un'opzione...",
|
|
15036
15034
|
"neptune.Select.searchPlaceholder": "Cerca...",
|
|
15035
|
+
"neptune.SelectInput.noResultsFound": "Nessun risultato trovato",
|
|
15037
15036
|
"neptune.Summary.statusDone": "Completato",
|
|
15038
15037
|
"neptune.Summary.statusNotDone": "Da completare",
|
|
15039
15038
|
"neptune.Summary.statusPending": "In corso",
|
|
@@ -15084,9 +15083,11 @@ var ja = {
|
|
|
15084
15083
|
"neptune.DateLookup.twentyYears": "20年",
|
|
15085
15084
|
"neptune.DateLookup.year": "年",
|
|
15086
15085
|
"neptune.FlowNavigation.back": "前のステップに戻る",
|
|
15086
|
+
"neptune.Info.ariaLabel": "詳細",
|
|
15087
15087
|
"neptune.Link.opensInNewTab": "(新しいタブで開きます)",
|
|
15088
15088
|
"neptune.MoneyInput.Select.placeholder": "選択してください...",
|
|
15089
15089
|
"neptune.Select.searchPlaceholder": "検索... ",
|
|
15090
|
+
"neptune.SelectInput.noResultsFound": "結果が見つかりませんでした",
|
|
15090
15091
|
"neptune.Summary.statusDone": "完了",
|
|
15091
15092
|
"neptune.Summary.statusNotDone": "未対応",
|
|
15092
15093
|
"neptune.Summary.statusPending": "保留中",
|
|
@@ -15137,9 +15138,11 @@ var pl = {
|
|
|
15137
15138
|
"neptune.DateLookup.twentyYears": "20 lat",
|
|
15138
15139
|
"neptune.DateLookup.year": "rok",
|
|
15139
15140
|
"neptune.FlowNavigation.back": "wróć do poprzedniego kroku",
|
|
15141
|
+
"neptune.Info.ariaLabel": "Więcej informacji",
|
|
15140
15142
|
"neptune.Link.opensInNewTab": "(otworzy się w nowej zakładce)",
|
|
15141
15143
|
"neptune.MoneyInput.Select.placeholder": "Wybierz opcję...",
|
|
15142
15144
|
"neptune.Select.searchPlaceholder": "Wyszukaj...",
|
|
15145
|
+
"neptune.SelectInput.noResultsFound": "Nie znaleziono wyników",
|
|
15143
15146
|
"neptune.Summary.statusDone": "Czynność wykonana",
|
|
15144
15147
|
"neptune.Summary.statusNotDone": "Czynność do wykonania",
|
|
15145
15148
|
"neptune.Summary.statusPending": "Czynność oczekująca",
|
|
@@ -15182,17 +15185,19 @@ var pt = {
|
|
|
15182
15185
|
"neptune.DateInput.month.label": "Mês",
|
|
15183
15186
|
"neptune.DateInput.year.label": "Ano",
|
|
15184
15187
|
"neptune.DateLookup.day": "dia",
|
|
15185
|
-
"neptune.DateLookup.goTo20YearView": "
|
|
15188
|
+
"neptune.DateLookup.goTo20YearView": "Acessar a visualização de 20 anos",
|
|
15186
15189
|
"neptune.DateLookup.month": "mês",
|
|
15187
15190
|
"neptune.DateLookup.next": "próximo",
|
|
15188
15191
|
"neptune.DateLookup.previous": "anterior",
|
|
15189
15192
|
"neptune.DateLookup.selected": "selecionada",
|
|
15190
15193
|
"neptune.DateLookup.twentyYears": "20 anos",
|
|
15191
15194
|
"neptune.DateLookup.year": "ano",
|
|
15192
|
-
"neptune.FlowNavigation.back": "
|
|
15193
|
-
"neptune.
|
|
15195
|
+
"neptune.FlowNavigation.back": "voltar à etapa anterior",
|
|
15196
|
+
"neptune.Info.ariaLabel": "Mais informações",
|
|
15197
|
+
"neptune.Link.opensInNewTab": "(abre em uma nova aba)",
|
|
15194
15198
|
"neptune.MoneyInput.Select.placeholder": "Escolha uma opção...",
|
|
15195
15199
|
"neptune.Select.searchPlaceholder": "Buscar...",
|
|
15200
|
+
"neptune.SelectInput.noResultsFound": "Nenhum resultado encontrado",
|
|
15196
15201
|
"neptune.Summary.statusDone": "Pronto",
|
|
15197
15202
|
"neptune.Summary.statusNotDone": "Não iniciado",
|
|
15198
15203
|
"neptune.Summary.statusPending": "Pendente",
|
|
@@ -15236,16 +15241,18 @@ var ro = {
|
|
|
15236
15241
|
"neptune.DateInput.year.label": "An",
|
|
15237
15242
|
"neptune.DateLookup.day": "zi",
|
|
15238
15243
|
"neptune.DateLookup.goTo20YearView": "Accesează vizualizarea pe 20 de ani",
|
|
15239
|
-
"neptune.DateLookup.month": "
|
|
15244
|
+
"neptune.DateLookup.month": "lună",
|
|
15240
15245
|
"neptune.DateLookup.next": "înainte",
|
|
15241
|
-
"neptune.DateLookup.previous": "
|
|
15246
|
+
"neptune.DateLookup.previous": "înapoi",
|
|
15242
15247
|
"neptune.DateLookup.selected": "selectată",
|
|
15243
15248
|
"neptune.DateLookup.twentyYears": "20 de ani",
|
|
15244
|
-
"neptune.DateLookup.year": "
|
|
15249
|
+
"neptune.DateLookup.year": "an",
|
|
15245
15250
|
"neptune.FlowNavigation.back": "înapoi la pasul anterior",
|
|
15251
|
+
"neptune.Info.ariaLabel": "Mai multe informații",
|
|
15246
15252
|
"neptune.Link.opensInNewTab": "(se deschide într-o filă nouă)",
|
|
15247
15253
|
"neptune.MoneyInput.Select.placeholder": "Selectează o opţiune...",
|
|
15248
15254
|
"neptune.Select.searchPlaceholder": "Caută...",
|
|
15255
|
+
"neptune.SelectInput.noResultsFound": "Nu s-a găsit niciun rezultat",
|
|
15249
15256
|
"neptune.Summary.statusDone": "Finalizat",
|
|
15250
15257
|
"neptune.Summary.statusNotDone": "De făcut",
|
|
15251
15258
|
"neptune.Summary.statusPending": "În așteptare",
|
|
@@ -15291,14 +15298,16 @@ var ru = {
|
|
|
15291
15298
|
"neptune.DateLookup.goTo20YearView": "Перейти к обзору 20 лет",
|
|
15292
15299
|
"neptune.DateLookup.month": "месяц",
|
|
15293
15300
|
"neptune.DateLookup.next": "далее",
|
|
15294
|
-
"neptune.DateLookup.previous": "
|
|
15301
|
+
"neptune.DateLookup.previous": "назад",
|
|
15295
15302
|
"neptune.DateLookup.selected": "выбрано",
|
|
15296
15303
|
"neptune.DateLookup.twentyYears": "20 лет",
|
|
15297
15304
|
"neptune.DateLookup.year": "год",
|
|
15298
15305
|
"neptune.FlowNavigation.back": "вернуться к предыдущему шагу",
|
|
15306
|
+
"neptune.Info.ariaLabel": "Подробнее",
|
|
15299
15307
|
"neptune.Link.opensInNewTab": "(откроется в новой вкладке)",
|
|
15300
15308
|
"neptune.MoneyInput.Select.placeholder": "Выберите вариант...",
|
|
15301
15309
|
"neptune.Select.searchPlaceholder": "Поиск...",
|
|
15310
|
+
"neptune.SelectInput.noResultsFound": "Ничего не найдено",
|
|
15302
15311
|
"neptune.Summary.statusDone": "Этап завершен",
|
|
15303
15312
|
"neptune.Summary.statusNotDone": "Этап к выполнению",
|
|
15304
15313
|
"neptune.Summary.statusPending": "Этап в процессе",
|
|
@@ -15349,9 +15358,11 @@ var th = {
|
|
|
15349
15358
|
"neptune.DateLookup.twentyYears": "20 ปี",
|
|
15350
15359
|
"neptune.DateLookup.year": "ปี",
|
|
15351
15360
|
"neptune.FlowNavigation.back": "back to previous step",
|
|
15361
|
+
"neptune.Info.ariaLabel": "ข้อมูลเพิ่มเติม",
|
|
15352
15362
|
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
15353
15363
|
"neptune.MoneyInput.Select.placeholder": "เลือกตัวเลือก...",
|
|
15354
15364
|
"neptune.Select.searchPlaceholder": "ค้นหา...",
|
|
15365
|
+
"neptune.SelectInput.noResultsFound": "ไม่พบผลลัพธ์",
|
|
15355
15366
|
"neptune.Summary.statusDone": "รายการที่ทำแล้ว",
|
|
15356
15367
|
"neptune.Summary.statusNotDone": "รายการที่ต้องทำ",
|
|
15357
15368
|
"neptune.Summary.statusPending": "รายการที่รอดำเนินการ",
|
|
@@ -15402,9 +15413,11 @@ var tr = {
|
|
|
15402
15413
|
"neptune.DateLookup.twentyYears": "20 yıl",
|
|
15403
15414
|
"neptune.DateLookup.year": "yıl",
|
|
15404
15415
|
"neptune.FlowNavigation.back": "önceki adıma dön",
|
|
15416
|
+
"neptune.Info.ariaLabel": "Daha fazla bilgi",
|
|
15405
15417
|
"neptune.Link.opensInNewTab": "(yeni sekmede açılır)",
|
|
15406
15418
|
"neptune.MoneyInput.Select.placeholder": "Bir seçenek seçin...",
|
|
15407
15419
|
"neptune.Select.searchPlaceholder": "Ara...",
|
|
15420
|
+
"neptune.SelectInput.noResultsFound": "Sonuç bulunamadı",
|
|
15408
15421
|
"neptune.Summary.statusDone": "Tamamlanan aşama",
|
|
15409
15422
|
"neptune.Summary.statusNotDone": "Yapılacak",
|
|
15410
15423
|
"neptune.Summary.statusPending": "Bekliyor",
|
|
@@ -15455,9 +15468,11 @@ var uk = {
|
|
|
15455
15468
|
"neptune.DateLookup.twentyYears": "20 років",
|
|
15456
15469
|
"neptune.DateLookup.year": "рік",
|
|
15457
15470
|
"neptune.FlowNavigation.back": "back to previous step",
|
|
15471
|
+
"neptune.Info.ariaLabel": "Більше відомостей",
|
|
15458
15472
|
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
15459
15473
|
"neptune.MoneyInput.Select.placeholder": "Виберіть варіант…",
|
|
15460
15474
|
"neptune.Select.searchPlaceholder": "Пошук…",
|
|
15475
|
+
"neptune.SelectInput.noResultsFound": "Нічого не знайдено",
|
|
15461
15476
|
"neptune.Summary.statusDone": "Виконано",
|
|
15462
15477
|
"neptune.Summary.statusNotDone": "Не виконано",
|
|
15463
15478
|
"neptune.Summary.statusPending": "Виконується",
|
|
@@ -15494,23 +15509,25 @@ var uk = {
|
|
|
15494
15509
|
var zhCN = {
|
|
15495
15510
|
"neptune.Button.loadingAriaLabel": "正在加载",
|
|
15496
15511
|
"neptune.Chips.ariaLabel": "清除 {choice}",
|
|
15497
|
-
"neptune.ClearButton.ariaLabel": "
|
|
15512
|
+
"neptune.ClearButton.ariaLabel": "清除",
|
|
15498
15513
|
"neptune.CloseButton.ariaLabel": "关闭",
|
|
15499
15514
|
"neptune.DateInput.day.label": "日",
|
|
15500
15515
|
"neptune.DateInput.month.label": "月",
|
|
15501
15516
|
"neptune.DateInput.year.label": "年",
|
|
15502
15517
|
"neptune.DateLookup.day": "日",
|
|
15503
|
-
"neptune.DateLookup.goTo20YearView": "
|
|
15518
|
+
"neptune.DateLookup.goTo20YearView": "转到 20 年视图",
|
|
15504
15519
|
"neptune.DateLookup.month": "月",
|
|
15505
15520
|
"neptune.DateLookup.next": "下一页",
|
|
15506
15521
|
"neptune.DateLookup.previous": "上一页",
|
|
15507
15522
|
"neptune.DateLookup.selected": "已选",
|
|
15508
|
-
"neptune.DateLookup.twentyYears": "20年",
|
|
15523
|
+
"neptune.DateLookup.twentyYears": "20 年",
|
|
15509
15524
|
"neptune.DateLookup.year": "年",
|
|
15510
|
-
"neptune.FlowNavigation.back": "
|
|
15511
|
-
"neptune.
|
|
15525
|
+
"neptune.FlowNavigation.back": "返回上一步",
|
|
15526
|
+
"neptune.Info.ariaLabel": "更多信息",
|
|
15527
|
+
"neptune.Link.opensInNewTab": "(在新标签页中打开)",
|
|
15512
15528
|
"neptune.MoneyInput.Select.placeholder": "请选择...",
|
|
15513
15529
|
"neptune.Select.searchPlaceholder": "搜索",
|
|
15530
|
+
"neptune.SelectInput.noResultsFound": "找不到结果",
|
|
15514
15531
|
"neptune.Summary.statusDone": "已完成",
|
|
15515
15532
|
"neptune.Summary.statusNotDone": "未完成",
|
|
15516
15533
|
"neptune.Summary.statusPending": "待处理",
|
|
@@ -15526,7 +15543,7 @@ var zhCN = {
|
|
|
15526
15543
|
"neptune.Upload.usPlaceholder": "拖放小于 5MB 的文件",
|
|
15527
15544
|
"neptune.UploadButton.allFileTypes": "所有文件类型",
|
|
15528
15545
|
"neptune.UploadButton.dropFiles": "拖放文件开始上传",
|
|
15529
|
-
"neptune.UploadButton.instructions": "{fileTypes},小于 {size}MB",
|
|
15546
|
+
"neptune.UploadButton.instructions": "{fileTypes},小于 {size} MB",
|
|
15530
15547
|
"neptune.UploadButton.uploadFile": "上传文件",
|
|
15531
15548
|
"neptune.UploadButton.uploadFiles": "上传文件",
|
|
15532
15549
|
"neptune.UploadInput.deleteModalBody": "删除此文件会将其从我们的系统中删除",
|
|
@@ -15561,9 +15578,11 @@ var zhHK = {
|
|
|
15561
15578
|
"neptune.DateLookup.twentyYears": "20年",
|
|
15562
15579
|
"neptune.DateLookup.year": "年",
|
|
15563
15580
|
"neptune.FlowNavigation.back": "返回上一個步驟",
|
|
15581
|
+
"neptune.Info.ariaLabel": "更多資訊",
|
|
15564
15582
|
"neptune.Link.opensInNewTab": "(在新分頁中開啟)",
|
|
15565
15583
|
"neptune.MoneyInput.Select.placeholder": "選擇一個選項…",
|
|
15566
15584
|
"neptune.Select.searchPlaceholder": "搜尋…",
|
|
15585
|
+
"neptune.SelectInput.noResultsFound": "找不到任何結果",
|
|
15567
15586
|
"neptune.Summary.statusDone": "已完成事項",
|
|
15568
15587
|
"neptune.Summary.statusNotDone": "未完成事項",
|
|
15569
15588
|
"neptune.Summary.statusPending": "待處理事項",
|
|
@@ -15721,5 +15740,6 @@ exports.isServerSide = isServerSide;
|
|
|
15721
15740
|
exports.translations = translations;
|
|
15722
15741
|
exports.useDirection = useDirection;
|
|
15723
15742
|
exports.useLayout = useLayout;
|
|
15743
|
+
exports.useScreenSize = useScreenSize;
|
|
15724
15744
|
exports.useSnackbar = useSnackbar;
|
|
15725
15745
|
//# sourceMappingURL=index.js.map
|