@transferwise/components 45.20.0 → 45.21.1
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 +11 -3
- package/build/i18n/de.json +11 -3
- package/build/i18n/en.json +1 -0
- package/build/i18n/es.json +11 -3
- package/build/i18n/fr.json +11 -3
- package/build/i18n/hu.json +11 -3
- package/build/i18n/id.json +11 -3
- package/build/i18n/it.json +11 -3
- package/build/i18n/ja.json +11 -3
- package/build/i18n/pl.json +11 -3
- package/build/i18n/pt.json +11 -3
- package/build/i18n/ro.json +11 -3
- package/build/i18n/ru.json +11 -3
- package/build/i18n/th.json +11 -3
- package/build/i18n/tr.json +11 -3
- package/build/i18n/uk.json +11 -3
- package/build/i18n/zh-CN.json +11 -3
- package/build/i18n/{zh.json → zh-HK.json} +11 -3
- package/build/index.esm.js +540 -236
- package/build/index.esm.js.map +1 -1
- package/build/index.js +540 -236
- package/build/index.js.map +1 -1
- package/build/main.css +1 -1
- package/build/styles/actionButton/ActionButton.css +1 -1
- package/build/styles/chips/Chip.css +1 -1
- package/build/styles/circularButton/CircularButton.css +1 -1
- package/build/styles/common/Option/Option.css +1 -1
- package/build/styles/common/bottomSheet/BottomSheet.css +1 -1
- package/build/styles/common/closeButton/CloseButton.css +1 -1
- package/build/styles/dateLookup/DateLookup.css +1 -1
- package/build/styles/drawer/Drawer.css +1 -1
- package/build/styles/flowNavigation/FlowNavigation.css +1 -1
- package/build/styles/inputs/SelectInput.css +1 -1
- package/build/styles/main.css +1 -1
- package/build/styles/overlayHeader/OverlayHeader.css +1 -1
- package/build/styles/statusIcon/StatusIcon.css +1 -1
- package/build/styles/summary/Summary.css +1 -1
- package/build/styles/typeahead/Typeahead.css +1 -1
- package/build/styles/uploadInput/UploadInput.css +1 -1
- package/build/types/common/bottomSheet/BottomSheet.d.ts.map +1 -1
- package/build/types/common/locale/index.d.ts +10 -1
- package/build/types/common/locale/index.d.ts.map +1 -1
- package/build/types/common/propsValues/breakpoint.d.ts +1 -0
- package/build/types/common/propsValues/breakpoint.d.ts.map +1 -1
- package/build/types/dateLookup/DateLookup.d.ts.map +1 -1
- package/build/types/dateLookup/dateHeader/DateHeader.d.ts.map +1 -1
- package/build/types/i18n/index.d.ts.map +1 -1
- package/build/types/inputs/SelectInput.d.ts.map +1 -1
- package/build/types/inputs/SelectInput.messages.d.ts +9 -0
- package/build/types/inputs/SelectInput.messages.d.ts.map +1 -0
- package/build/types/logo/Logo.d.ts.map +1 -1
- package/build/types/test-utils/story-config.d.ts +11 -1
- package/build/types/test-utils/story-config.d.ts.map +1 -1
- package/build/types/test-utils/window-mock.d.ts +2 -0
- package/build/types/test-utils/window-mock.d.ts.map +1 -0
- package/package.json +4 -4
- package/src/actionButton/ActionButton.css +1 -1
- package/src/actionButton/ActionButton.less +5 -1
- package/src/chips/Chip.css +1 -1
- package/src/chips/Chip.less +8 -0
- package/src/circularButton/CircularButton.css +1 -1
- package/src/circularButton/CircularButton.less +9 -3
- package/src/common/Option/Option.css +1 -1
- package/src/common/Option/Option.less +6 -0
- package/src/common/bottomSheet/BottomSheet.css +1 -1
- package/src/common/bottomSheet/BottomSheet.less +1 -1
- package/src/common/bottomSheet/BottomSheet.spec.tsx +4 -1
- package/src/common/bottomSheet/BottomSheet.story.tsx +4 -0
- package/src/common/bottomSheet/BottomSheet.tsx +10 -1
- package/src/common/closeButton/CloseButton.css +1 -1
- package/src/common/closeButton/CloseButton.less +12 -0
- package/src/common/hooks/useMedia.spec.ts +3 -17
- package/src/common/locale/index.js +10 -1
- package/src/common/locale/index.spec.js +1 -34
- package/src/common/propsValues/breakpoint.ts +1 -0
- package/src/dateLookup/DateLookup.css +1 -1
- package/src/dateLookup/DateLookup.js +7 -3
- package/src/dateLookup/DateLookup.keyboardEvents.spec.js +3 -0
- package/src/dateLookup/DateLookup.less +6 -0
- package/src/dateLookup/DateLookup.story.js +6 -1
- package/src/dateLookup/DateLookup.testingLibrary.spec.js +3 -1
- package/src/dateLookup/DateLookup.view.spec.js +4 -0
- package/src/dateLookup/dateHeader/DateHeader.js +4 -2
- package/src/drawer/Drawer.css +1 -1
- package/src/drawer/Drawer.less +6 -8
- package/src/drawer/Drawer.story.js +42 -2
- package/src/flowNavigation/FlowNavigation.css +1 -1
- package/src/i18n/cs.json +11 -3
- package/src/i18n/de.json +11 -3
- package/src/i18n/en.json +1 -0
- package/src/i18n/es.json +11 -3
- package/src/i18n/fr.json +11 -3
- package/src/i18n/hu.json +11 -3
- package/src/i18n/id.json +11 -3
- package/src/i18n/index.ts +6 -2
- package/src/i18n/it.json +11 -3
- package/src/i18n/ja.json +11 -3
- package/src/i18n/pl.json +11 -3
- package/src/i18n/pt.json +11 -3
- package/src/i18n/ro.json +11 -3
- package/src/i18n/ru.json +11 -3
- package/src/i18n/th.json +11 -3
- package/src/i18n/tr.json +11 -3
- package/src/i18n/uk.json +11 -3
- package/src/i18n/zh-CN.json +11 -3
- package/src/i18n/{zh.json → zh-HK.json} +11 -3
- package/src/inputs/SelectInput.css +1 -1
- package/src/inputs/SelectInput.less +13 -1
- package/src/inputs/SelectInput.messages.ts +9 -0
- package/src/inputs/SelectInput.story.tsx +8 -5
- package/src/inputs/SelectInput.tsx +55 -22
- package/src/inputs/_BottomSheet.tsx +19 -19
- package/src/logo/Logo.js +5 -0
- package/src/main.css +1 -1
- package/src/modal/Modal.tsx +2 -2
- package/src/overlayHeader/OverlayHeader.css +1 -1
- package/src/popover/Popover.spec.js +3 -1
- package/src/radioGroup/RadioGroup.js +1 -1
- package/src/radioGroup/RadioGroup.spec.js +18 -0
- package/src/select/Select.spec.js +6 -9
- package/src/statusIcon/StatusIcon.css +1 -1
- package/src/statusIcon/StatusIcon.less +10 -0
- package/src/summary/Summary.css +1 -1
- package/src/summary/Summary.less +1 -1
- package/src/test-utils/index.js +1 -0
- package/src/test-utils/story-config.ts +21 -7
- package/src/test-utils/window-mock.ts +19 -0
- package/src/typeahead/Typeahead.css +1 -1
- package/src/typeahead/Typeahead.less +5 -6
- package/src/uploadInput/UploadInput.css +1 -1
- package/src/uploadInput/UploadInput.less +5 -1
- package/build/i18n/zh_CN.json +0 -44
- package/src/i18n/zh_CN.json +0 -44
package/build/index.esm.js
CHANGED
|
@@ -13,11 +13,11 @@ import { CSSTransition } from 'react-transition-group';
|
|
|
13
13
|
import { createPortal } from 'react-dom';
|
|
14
14
|
import { FocusScope } from '@react-aria/focus';
|
|
15
15
|
import mergeRefs from 'react-merge-refs';
|
|
16
|
+
import { useSyncExternalStore } from 'use-sync-external-store/shim';
|
|
16
17
|
import { isUndefined, isKey, isNumber, isEmpty, isNull, isArray } from '@transferwise/neptune-validation';
|
|
17
18
|
import { usePopper } from 'react-popper';
|
|
18
19
|
import { Transition, Listbox } from '@headlessui/react';
|
|
19
20
|
import mergeProps from 'merge-props';
|
|
20
|
-
import { useSyncExternalStore } from 'use-sync-external-store/shim';
|
|
21
21
|
import { useFloating, useDismiss, useRole, useInteractions, FloatingPortal, FloatingFocusManager, offset, flip, shift, size, autoUpdate } from '@floating-ui/react';
|
|
22
22
|
import { usePreventScroll } from '@react-aria/overlays';
|
|
23
23
|
import { Illustration } from '@wise/art';
|
|
@@ -158,6 +158,7 @@ var Priority;
|
|
|
158
158
|
|
|
159
159
|
var Breakpoint;
|
|
160
160
|
(function (Breakpoint) {
|
|
161
|
+
Breakpoint[Breakpoint["ZOOM_400"] = 320] = "ZOOM_400";
|
|
161
162
|
Breakpoint[Breakpoint["EXTRA_SMALL"] = 480] = "EXTRA_SMALL";
|
|
162
163
|
Breakpoint[Breakpoint["SMALL"] = 576] = "SMALL";
|
|
163
164
|
Breakpoint[Breakpoint["MEDIUM"] = 768] = "MEDIUM";
|
|
@@ -361,6 +362,11 @@ const DEFAULT_LOCALE = 'en-GB';
|
|
|
361
362
|
* @type {string[]}
|
|
362
363
|
*/
|
|
363
364
|
const RTL_LANGUAGES = ['ar', 'he'];
|
|
365
|
+
|
|
366
|
+
/**
|
|
367
|
+
* @deprecated The source of truth for supported languages lives in Crab.
|
|
368
|
+
* @type {string[]}
|
|
369
|
+
*/
|
|
364
370
|
const SUPPORTED_LANGUAGES = [DEFAULT_LANG, 'de', 'es', 'fr', 'hu', 'id', 'it', 'ja', 'pl', 'pt', 'ro', 'ru', 'th', 'tr', 'uk', 'zh'];
|
|
365
371
|
|
|
366
372
|
/**
|
|
@@ -390,8 +396,13 @@ function adjustLocale(locale) {
|
|
|
390
396
|
* Provides corresponding lang (iso2) for provided locale
|
|
391
397
|
* if locale is invalid or language is unsupported returns null
|
|
392
398
|
*
|
|
399
|
+
* @deprecated The use of this function almost always breaks language variants
|
|
400
|
+
* e.g. Simplified and Traditional Chinese.
|
|
401
|
+
* There should be no use case for this function.
|
|
402
|
+
* To select the correct translations from a translations object, pass the
|
|
403
|
+
* locale directly into Crab's getLocalisedMessages.
|
|
393
404
|
* @param {string} locale (`es`, `es-ES`, `en-GB`, `en`, `ja`, `ja-JP` etc)
|
|
394
|
-
* @returns {string|null}
|
|
405
|
+
* @returns {string|null} two-letter ISO639-1 language
|
|
395
406
|
*/
|
|
396
407
|
function getLangFromLocale(locale) {
|
|
397
408
|
const adjustedLocale = adjustLocale(locale);
|
|
@@ -1706,58 +1717,6 @@ const DimmerContentWrapper = ({
|
|
|
1706
1717
|
};
|
|
1707
1718
|
var Dimmer$1 = withNextPortalWrapper(Dimmer);
|
|
1708
1719
|
|
|
1709
|
-
const EXIT_ANIMATION = 350;
|
|
1710
|
-
const SlidingPanel = /*#__PURE__*/forwardRef(({
|
|
1711
|
-
children,
|
|
1712
|
-
className,
|
|
1713
|
-
open,
|
|
1714
|
-
position,
|
|
1715
|
-
showSlidingPanelBorder,
|
|
1716
|
-
slidingPanelPositionFixed,
|
|
1717
|
-
...rest
|
|
1718
|
-
}, reference) => {
|
|
1719
|
-
/** @type {RefObject<HTMLDivElement>} */
|
|
1720
|
-
const localReference = useRef(null);
|
|
1721
|
-
return /*#__PURE__*/jsx(CSSTransition, {
|
|
1722
|
-
...rest,
|
|
1723
|
-
nodeRef: localReference,
|
|
1724
|
-
in: open
|
|
1725
|
-
// Wait for animation to finish before unmount.
|
|
1726
|
-
,
|
|
1727
|
-
timeout: {
|
|
1728
|
-
enter: 0,
|
|
1729
|
-
exit: EXIT_ANIMATION
|
|
1730
|
-
},
|
|
1731
|
-
classNames: classNames(`sliding-panel--open-${position}`, showSlidingPanelBorder && `sliding-panel--border-${position}`, {
|
|
1732
|
-
'sliding-panel--fixed': slidingPanelPositionFixed
|
|
1733
|
-
}, 'sliding-panel'),
|
|
1734
|
-
appear: true,
|
|
1735
|
-
unmountOnExit: true,
|
|
1736
|
-
children: /*#__PURE__*/jsx("div", {
|
|
1737
|
-
ref: mergeRefs([reference, localReference]),
|
|
1738
|
-
className: classNames('sliding-panel', `sliding-panel--open-${position}`, className),
|
|
1739
|
-
children: children
|
|
1740
|
-
})
|
|
1741
|
-
});
|
|
1742
|
-
});
|
|
1743
|
-
SlidingPanel.propTypes = {
|
|
1744
|
-
children: PropTypes.node,
|
|
1745
|
-
className: PropTypes.string,
|
|
1746
|
-
open: PropTypes.bool,
|
|
1747
|
-
position: PropTypes.oneOf(['top', 'bottom', 'left', 'right']),
|
|
1748
|
-
showSlidingPanelBorder: PropTypes.bool,
|
|
1749
|
-
slidingPanelPositionFixed: PropTypes.bool
|
|
1750
|
-
};
|
|
1751
|
-
SlidingPanel.defaultProps = {
|
|
1752
|
-
children: null,
|
|
1753
|
-
className: undefined,
|
|
1754
|
-
open: false,
|
|
1755
|
-
position: 'left',
|
|
1756
|
-
showSlidingPanelBorder: false,
|
|
1757
|
-
slidingPanelPositionFixed: false
|
|
1758
|
-
};
|
|
1759
|
-
var SlidingPanel$1 = SlidingPanel;
|
|
1760
|
-
|
|
1761
1720
|
const THROTTLE_MS = 100;
|
|
1762
1721
|
const useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect;
|
|
1763
1722
|
const useClientWidth = ({
|
|
@@ -1928,6 +1887,137 @@ const useLayout = () => {
|
|
|
1928
1887
|
};
|
|
1929
1888
|
};
|
|
1930
1889
|
|
|
1890
|
+
const EXIT_ANIMATION = 350;
|
|
1891
|
+
const SlidingPanel = /*#__PURE__*/forwardRef(({
|
|
1892
|
+
children,
|
|
1893
|
+
className,
|
|
1894
|
+
open,
|
|
1895
|
+
position,
|
|
1896
|
+
showSlidingPanelBorder,
|
|
1897
|
+
slidingPanelPositionFixed,
|
|
1898
|
+
...rest
|
|
1899
|
+
}, reference) => {
|
|
1900
|
+
/** @type {RefObject<HTMLDivElement>} */
|
|
1901
|
+
const localReference = useRef(null);
|
|
1902
|
+
return /*#__PURE__*/jsx(CSSTransition, {
|
|
1903
|
+
...rest,
|
|
1904
|
+
nodeRef: localReference,
|
|
1905
|
+
in: open
|
|
1906
|
+
// Wait for animation to finish before unmount.
|
|
1907
|
+
,
|
|
1908
|
+
timeout: {
|
|
1909
|
+
enter: 0,
|
|
1910
|
+
exit: EXIT_ANIMATION
|
|
1911
|
+
},
|
|
1912
|
+
classNames: classNames(`sliding-panel--open-${position}`, showSlidingPanelBorder && `sliding-panel--border-${position}`, {
|
|
1913
|
+
'sliding-panel--fixed': slidingPanelPositionFixed
|
|
1914
|
+
}, 'sliding-panel'),
|
|
1915
|
+
appear: true,
|
|
1916
|
+
unmountOnExit: true,
|
|
1917
|
+
children: /*#__PURE__*/jsx("div", {
|
|
1918
|
+
ref: mergeRefs([reference, localReference]),
|
|
1919
|
+
className: classNames('sliding-panel', `sliding-panel--open-${position}`, className),
|
|
1920
|
+
children: children
|
|
1921
|
+
})
|
|
1922
|
+
});
|
|
1923
|
+
});
|
|
1924
|
+
SlidingPanel.propTypes = {
|
|
1925
|
+
children: PropTypes.node,
|
|
1926
|
+
className: PropTypes.string,
|
|
1927
|
+
open: PropTypes.bool,
|
|
1928
|
+
position: PropTypes.oneOf(['top', 'bottom', 'left', 'right']),
|
|
1929
|
+
showSlidingPanelBorder: PropTypes.bool,
|
|
1930
|
+
slidingPanelPositionFixed: PropTypes.bool
|
|
1931
|
+
};
|
|
1932
|
+
SlidingPanel.defaultProps = {
|
|
1933
|
+
children: null,
|
|
1934
|
+
className: undefined,
|
|
1935
|
+
open: false,
|
|
1936
|
+
position: 'left',
|
|
1937
|
+
showSlidingPanelBorder: false,
|
|
1938
|
+
slidingPanelPositionFixed: false
|
|
1939
|
+
};
|
|
1940
|
+
var SlidingPanel$1 = SlidingPanel;
|
|
1941
|
+
|
|
1942
|
+
const Drawer = ({
|
|
1943
|
+
children,
|
|
1944
|
+
className,
|
|
1945
|
+
footerContent,
|
|
1946
|
+
headerTitle,
|
|
1947
|
+
onClose,
|
|
1948
|
+
open,
|
|
1949
|
+
position
|
|
1950
|
+
}) => {
|
|
1951
|
+
logActionRequiredIf('Drawer now expects `onClose`, and will soon make this prop required. Please update your usage to provide it.', !onClose);
|
|
1952
|
+
const {
|
|
1953
|
+
isMobile
|
|
1954
|
+
} = useLayout();
|
|
1955
|
+
return /*#__PURE__*/jsx(Dimmer$1, {
|
|
1956
|
+
open: open,
|
|
1957
|
+
onClose: onClose,
|
|
1958
|
+
children: /*#__PURE__*/jsx(SlidingPanel$1, {
|
|
1959
|
+
open: open,
|
|
1960
|
+
position: isMobile ? Position.BOTTOM : position,
|
|
1961
|
+
children: /*#__PURE__*/jsxs("div", {
|
|
1962
|
+
className: classNames('np-drawer', className),
|
|
1963
|
+
role: "dialog",
|
|
1964
|
+
children: [/*#__PURE__*/jsxs("div", {
|
|
1965
|
+
className: classNames('np-drawer-header', {
|
|
1966
|
+
'np-drawer-header--withborder': headerTitle
|
|
1967
|
+
}),
|
|
1968
|
+
children: [headerTitle && /*#__PURE__*/jsx(Title, {
|
|
1969
|
+
type: Typography.TITLE_BODY,
|
|
1970
|
+
children: headerTitle
|
|
1971
|
+
}), /*#__PURE__*/jsx(CloseButton, {
|
|
1972
|
+
onClick: onClose
|
|
1973
|
+
})]
|
|
1974
|
+
}), children && /*#__PURE__*/jsx("div", {
|
|
1975
|
+
className: classNames('np-drawer-content'),
|
|
1976
|
+
children: children
|
|
1977
|
+
}), footerContent && /*#__PURE__*/jsx("div", {
|
|
1978
|
+
className: classNames('np-drawer-footer'),
|
|
1979
|
+
children: footerContent
|
|
1980
|
+
})]
|
|
1981
|
+
})
|
|
1982
|
+
})
|
|
1983
|
+
});
|
|
1984
|
+
};
|
|
1985
|
+
Drawer.propTypes = {
|
|
1986
|
+
/** The content to appear in the drawer body. */
|
|
1987
|
+
children: PropTypes.node,
|
|
1988
|
+
className: PropTypes.string,
|
|
1989
|
+
/** The content to appear in the drawer footer. */
|
|
1990
|
+
footerContent: PropTypes.node,
|
|
1991
|
+
/** The content to appear in the drawer header. */
|
|
1992
|
+
headerTitle: PropTypes.node,
|
|
1993
|
+
/** The action to perform on close click. */
|
|
1994
|
+
onClose: PropTypes.func,
|
|
1995
|
+
/** The status of Drawer either open or not. */
|
|
1996
|
+
open: PropTypes.bool,
|
|
1997
|
+
/** The placement of Drawer on the screen either left or right. On mobile it will default to bottom. */
|
|
1998
|
+
position: PropTypes.oneOf(['left', 'right', 'bottom'])
|
|
1999
|
+
};
|
|
2000
|
+
Drawer.defaultProps = {
|
|
2001
|
+
children: null,
|
|
2002
|
+
className: undefined,
|
|
2003
|
+
footerContent: null,
|
|
2004
|
+
headerTitle: null,
|
|
2005
|
+
onClose: null,
|
|
2006
|
+
open: false,
|
|
2007
|
+
position: Position.RIGHT
|
|
2008
|
+
};
|
|
2009
|
+
var Drawer$1 = Drawer;
|
|
2010
|
+
|
|
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
|
+
|
|
1931
2021
|
const INITIAL_Y_POSITION = 0;
|
|
1932
2022
|
const CONTENT_SCROLL_THRESHOLD = 1;
|
|
1933
2023
|
const MOVE_OFFSET_THRESHOLD = 50;
|
|
@@ -2055,7 +2145,13 @@ const BottomSheet$1 = props => {
|
|
|
2055
2145
|
maxHeight: `calc(${screenHeight} - ${safeZoneHeight} - ${topbarHeight})`
|
|
2056
2146
|
};
|
|
2057
2147
|
}
|
|
2058
|
-
|
|
2148
|
+
const is400Zoom = useMedia(`(max-width: ${Breakpoint.ZOOM_400}px)`);
|
|
2149
|
+
return is400Zoom ? /*#__PURE__*/jsx(Drawer$1, {
|
|
2150
|
+
open: props.open,
|
|
2151
|
+
className: props.className,
|
|
2152
|
+
onClose: close,
|
|
2153
|
+
children: props.children
|
|
2154
|
+
}) : /*#__PURE__*/jsx(Dimmer$1, {
|
|
2059
2155
|
open: props.open,
|
|
2060
2156
|
fadeContentOnEnter: true,
|
|
2061
2157
|
fadeContentOnExit: true,
|
|
@@ -3282,7 +3378,7 @@ const ResponsivePanel = /*#__PURE__*/forwardRef(({
|
|
|
3282
3378
|
});
|
|
3283
3379
|
var ResponsivePanel$1 = ResponsivePanel;
|
|
3284
3380
|
|
|
3285
|
-
var
|
|
3381
|
+
var dateTriggerMessages = defineMessages({
|
|
3286
3382
|
ariaLabel: {
|
|
3287
3383
|
id: "neptune.ClearButton.ariaLabel"
|
|
3288
3384
|
}
|
|
@@ -3345,7 +3441,7 @@ const DateTrigger = ({
|
|
|
3345
3441
|
className: "input-group-addon",
|
|
3346
3442
|
children: /*#__PURE__*/jsx(CloseButton, {
|
|
3347
3443
|
className: `clear-btn clear-btn--${size}`,
|
|
3348
|
-
"aria-label": formatMessage(
|
|
3444
|
+
"aria-label": formatMessage(dateTriggerMessages.ariaLabel),
|
|
3349
3445
|
size: Size.SMALL,
|
|
3350
3446
|
onClick: event => {
|
|
3351
3447
|
event.stopPropagation();
|
|
@@ -3375,7 +3471,7 @@ DateTrigger.defaultProps = {
|
|
|
3375
3471
|
};
|
|
3376
3472
|
var DateTrigger$1 = DateTrigger;
|
|
3377
3473
|
|
|
3378
|
-
var messages$
|
|
3474
|
+
var messages$6 = defineMessages({
|
|
3379
3475
|
next: {
|
|
3380
3476
|
id: "neptune.DateLookup.next"
|
|
3381
3477
|
},
|
|
@@ -3411,14 +3507,17 @@ const DateHeader = ({
|
|
|
3411
3507
|
dateMode
|
|
3412
3508
|
}) => {
|
|
3413
3509
|
const intl = useIntl();
|
|
3510
|
+
const {
|
|
3511
|
+
isMobile
|
|
3512
|
+
} = useLayout();
|
|
3414
3513
|
return /*#__PURE__*/jsxs("div", {
|
|
3415
|
-
className:
|
|
3514
|
+
className: classNames('text-xs-center', !isMobile && ['clearfix', 'p-y-1']),
|
|
3416
3515
|
children: [/*#__PURE__*/jsx("div", {
|
|
3417
3516
|
className: "pull-left-single-direction",
|
|
3418
3517
|
children: /*#__PURE__*/jsx("button", {
|
|
3419
3518
|
type: "button",
|
|
3420
3519
|
className: `d-inline-flex ${buttonClasses}`,
|
|
3421
|
-
"aria-label": `${intl.formatMessage(messages$
|
|
3520
|
+
"aria-label": `${intl.formatMessage(messages$6.previous)} ${dateMode}`,
|
|
3422
3521
|
onClick: onPreviousClick,
|
|
3423
3522
|
children: /*#__PURE__*/jsx(Chevron$1, {
|
|
3424
3523
|
orientation: Position.LEFT,
|
|
@@ -3432,7 +3531,7 @@ const DateHeader = ({
|
|
|
3432
3531
|
children: /*#__PURE__*/jsx("button", {
|
|
3433
3532
|
type: "button",
|
|
3434
3533
|
className: `tw-date-lookup-header-current ${buttonClasses}`,
|
|
3435
|
-
"aria-label": intl.formatMessage(messages$
|
|
3534
|
+
"aria-label": intl.formatMessage(messages$6.goTo20YearView),
|
|
3436
3535
|
onClick: onLabelClick,
|
|
3437
3536
|
children: label
|
|
3438
3537
|
})
|
|
@@ -3441,7 +3540,7 @@ const DateHeader = ({
|
|
|
3441
3540
|
children: /*#__PURE__*/jsx("button", {
|
|
3442
3541
|
type: "button",
|
|
3443
3542
|
className: `d-inline-flex ${buttonClasses}`,
|
|
3444
|
-
"aria-label": `${useIntl().formatMessage(messages$
|
|
3543
|
+
"aria-label": `${useIntl().formatMessage(messages$6.next)} ${dateMode}`,
|
|
3445
3544
|
onClick: onNextClick,
|
|
3446
3545
|
children: /*#__PURE__*/jsx(Chevron$1, {
|
|
3447
3546
|
orientation: Position.RIGHT,
|
|
@@ -3485,7 +3584,7 @@ class TableLink extends PureComponent {
|
|
|
3485
3584
|
};
|
|
3486
3585
|
calculateAriaLabel = (longTitle, title, active, type, formatMessage) => {
|
|
3487
3586
|
if (active) {
|
|
3488
|
-
return `${longTitle || title}, ${formatMessage(messages$
|
|
3587
|
+
return `${longTitle || title}, ${formatMessage(messages$6.selected)} ${formatMessage(messages$6[type])}`;
|
|
3489
3588
|
}
|
|
3490
3589
|
return longTitle || title;
|
|
3491
3590
|
};
|
|
@@ -3708,7 +3807,7 @@ class DayCalendar extends PureComponent {
|
|
|
3708
3807
|
month: monthFormat,
|
|
3709
3808
|
year: 'numeric'
|
|
3710
3809
|
}),
|
|
3711
|
-
dateMode: formatMessage(messages$
|
|
3810
|
+
dateMode: formatMessage(messages$6.month),
|
|
3712
3811
|
onLabelClick: onLabelClick,
|
|
3713
3812
|
onPreviousClick: this.selectPreviousMonth,
|
|
3714
3813
|
onNextClick: this.selectNextMonth
|
|
@@ -3836,7 +3935,7 @@ class MonthCalendar extends PureComponent {
|
|
|
3836
3935
|
} = this.props;
|
|
3837
3936
|
return /*#__PURE__*/jsxs(Fragment, {
|
|
3838
3937
|
children: [/*#__PURE__*/jsx(DateHeader$1, {
|
|
3839
|
-
dateMode: formatMessage(messages$
|
|
3938
|
+
dateMode: formatMessage(messages$6.year),
|
|
3840
3939
|
label: formatDate(new Date(viewYear, 0), locale, {
|
|
3841
3940
|
year: 'numeric'
|
|
3842
3941
|
}),
|
|
@@ -3961,7 +4060,7 @@ class YearCalendar extends PureComponent {
|
|
|
3961
4060
|
} = this.props;
|
|
3962
4061
|
return /*#__PURE__*/jsxs(Fragment, {
|
|
3963
4062
|
children: [/*#__PURE__*/jsx(DateHeader$1, {
|
|
3964
|
-
dateMode: formatMessage(messages$
|
|
4063
|
+
dateMode: formatMessage(messages$6.twentyYears),
|
|
3965
4064
|
onPreviousClick: this.selectPreviousYears,
|
|
3966
4065
|
onNextClick: this.selectNextYears
|
|
3967
4066
|
}), /*#__PURE__*/jsx(YearCalendarTable$1, {
|
|
@@ -4008,7 +4107,8 @@ class DateLookup extends PureComponent {
|
|
|
4008
4107
|
viewMonth: (props.value || new Date()).getMonth(),
|
|
4009
4108
|
viewYear: (props.value || new Date()).getFullYear(),
|
|
4010
4109
|
open: false,
|
|
4011
|
-
mode: MODE.DAY
|
|
4110
|
+
mode: MODE.DAY,
|
|
4111
|
+
isMobile: false
|
|
4012
4112
|
};
|
|
4013
4113
|
}
|
|
4014
4114
|
static getDerivedStateFromProps(props, state) {
|
|
@@ -4043,6 +4143,10 @@ class DateLookup extends PureComponent {
|
|
|
4043
4143
|
if (+this.props.value !== +previousProps.value && this.state.open) {
|
|
4044
4144
|
this.focusOn('.active');
|
|
4045
4145
|
}
|
|
4146
|
+
this.mediaQuery = window.matchMedia(`(max-width: ${Breakpoint.SMALL}px)`);
|
|
4147
|
+
this.setState({
|
|
4148
|
+
isMobile: this.mediaQuery.matches
|
|
4149
|
+
});
|
|
4046
4150
|
}
|
|
4047
4151
|
componentWillUnmount() {
|
|
4048
4152
|
// Prevents memory leak by cleaning state.
|
|
@@ -4175,14 +4279,17 @@ class DateLookup extends PureComponent {
|
|
|
4175
4279
|
max,
|
|
4176
4280
|
viewMonth,
|
|
4177
4281
|
viewYear,
|
|
4178
|
-
mode
|
|
4282
|
+
mode,
|
|
4283
|
+
isMobile
|
|
4179
4284
|
} = this.state;
|
|
4180
4285
|
const {
|
|
4181
4286
|
placeholder,
|
|
4182
4287
|
monthFormat
|
|
4183
4288
|
} = this.props;
|
|
4184
4289
|
return /*#__PURE__*/jsxs("div", {
|
|
4185
|
-
className:
|
|
4290
|
+
className: classNames({
|
|
4291
|
+
'p-a-1': !isMobile
|
|
4292
|
+
}),
|
|
4186
4293
|
children: [mode === MODE.DAY && /*#__PURE__*/jsx(DayCalendar$1, {
|
|
4187
4294
|
selectedDate,
|
|
4188
4295
|
min,
|
|
@@ -4690,75 +4797,6 @@ function Display({
|
|
|
4690
4797
|
});
|
|
4691
4798
|
}
|
|
4692
4799
|
|
|
4693
|
-
const Drawer = ({
|
|
4694
|
-
children,
|
|
4695
|
-
className,
|
|
4696
|
-
footerContent,
|
|
4697
|
-
headerTitle,
|
|
4698
|
-
onClose,
|
|
4699
|
-
open,
|
|
4700
|
-
position
|
|
4701
|
-
}) => {
|
|
4702
|
-
logActionRequiredIf('Drawer now expects `onClose`, and will soon make this prop required. Please update your usage to provide it.', !onClose);
|
|
4703
|
-
const {
|
|
4704
|
-
isMobile
|
|
4705
|
-
} = useLayout();
|
|
4706
|
-
return /*#__PURE__*/jsx(Dimmer$1, {
|
|
4707
|
-
open: open,
|
|
4708
|
-
onClose: onClose,
|
|
4709
|
-
children: /*#__PURE__*/jsx(SlidingPanel$1, {
|
|
4710
|
-
open: open,
|
|
4711
|
-
position: isMobile ? Position.BOTTOM : position,
|
|
4712
|
-
children: /*#__PURE__*/jsxs("div", {
|
|
4713
|
-
className: classNames('np-drawer', className),
|
|
4714
|
-
role: "dialog",
|
|
4715
|
-
children: [/*#__PURE__*/jsxs("div", {
|
|
4716
|
-
className: classNames('np-drawer-header', {
|
|
4717
|
-
'np-drawer-header--withborder': headerTitle
|
|
4718
|
-
}),
|
|
4719
|
-
children: [headerTitle && /*#__PURE__*/jsx(Title, {
|
|
4720
|
-
type: Typography.TITLE_BODY,
|
|
4721
|
-
children: headerTitle
|
|
4722
|
-
}), /*#__PURE__*/jsx(CloseButton, {
|
|
4723
|
-
onClick: onClose
|
|
4724
|
-
})]
|
|
4725
|
-
}), children && /*#__PURE__*/jsx("div", {
|
|
4726
|
-
className: classNames('np-drawer-content'),
|
|
4727
|
-
children: children
|
|
4728
|
-
}), footerContent && /*#__PURE__*/jsx("div", {
|
|
4729
|
-
className: classNames('np-drawer-footer'),
|
|
4730
|
-
children: footerContent
|
|
4731
|
-
})]
|
|
4732
|
-
})
|
|
4733
|
-
})
|
|
4734
|
-
});
|
|
4735
|
-
};
|
|
4736
|
-
Drawer.propTypes = {
|
|
4737
|
-
/** The content to appear in the drawer body. */
|
|
4738
|
-
children: PropTypes.node,
|
|
4739
|
-
className: PropTypes.string,
|
|
4740
|
-
/** The content to appear in the drawer footer. */
|
|
4741
|
-
footerContent: PropTypes.node,
|
|
4742
|
-
/** The content to appear in the drawer header. */
|
|
4743
|
-
headerTitle: PropTypes.node,
|
|
4744
|
-
/** The action to perform on close click. */
|
|
4745
|
-
onClose: PropTypes.func,
|
|
4746
|
-
/** The status of Drawer either open or not. */
|
|
4747
|
-
open: PropTypes.bool,
|
|
4748
|
-
/** The placement of Drawer on the screen either left or right. On mobile it will default to bottom. */
|
|
4749
|
-
position: PropTypes.oneOf(['left', 'right', 'bottom'])
|
|
4750
|
-
};
|
|
4751
|
-
Drawer.defaultProps = {
|
|
4752
|
-
children: null,
|
|
4753
|
-
className: undefined,
|
|
4754
|
-
footerContent: null,
|
|
4755
|
-
headerTitle: null,
|
|
4756
|
-
onClose: null,
|
|
4757
|
-
open: false,
|
|
4758
|
-
position: Position.RIGHT
|
|
4759
|
-
};
|
|
4760
|
-
var Drawer$1 = Drawer;
|
|
4761
|
-
|
|
4762
4800
|
const DropFade = ({
|
|
4763
4801
|
children,
|
|
4764
4802
|
show
|
|
@@ -5465,6 +5503,11 @@ const Logo = ({
|
|
|
5465
5503
|
});
|
|
5466
5504
|
const isSmall = clientWidth < Breakpoint.SMALL;
|
|
5467
5505
|
const LogoSvg = isSmall ? svgPaths[`WISE_FLAG${inverse ? '_INVERSE' : ''}`] : svgPaths[`${type}${inverse ? '_INVERSE' : ''}`];
|
|
5506
|
+
|
|
5507
|
+
// If clientWidth is not defined, don't render anything
|
|
5508
|
+
if (clientWidth === null) {
|
|
5509
|
+
return null;
|
|
5510
|
+
}
|
|
5468
5511
|
return /*#__PURE__*/jsx(LogoSvg, {
|
|
5469
5512
|
className: classNames('np-logo-svg', className),
|
|
5470
5513
|
alt: type === LogoType.WISE ? 'Wise' : 'Wise business'
|
|
@@ -5659,7 +5702,7 @@ const Stepper = ({
|
|
|
5659
5702
|
});
|
|
5660
5703
|
};
|
|
5661
5704
|
|
|
5662
|
-
var messages$
|
|
5705
|
+
var messages$5 = defineMessages({
|
|
5663
5706
|
back: {
|
|
5664
5707
|
id: "neptune.FlowNavigation.back"
|
|
5665
5708
|
}
|
|
@@ -5739,7 +5782,7 @@ const FlowNavigation = ({
|
|
|
5739
5782
|
className: "m-x-1",
|
|
5740
5783
|
labels: steps.map(step => step.label),
|
|
5741
5784
|
activeLabel: activeStep - 1,
|
|
5742
|
-
"aria-label": intl.formatMessage(messages$
|
|
5785
|
+
"aria-label": intl.formatMessage(messages$5.back)
|
|
5743
5786
|
}),
|
|
5744
5787
|
onClick: onGoBack
|
|
5745
5788
|
}) : logo
|
|
@@ -5891,13 +5934,14 @@ const Modal = ({
|
|
|
5891
5934
|
}) => {
|
|
5892
5935
|
const checkSpecialClasses = classToCheck => className?.split(' ').includes(classToCheck);
|
|
5893
5936
|
const {
|
|
5894
|
-
isMobile
|
|
5937
|
+
isMobile,
|
|
5938
|
+
isMedium: isTablet
|
|
5895
5939
|
} = useLayout();
|
|
5896
5940
|
// These should be replaced with props in breaking change.
|
|
5897
5941
|
const isCompact = checkSpecialClasses('compact');
|
|
5898
5942
|
const noDivider = checkSpecialClasses('no-divider');
|
|
5899
5943
|
const contentReference = useRef(null);
|
|
5900
|
-
return isMobile ? /*#__PURE__*/jsx(Drawer$1, {
|
|
5944
|
+
return isMobile || isTablet ? /*#__PURE__*/jsx(Drawer$1, {
|
|
5901
5945
|
open: open,
|
|
5902
5946
|
headerTitle: title,
|
|
5903
5947
|
footerContent: footer,
|
|
@@ -6320,16 +6364,6 @@ const SearchInput = /*#__PURE__*/forwardRef(function SearchInput({
|
|
|
6320
6364
|
});
|
|
6321
6365
|
});
|
|
6322
6366
|
|
|
6323
|
-
function useMedia(query) {
|
|
6324
|
-
return useSyncExternalStore(onStoreChange => {
|
|
6325
|
-
const mediaQueryList = window.matchMedia(query);
|
|
6326
|
-
mediaQueryList.addEventListener('change', onStoreChange);
|
|
6327
|
-
return () => {
|
|
6328
|
-
mediaQueryList.removeEventListener('change', onStoreChange);
|
|
6329
|
-
};
|
|
6330
|
-
}, () => typeof window !== 'undefined' ? window.matchMedia(query).matches : undefined, () => undefined);
|
|
6331
|
-
}
|
|
6332
|
-
|
|
6333
6367
|
function useScreenSize(size) {
|
|
6334
6368
|
return useMedia(`(min-width: ${size}px)`);
|
|
6335
6369
|
}
|
|
@@ -6354,6 +6388,12 @@ function wrapInFragment(value) {
|
|
|
6354
6388
|
});
|
|
6355
6389
|
}
|
|
6356
6390
|
|
|
6391
|
+
var messages$4 = defineMessages({
|
|
6392
|
+
noResultsFound: {
|
|
6393
|
+
id: "neptune.SelectInput.noResultsFound"
|
|
6394
|
+
}
|
|
6395
|
+
});
|
|
6396
|
+
|
|
6357
6397
|
function PreventScroll() {
|
|
6358
6398
|
usePreventScroll();
|
|
6359
6399
|
return null;
|
|
@@ -6399,29 +6439,29 @@ function BottomSheet({
|
|
|
6399
6439
|
theme: theme,
|
|
6400
6440
|
screenMode: screenMode,
|
|
6401
6441
|
isNotRootProvider: true,
|
|
6402
|
-
children: /*#__PURE__*/
|
|
6442
|
+
children: /*#__PURE__*/jsx(Transition, {
|
|
6403
6443
|
show: open,
|
|
6404
6444
|
className: "np-bottom-sheet-v2-container",
|
|
6405
6445
|
beforeEnter: () => {
|
|
6406
6446
|
setFloatingKey(prev => prev + 1);
|
|
6407
6447
|
},
|
|
6408
|
-
children:
|
|
6409
|
-
|
|
6410
|
-
|
|
6411
|
-
|
|
6412
|
-
|
|
6413
|
-
|
|
6414
|
-
|
|
6415
|
-
|
|
6416
|
-
|
|
6417
|
-
|
|
6418
|
-
|
|
6419
|
-
|
|
6420
|
-
|
|
6421
|
-
|
|
6422
|
-
|
|
6423
|
-
|
|
6424
|
-
|
|
6448
|
+
children: /*#__PURE__*/jsxs(FocusBoundary, {
|
|
6449
|
+
children: [/*#__PURE__*/jsx(Transition.Child, {
|
|
6450
|
+
enter: "np-bottom-sheet-v2-backdrop-container--enter",
|
|
6451
|
+
enterFrom: "np-bottom-sheet-v2-backdrop-container--enter-from",
|
|
6452
|
+
leave: "np-bottom-sheet-v2-backdrop-container--leave",
|
|
6453
|
+
leaveTo: "np-bottom-sheet-v2-backdrop-container--leave-to",
|
|
6454
|
+
children: /*#__PURE__*/jsx("div", {
|
|
6455
|
+
className: "np-bottom-sheet-v2-backdrop"
|
|
6456
|
+
})
|
|
6457
|
+
}), /*#__PURE__*/jsx("div", {
|
|
6458
|
+
className: "np-bottom-sheet-v2",
|
|
6459
|
+
children: /*#__PURE__*/jsx(Transition.Child, {
|
|
6460
|
+
className: "np-bottom-sheet-v2-content",
|
|
6461
|
+
enter: "np-bottom-sheet-v2-content--enter",
|
|
6462
|
+
enterFrom: "np-bottom-sheet-v2-content--enter-from",
|
|
6463
|
+
leave: "np-bottom-sheet-v2-content--leave",
|
|
6464
|
+
leaveTo: "np-bottom-sheet-v2-content--leave-to",
|
|
6425
6465
|
children: /*#__PURE__*/jsx(FloatingFocusManager, {
|
|
6426
6466
|
context: context,
|
|
6427
6467
|
initialFocus: initialFocusRef,
|
|
@@ -6455,8 +6495,8 @@ function BottomSheet({
|
|
|
6455
6495
|
}, floatingKey)
|
|
6456
6496
|
})
|
|
6457
6497
|
})
|
|
6458
|
-
})
|
|
6459
|
-
})
|
|
6498
|
+
})]
|
|
6499
|
+
})
|
|
6460
6500
|
})
|
|
6461
6501
|
})
|
|
6462
6502
|
})]
|
|
@@ -6607,14 +6647,14 @@ function useSelectInputItemCheckPadding() {
|
|
|
6607
6647
|
const SelectInputTriggerButtonPropsContext = /*#__PURE__*/createContext({});
|
|
6608
6648
|
const SelectInputOptionContentWithinTriggerContext = /*#__PURE__*/createContext(false);
|
|
6609
6649
|
function dedupeSelectInputOptionItem(item, existingValues) {
|
|
6610
|
-
if (existingValues.has(item.value)) {
|
|
6611
|
-
|
|
6612
|
-
|
|
6613
|
-
value: undefined
|
|
6614
|
-
};
|
|
6650
|
+
if (!existingValues.has(item.value)) {
|
|
6651
|
+
existingValues.add(item.value);
|
|
6652
|
+
return item;
|
|
6615
6653
|
}
|
|
6616
|
-
|
|
6617
|
-
|
|
6654
|
+
return {
|
|
6655
|
+
...item,
|
|
6656
|
+
value: undefined
|
|
6657
|
+
};
|
|
6618
6658
|
}
|
|
6619
6659
|
function dedupeSelectInputItems(items) {
|
|
6620
6660
|
const existingValues = new Set();
|
|
@@ -6635,6 +6675,24 @@ function dedupeSelectInputItems(items) {
|
|
|
6635
6675
|
return item;
|
|
6636
6676
|
});
|
|
6637
6677
|
}
|
|
6678
|
+
function filterSelectInputOptionItem(item, needle) {
|
|
6679
|
+
return inferSearchableStrings(item.filterMatchers ?? item.value).some(haystack => haystack.includes(needle));
|
|
6680
|
+
}
|
|
6681
|
+
function filterSelectInputItems(items, needle) {
|
|
6682
|
+
return items.filter(item => {
|
|
6683
|
+
switch (item.type) {
|
|
6684
|
+
case 'option':
|
|
6685
|
+
{
|
|
6686
|
+
return filterSelectInputOptionItem(item, needle);
|
|
6687
|
+
}
|
|
6688
|
+
case 'group':
|
|
6689
|
+
{
|
|
6690
|
+
return item.options.some(option => filterSelectInputOptionItem(option, needle));
|
|
6691
|
+
}
|
|
6692
|
+
}
|
|
6693
|
+
return false;
|
|
6694
|
+
});
|
|
6695
|
+
}
|
|
6638
6696
|
const defaultRenderTrigger = ({
|
|
6639
6697
|
content,
|
|
6640
6698
|
placeholderShown,
|
|
@@ -6682,7 +6740,7 @@ function SelectInputClearButton({
|
|
|
6682
6740
|
const intl = useIntl();
|
|
6683
6741
|
return /*#__PURE__*/jsx("button", {
|
|
6684
6742
|
type: "button",
|
|
6685
|
-
"aria-label": intl.formatMessage(
|
|
6743
|
+
"aria-label": intl.formatMessage(dateTriggerMessages.ariaLabel),
|
|
6686
6744
|
className: classNames(className, 'np-select-input-addon np-select-input-addon--interactive'),
|
|
6687
6745
|
onClick: onClick,
|
|
6688
6746
|
children: /*#__PURE__*/jsx(Cross, {
|
|
@@ -6823,9 +6881,14 @@ const SelectInputOptionsContainer = /*#__PURE__*/forwardRef(function SelectInput
|
|
|
6823
6881
|
ref: ref,
|
|
6824
6882
|
onKeyDown: event => {
|
|
6825
6883
|
// Prevent absorbing dismissal requests too early
|
|
6826
|
-
if (event.key
|
|
6827
|
-
|
|
6884
|
+
if (event.key === 'Escape') {
|
|
6885
|
+
return;
|
|
6886
|
+
}
|
|
6887
|
+
// Prevent confirmation close without an active item
|
|
6888
|
+
if (event.key === 'Enter' && ariaActiveDescendant == null) {
|
|
6889
|
+
return;
|
|
6828
6890
|
}
|
|
6891
|
+
onKeyDown?.(event);
|
|
6829
6892
|
},
|
|
6830
6893
|
...restProps
|
|
6831
6894
|
})
|
|
@@ -6839,6 +6902,8 @@ function SelectInputOptions({
|
|
|
6839
6902
|
searchInputRef,
|
|
6840
6903
|
listboxRef
|
|
6841
6904
|
}) {
|
|
6905
|
+
const intl = useIntl();
|
|
6906
|
+
const controllerRef = filterable ? searchInputRef : listboxRef;
|
|
6842
6907
|
const [query, setQuery] = useState('');
|
|
6843
6908
|
const needle = useMemo(() => {
|
|
6844
6909
|
if (filterable) {
|
|
@@ -6846,14 +6911,16 @@ function SelectInputOptions({
|
|
|
6846
6911
|
}
|
|
6847
6912
|
return undefined;
|
|
6848
6913
|
}, [filterable, query]);
|
|
6914
|
+
const empty = needle != null && filterSelectInputItems(items, needle).length === 0;
|
|
6849
6915
|
const listboxContainerRef = useRef(null);
|
|
6850
6916
|
useEffect(() => {
|
|
6851
6917
|
if (listboxContainerRef.current != null) {
|
|
6852
6918
|
listboxContainerRef.current.style.setProperty('--initial-height', `${listboxContainerRef.current.offsetHeight}px`);
|
|
6853
6919
|
}
|
|
6854
6920
|
}, []);
|
|
6921
|
+
const showStatus = empty;
|
|
6922
|
+
const statusId = useId();
|
|
6855
6923
|
const listboxId = useId();
|
|
6856
|
-
const controllerRef = filterable ? searchInputRef : listboxRef;
|
|
6857
6924
|
return /*#__PURE__*/jsxs(Listbox.Options, {
|
|
6858
6925
|
as: SelectInputOptionsContainer,
|
|
6859
6926
|
static: true,
|
|
@@ -6875,6 +6942,7 @@ function SelectInputOptions({
|
|
|
6875
6942
|
placeholder: filterPlaceholder,
|
|
6876
6943
|
value: query,
|
|
6877
6944
|
"aria-controls": listboxId,
|
|
6945
|
+
"aria-describedby": showStatus ? statusId : undefined,
|
|
6878
6946
|
onKeyDown: event => {
|
|
6879
6947
|
// Prevent interfering with the matcher of Headless UI
|
|
6880
6948
|
// https://mathiasbynens.be/notes/javascript-unicode#regex
|
|
@@ -6886,24 +6954,31 @@ function SelectInputOptions({
|
|
|
6886
6954
|
setQuery(event.currentTarget.value);
|
|
6887
6955
|
}
|
|
6888
6956
|
})
|
|
6889
|
-
}) : null, /*#__PURE__*/
|
|
6957
|
+
}) : null, /*#__PURE__*/jsxs("div", {
|
|
6890
6958
|
ref: listboxContainerRef,
|
|
6891
6959
|
className: classNames('np-select-input-listbox-container', items.some(item => item.type === 'group') && 'np-select-input-listbox-container--has-group'),
|
|
6892
|
-
children: /*#__PURE__*/
|
|
6960
|
+
children: [empty ? /*#__PURE__*/jsxs("div", {
|
|
6961
|
+
id: statusId,
|
|
6962
|
+
className: "np-select-input-options-status",
|
|
6963
|
+
children: [/*#__PURE__*/jsx(CrossCircle, {
|
|
6964
|
+
size: 16,
|
|
6965
|
+
className: "np-select-input-options-status-icon"
|
|
6966
|
+
}), intl.formatMessage(messages$4.noResultsFound)]
|
|
6967
|
+
}) : null, /*#__PURE__*/jsx("div", {
|
|
6893
6968
|
ref: listboxRef,
|
|
6894
6969
|
id: listboxId,
|
|
6895
6970
|
role: "listbox",
|
|
6896
6971
|
"aria-orientation": "vertical",
|
|
6897
6972
|
tabIndex: 0,
|
|
6898
6973
|
className: "np-select-input-listbox",
|
|
6899
|
-
children: (needle
|
|
6974
|
+
children: (needle != null ? dedupeSelectInputItems(items) : items).map((item, index) => /*#__PURE__*/jsx(SelectInputItemView
|
|
6900
6975
|
// eslint-disable-next-line react/no-array-index-key
|
|
6901
6976
|
, {
|
|
6902
6977
|
item: item,
|
|
6903
6978
|
renderValue: renderValue,
|
|
6904
6979
|
needle: needle
|
|
6905
6980
|
}, index))
|
|
6906
|
-
})
|
|
6981
|
+
})]
|
|
6907
6982
|
})]
|
|
6908
6983
|
});
|
|
6909
6984
|
}
|
|
@@ -6915,7 +6990,7 @@ function SelectInputItemView({
|
|
|
6915
6990
|
switch (item.type) {
|
|
6916
6991
|
case 'option':
|
|
6917
6992
|
{
|
|
6918
|
-
if (item.value != null && (
|
|
6993
|
+
if (item.value != null && (needle == null || filterSelectInputOptionItem(item, needle))) {
|
|
6919
6994
|
return /*#__PURE__*/jsx(SelectInputOption, {
|
|
6920
6995
|
value: item.value,
|
|
6921
6996
|
disabled: item.disabled,
|
|
@@ -10690,6 +10765,7 @@ var en = {
|
|
|
10690
10765
|
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
10691
10766
|
"neptune.MoneyInput.Select.placeholder": "Select an option...",
|
|
10692
10767
|
"neptune.Select.searchPlaceholder": "Search...",
|
|
10768
|
+
"neptune.SelectInput.noResultsFound": "No results found",
|
|
10693
10769
|
"neptune.Summary.statusDone": "Item done",
|
|
10694
10770
|
"neptune.Summary.statusNotDone": "Item to do",
|
|
10695
10771
|
"neptune.Summary.statusPending": "Item pending",
|
|
@@ -10917,7 +10993,7 @@ class RadioGroup extends Component {
|
|
|
10917
10993
|
const {
|
|
10918
10994
|
selectedValue
|
|
10919
10995
|
} = this.state;
|
|
10920
|
-
return radios && radios.length >
|
|
10996
|
+
return radios && radios.length > 0 ? /*#__PURE__*/jsx(Fragment, {
|
|
10921
10997
|
children: radios.map(({
|
|
10922
10998
|
id,
|
|
10923
10999
|
avatar,
|
|
@@ -14458,17 +14534,78 @@ function useSnackbar() {
|
|
|
14458
14534
|
return createSnackbar;
|
|
14459
14535
|
}
|
|
14460
14536
|
|
|
14537
|
+
var cs = {
|
|
14538
|
+
"neptune.Button.loadingAriaLabel": "načítání",
|
|
14539
|
+
"neptune.Chips.ariaLabel": "Vyčistit {choice}",
|
|
14540
|
+
"neptune.ClearButton.ariaLabel": "Vyčistit",
|
|
14541
|
+
"neptune.CloseButton.ariaLabel": "Zavřít",
|
|
14542
|
+
"neptune.DateInput.day.label": "Den",
|
|
14543
|
+
"neptune.DateInput.month.label": "Měsíc",
|
|
14544
|
+
"neptune.DateInput.year.label": "Rok",
|
|
14545
|
+
"neptune.DateLookup.day": "den",
|
|
14546
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
14547
|
+
"neptune.DateLookup.month": "měsíc",
|
|
14548
|
+
"neptune.DateLookup.next": "další",
|
|
14549
|
+
"neptune.DateLookup.previous": "předchozí",
|
|
14550
|
+
"neptune.DateLookup.selected": "vybráno",
|
|
14551
|
+
"neptune.DateLookup.twentyYears": "20 let",
|
|
14552
|
+
"neptune.DateLookup.year": "rok",
|
|
14553
|
+
"neptune.FlowNavigation.back": "back to previous step",
|
|
14554
|
+
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
14555
|
+
"neptune.MoneyInput.Select.placeholder": "Vybrat možnost...",
|
|
14556
|
+
"neptune.Select.searchPlaceholder": "Hledat...",
|
|
14557
|
+
"neptune.Summary.statusDone": "Položka dokončena",
|
|
14558
|
+
"neptune.Summary.statusNotDone": "Položka k dokončení",
|
|
14559
|
+
"neptune.Summary.statusPending": "Čekající položka",
|
|
14560
|
+
"neptune.Upload.csButtonText": "Nahrát další soubor?",
|
|
14561
|
+
"neptune.Upload.csFailureText": "Nahrání se nezdařilo. Zkuste to prosím později",
|
|
14562
|
+
"neptune.Upload.csSuccessText": "Úspěšně nahráno!",
|
|
14563
|
+
"neptune.Upload.csTooLargeMessage": "Soubor musí být menší než 5MB",
|
|
14564
|
+
"neptune.Upload.csWrongTypeMessage": "Tento formát souboru není podporován. Zkuste to znovu s jiným souborem",
|
|
14565
|
+
"neptune.Upload.psButtonText": "Zrušit",
|
|
14566
|
+
"neptune.Upload.psProcessingText": "Načítání...",
|
|
14567
|
+
"neptune.Upload.usButtonText": "Nebo vyberte soubor",
|
|
14568
|
+
"neptune.Upload.usDropMessage": "Pusťte sem soubor pro jeho nahrání",
|
|
14569
|
+
"neptune.Upload.usPlaceholder": "Přetáhněte a pusťte sem soubor menší než 5MB",
|
|
14570
|
+
"neptune.UploadButton.allFileTypes": "Všechny typy souborů",
|
|
14571
|
+
"neptune.UploadButton.dropFiles": "Pusťte sem soubor pro jeho nahrání",
|
|
14572
|
+
"neptune.UploadButton.instructions": "{fileTypes}, menší než {size}MB",
|
|
14573
|
+
"neptune.UploadButton.uploadFile": "Nahrát soubor",
|
|
14574
|
+
"neptune.UploadButton.uploadFiles": "Nahrát soubory",
|
|
14575
|
+
"neptune.UploadInput.deleteModalBody": "Odstraněním tohoto souboru jej smažete z našeho systému.",
|
|
14576
|
+
"neptune.UploadInput.deleteModalCancelButtonText": "Zrušit",
|
|
14577
|
+
"neptune.UploadInput.deleteModalConfirmButtonText": "Odstranit",
|
|
14578
|
+
"neptune.UploadInput.deleteModalTitle": "Jistě chcete odstranit tento soubor?",
|
|
14579
|
+
"neptune.UploadInput.fileIsTooLarge": "Soubor je příliš velký",
|
|
14580
|
+
"neptune.UploadInput.fileTypeNotSupported": "Typ souboru není podporován",
|
|
14581
|
+
"neptune.UploadInput.maximumFilesAlreadyUploaded": "Je nám líto, ale toto nahrání se nezdařilo, protože můžeme přijmout pouze {maxFilesAllowed} souborů najednou.",
|
|
14582
|
+
"neptune.UploadItem.deleting": "Mažeme...",
|
|
14583
|
+
"neptune.UploadItem.removeFile": "Odstranit soubor {filename}",
|
|
14584
|
+
"neptune.UploadItem.uploaded": "Nahráno",
|
|
14585
|
+
"neptune.UploadItem.uploadedFile": "Nahraný soubor",
|
|
14586
|
+
"neptune.UploadItem.uploading": "Nahrávání...",
|
|
14587
|
+
"neptune.UploadItem.uploadingFailed": "Nahrání se nezdařilo"
|
|
14588
|
+
};
|
|
14589
|
+
|
|
14461
14590
|
var de = {
|
|
14591
|
+
"neptune.Button.loadingAriaLabel": "wird geladen",
|
|
14462
14592
|
"neptune.Chips.ariaLabel": "{choice} zurücksetzen",
|
|
14463
14593
|
"neptune.ClearButton.ariaLabel": "Zurücksetzen",
|
|
14464
14594
|
"neptune.CloseButton.ariaLabel": "Schließen",
|
|
14465
14595
|
"neptune.DateInput.day.label": "Tag",
|
|
14466
14596
|
"neptune.DateInput.month.label": "Monat",
|
|
14467
14597
|
"neptune.DateInput.year.label": "Jahr",
|
|
14598
|
+
"neptune.DateLookup.day": "Tag",
|
|
14599
|
+
"neptune.DateLookup.goTo20YearView": "Zur 20-Jahres-Ansicht",
|
|
14600
|
+
"neptune.DateLookup.month": "Monat",
|
|
14601
|
+
"neptune.DateLookup.next": "weiter",
|
|
14602
|
+
"neptune.DateLookup.previous": "zurück",
|
|
14603
|
+
"neptune.DateLookup.selected": "ausgewählt",
|
|
14604
|
+
"neptune.DateLookup.twentyYears": "20 Jahre",
|
|
14605
|
+
"neptune.DateLookup.year": "Jahr",
|
|
14606
|
+
"neptune.FlowNavigation.back": "zurück zum vorherigen Schritt",
|
|
14607
|
+
"neptune.Link.opensInNewTab": "(wird in einem neuen Tab geöffnet)",
|
|
14468
14608
|
"neptune.MoneyInput.Select.placeholder": "Wähle eine der Möglichkeiten aus...",
|
|
14469
|
-
"neptune.Pagination.ariaLabel": "Seitennummer-Navigation",
|
|
14470
|
-
"neptune.PaginationLink.ariaLabel.active": "Weiter zur Seite {pageNumber}",
|
|
14471
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Aktuelle Seite – Seite {pageNumber}",
|
|
14472
14609
|
"neptune.Select.searchPlaceholder": "Wird gesucht...",
|
|
14473
14610
|
"neptune.Summary.statusDone": "Schritt erledigt",
|
|
14474
14611
|
"neptune.Summary.statusNotDone": "Schritt noch zu erledigen",
|
|
@@ -14504,16 +14641,24 @@ var de = {
|
|
|
14504
14641
|
};
|
|
14505
14642
|
|
|
14506
14643
|
var es = {
|
|
14644
|
+
"neptune.Button.loadingAriaLabel": "cargando",
|
|
14507
14645
|
"neptune.Chips.ariaLabel": "Descartar {choice}",
|
|
14508
14646
|
"neptune.ClearButton.ariaLabel": "Borrar",
|
|
14509
14647
|
"neptune.CloseButton.ariaLabel": "Cerrar",
|
|
14510
14648
|
"neptune.DateInput.day.label": "Día",
|
|
14511
14649
|
"neptune.DateInput.month.label": "Mes",
|
|
14512
14650
|
"neptune.DateInput.year.label": "Año",
|
|
14651
|
+
"neptune.DateLookup.day": "día",
|
|
14652
|
+
"neptune.DateLookup.goTo20YearView": "Ir a vista de 20 años",
|
|
14653
|
+
"neptune.DateLookup.month": "mes",
|
|
14654
|
+
"neptune.DateLookup.next": "siguiente",
|
|
14655
|
+
"neptune.DateLookup.previous": "anterior",
|
|
14656
|
+
"neptune.DateLookup.selected": "seleccionado",
|
|
14657
|
+
"neptune.DateLookup.twentyYears": "20 años",
|
|
14658
|
+
"neptune.DateLookup.year": "año",
|
|
14659
|
+
"neptune.FlowNavigation.back": "volver al paso anterior",
|
|
14660
|
+
"neptune.Link.opensInNewTab": "(se abre en una pestaña nueva)",
|
|
14513
14661
|
"neptune.MoneyInput.Select.placeholder": "Selecciona una opción...",
|
|
14514
|
-
"neptune.Pagination.ariaLabel": "Navegación por las páginas",
|
|
14515
|
-
"neptune.PaginationLink.ariaLabel.active": "Ve a la página {pageNumber}",
|
|
14516
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Página actual, página {pageNumber}",
|
|
14517
14662
|
"neptune.Select.searchPlaceholder": "Buscar...",
|
|
14518
14663
|
"neptune.Summary.statusDone": "Apartado listo",
|
|
14519
14664
|
"neptune.Summary.statusNotDone": "Apartado a completar",
|
|
@@ -14549,16 +14694,24 @@ var es = {
|
|
|
14549
14694
|
};
|
|
14550
14695
|
|
|
14551
14696
|
var fr = {
|
|
14697
|
+
"neptune.Button.loadingAriaLabel": "chargement",
|
|
14552
14698
|
"neptune.Chips.ariaLabel": "Effacer {choice}",
|
|
14553
14699
|
"neptune.ClearButton.ariaLabel": "Effacer",
|
|
14554
14700
|
"neptune.CloseButton.ariaLabel": "Fermer",
|
|
14555
14701
|
"neptune.DateInput.day.label": "Jour",
|
|
14556
14702
|
"neptune.DateInput.month.label": "Mois",
|
|
14557
14703
|
"neptune.DateInput.year.label": "Année",
|
|
14704
|
+
"neptune.DateLookup.day": "jour",
|
|
14705
|
+
"neptune.DateLookup.goTo20YearView": "Accéder à la vue sur 20 ans",
|
|
14706
|
+
"neptune.DateLookup.month": "mois",
|
|
14707
|
+
"neptune.DateLookup.next": "suivant",
|
|
14708
|
+
"neptune.DateLookup.previous": "précédent",
|
|
14709
|
+
"neptune.DateLookup.selected": "sélectionnée",
|
|
14710
|
+
"neptune.DateLookup.twentyYears": "20 ans",
|
|
14711
|
+
"neptune.DateLookup.year": "année",
|
|
14712
|
+
"neptune.FlowNavigation.back": "revenir à l'étape précédente",
|
|
14713
|
+
"neptune.Link.opensInNewTab": "(ouvre dans un nouvel onglet)",
|
|
14558
14714
|
"neptune.MoneyInput.Select.placeholder": "Sélectionner une option...",
|
|
14559
|
-
"neptune.Pagination.ariaLabel": "Navigation par pagination",
|
|
14560
|
-
"neptune.PaginationLink.ariaLabel.active": "Aller à la page {pageNumber}",
|
|
14561
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Page actuelle, page {pageNumber}",
|
|
14562
14715
|
"neptune.Select.searchPlaceholder": "Recherche...",
|
|
14563
14716
|
"neptune.Summary.statusDone": "Validé",
|
|
14564
14717
|
"neptune.Summary.statusNotDone": "À compléter",
|
|
@@ -14594,16 +14747,24 @@ var fr = {
|
|
|
14594
14747
|
};
|
|
14595
14748
|
|
|
14596
14749
|
var hu = {
|
|
14750
|
+
"neptune.Button.loadingAriaLabel": "betöltés",
|
|
14597
14751
|
"neptune.Chips.ariaLabel": "{choice} törlése",
|
|
14598
14752
|
"neptune.ClearButton.ariaLabel": "Törlés",
|
|
14599
14753
|
"neptune.CloseButton.ariaLabel": "Bezárás",
|
|
14600
14754
|
"neptune.DateInput.day.label": "Nap",
|
|
14601
14755
|
"neptune.DateInput.month.label": "Hónap",
|
|
14602
14756
|
"neptune.DateInput.year.label": "Év",
|
|
14757
|
+
"neptune.DateLookup.day": "nap",
|
|
14758
|
+
"neptune.DateLookup.goTo20YearView": "Ugrás a 20 éves nézetre",
|
|
14759
|
+
"neptune.DateLookup.month": "hónap",
|
|
14760
|
+
"neptune.DateLookup.next": "következő",
|
|
14761
|
+
"neptune.DateLookup.previous": "előző",
|
|
14762
|
+
"neptune.DateLookup.selected": "kiválasztva",
|
|
14763
|
+
"neptune.DateLookup.twentyYears": "20 év",
|
|
14764
|
+
"neptune.DateLookup.year": "év",
|
|
14765
|
+
"neptune.FlowNavigation.back": "vissza az előző lépéshez",
|
|
14766
|
+
"neptune.Link.opensInNewTab": "(új lapon nyílik meg)",
|
|
14603
14767
|
"neptune.MoneyInput.Select.placeholder": "Válassz ki egy lehetőséget...",
|
|
14604
|
-
"neptune.Pagination.ariaLabel": "Lapszámos navigáció",
|
|
14605
|
-
"neptune.PaginationLink.ariaLabel.active": "Ugrás a(z) {pageNumber}. oldalra",
|
|
14606
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Jelenlegi oldal, {pageNumber}. oldal",
|
|
14607
14768
|
"neptune.Select.searchPlaceholder": "Keresés...",
|
|
14608
14769
|
"neptune.Summary.statusDone": "Kész",
|
|
14609
14770
|
"neptune.Summary.statusNotDone": "Hátravan",
|
|
@@ -14639,16 +14800,24 @@ var hu = {
|
|
|
14639
14800
|
};
|
|
14640
14801
|
|
|
14641
14802
|
var id = {
|
|
14803
|
+
"neptune.Button.loadingAriaLabel": "memuat",
|
|
14642
14804
|
"neptune.Chips.ariaLabel": "Hapus {choice}",
|
|
14643
14805
|
"neptune.ClearButton.ariaLabel": "Hapus",
|
|
14644
14806
|
"neptune.CloseButton.ariaLabel": "Tutup",
|
|
14645
14807
|
"neptune.DateInput.day.label": "Hari",
|
|
14646
14808
|
"neptune.DateInput.month.label": "Bulan",
|
|
14647
14809
|
"neptune.DateInput.year.label": "Tahun",
|
|
14810
|
+
"neptune.DateLookup.day": "hari",
|
|
14811
|
+
"neptune.DateLookup.goTo20YearView": "Lihat tampilan 20 tahun",
|
|
14812
|
+
"neptune.DateLookup.month": "bulan",
|
|
14813
|
+
"neptune.DateLookup.next": "berikutnya",
|
|
14814
|
+
"neptune.DateLookup.previous": "sebelumnya",
|
|
14815
|
+
"neptune.DateLookup.selected": "terpilih",
|
|
14816
|
+
"neptune.DateLookup.twentyYears": "20 tahun",
|
|
14817
|
+
"neptune.DateLookup.year": "tahun",
|
|
14818
|
+
"neptune.FlowNavigation.back": "kembali ke langkah sebelumnya",
|
|
14819
|
+
"neptune.Link.opensInNewTab": "(terbuka di tab baru)",
|
|
14648
14820
|
"neptune.MoneyInput.Select.placeholder": "Pilih opsi...",
|
|
14649
|
-
"neptune.Pagination.ariaLabel": "Halaman navigasi",
|
|
14650
|
-
"neptune.PaginationLink.ariaLabel.active": "Lanjut ke halaman {pageNumber}",
|
|
14651
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Halaman saat ini, halaman {pageNumber}",
|
|
14652
14821
|
"neptune.Select.searchPlaceholder": "Cari...",
|
|
14653
14822
|
"neptune.Summary.statusDone": "Item selesai",
|
|
14654
14823
|
"neptune.Summary.statusNotDone": "Item yang harus dilakukan",
|
|
@@ -14684,16 +14853,24 @@ var id = {
|
|
|
14684
14853
|
};
|
|
14685
14854
|
|
|
14686
14855
|
var it = {
|
|
14856
|
+
"neptune.Button.loadingAriaLabel": "caricamento",
|
|
14687
14857
|
"neptune.Chips.ariaLabel": "Rimuovi {choice}",
|
|
14688
14858
|
"neptune.ClearButton.ariaLabel": "Elimina",
|
|
14689
14859
|
"neptune.CloseButton.ariaLabel": "Chiudi",
|
|
14690
14860
|
"neptune.DateInput.day.label": "Giorno",
|
|
14691
14861
|
"neptune.DateInput.month.label": "Mese",
|
|
14692
14862
|
"neptune.DateInput.year.label": "Anno",
|
|
14863
|
+
"neptune.DateLookup.day": "giorno",
|
|
14864
|
+
"neptune.DateLookup.goTo20YearView": "Vai alla vista su 20 anni",
|
|
14865
|
+
"neptune.DateLookup.month": "mese",
|
|
14866
|
+
"neptune.DateLookup.next": "continua",
|
|
14867
|
+
"neptune.DateLookup.previous": "indietro",
|
|
14868
|
+
"neptune.DateLookup.selected": "selezionata",
|
|
14869
|
+
"neptune.DateLookup.twentyYears": "20 anni",
|
|
14870
|
+
"neptune.DateLookup.year": "anno",
|
|
14871
|
+
"neptune.FlowNavigation.back": "torna al passaggio precedente",
|
|
14872
|
+
"neptune.Link.opensInNewTab": "(si apre in una nuova scheda)",
|
|
14693
14873
|
"neptune.MoneyInput.Select.placeholder": "Seleziona un'opzione...",
|
|
14694
|
-
"neptune.Pagination.ariaLabel": "Navigazione",
|
|
14695
|
-
"neptune.PaginationLink.ariaLabel.active": "Via a pagina {pageNumber}",
|
|
14696
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Pagina corrente, pagina {pageNumber}",
|
|
14697
14874
|
"neptune.Select.searchPlaceholder": "Cerca...",
|
|
14698
14875
|
"neptune.Summary.statusDone": "Completato",
|
|
14699
14876
|
"neptune.Summary.statusNotDone": "Da completare",
|
|
@@ -14729,16 +14906,24 @@ var it = {
|
|
|
14729
14906
|
};
|
|
14730
14907
|
|
|
14731
14908
|
var ja = {
|
|
14909
|
+
"neptune.Button.loadingAriaLabel": "読み込み中…",
|
|
14732
14910
|
"neptune.Chips.ariaLabel": "{choice} をクリア",
|
|
14733
14911
|
"neptune.ClearButton.ariaLabel": "消去",
|
|
14734
14912
|
"neptune.CloseButton.ariaLabel": "閉じる",
|
|
14735
14913
|
"neptune.DateInput.day.label": "日",
|
|
14736
14914
|
"neptune.DateInput.month.label": "月",
|
|
14737
14915
|
"neptune.DateInput.year.label": "年",
|
|
14916
|
+
"neptune.DateLookup.day": "日",
|
|
14917
|
+
"neptune.DateLookup.goTo20YearView": "20年表示に移動する",
|
|
14918
|
+
"neptune.DateLookup.month": "月",
|
|
14919
|
+
"neptune.DateLookup.next": "次",
|
|
14920
|
+
"neptune.DateLookup.previous": "前",
|
|
14921
|
+
"neptune.DateLookup.selected": "選択済み",
|
|
14922
|
+
"neptune.DateLookup.twentyYears": "20年",
|
|
14923
|
+
"neptune.DateLookup.year": "年",
|
|
14924
|
+
"neptune.FlowNavigation.back": "前のステップに戻る",
|
|
14925
|
+
"neptune.Link.opensInNewTab": "(新しいタブで開きます)",
|
|
14738
14926
|
"neptune.MoneyInput.Select.placeholder": "選択してください...",
|
|
14739
|
-
"neptune.Pagination.ariaLabel": "ページネーションナビゲーション",
|
|
14740
|
-
"neptune.PaginationLink.ariaLabel.active": "{pageNumber}のページへ移動します",
|
|
14741
|
-
"neptune.PaginationLink.ariaLabel.inactive": "現在のページ、{pageNumber}ページ",
|
|
14742
14927
|
"neptune.Select.searchPlaceholder": "検索... ",
|
|
14743
14928
|
"neptune.Summary.statusDone": "完了",
|
|
14744
14929
|
"neptune.Summary.statusNotDone": "未対応",
|
|
@@ -14774,16 +14959,24 @@ var ja = {
|
|
|
14774
14959
|
};
|
|
14775
14960
|
|
|
14776
14961
|
var pl = {
|
|
14962
|
+
"neptune.Button.loadingAriaLabel": "ładowanie",
|
|
14777
14963
|
"neptune.Chips.ariaLabel": "Wyczyść {choice}",
|
|
14778
14964
|
"neptune.ClearButton.ariaLabel": "Wyczyść",
|
|
14779
14965
|
"neptune.CloseButton.ariaLabel": "Zamknij",
|
|
14780
14966
|
"neptune.DateInput.day.label": "Dzień",
|
|
14781
14967
|
"neptune.DateInput.month.label": "Miesiąc",
|
|
14782
14968
|
"neptune.DateInput.year.label": "Rok",
|
|
14969
|
+
"neptune.DateLookup.day": "dzień",
|
|
14970
|
+
"neptune.DateLookup.goTo20YearView": "Przejdź do widoku 20-letniego",
|
|
14971
|
+
"neptune.DateLookup.month": "miesiąc",
|
|
14972
|
+
"neptune.DateLookup.next": "następny",
|
|
14973
|
+
"neptune.DateLookup.previous": "poprzedni",
|
|
14974
|
+
"neptune.DateLookup.selected": "wybrano",
|
|
14975
|
+
"neptune.DateLookup.twentyYears": "20 lat",
|
|
14976
|
+
"neptune.DateLookup.year": "rok",
|
|
14977
|
+
"neptune.FlowNavigation.back": "wróć do poprzedniego kroku",
|
|
14978
|
+
"neptune.Link.opensInNewTab": "(otworzy się w nowej zakładce)",
|
|
14783
14979
|
"neptune.MoneyInput.Select.placeholder": "Wybierz opcję...",
|
|
14784
|
-
"neptune.Pagination.ariaLabel": "Nawigacja w paginacji",
|
|
14785
|
-
"neptune.PaginationLink.ariaLabel.active": "Przejdź do strony {pageNumber}",
|
|
14786
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Obecna strona, strona {pageNumber}",
|
|
14787
14980
|
"neptune.Select.searchPlaceholder": "Wyszukaj...",
|
|
14788
14981
|
"neptune.Summary.statusDone": "Czynność wykonana",
|
|
14789
14982
|
"neptune.Summary.statusNotDone": "Czynność do wykonania",
|
|
@@ -14819,16 +15012,24 @@ var pl = {
|
|
|
14819
15012
|
};
|
|
14820
15013
|
|
|
14821
15014
|
var pt = {
|
|
15015
|
+
"neptune.Button.loadingAriaLabel": "carregando",
|
|
14822
15016
|
"neptune.Chips.ariaLabel": "Remover {choice}",
|
|
14823
15017
|
"neptune.ClearButton.ariaLabel": "Remover",
|
|
14824
15018
|
"neptune.CloseButton.ariaLabel": "Fechar",
|
|
14825
15019
|
"neptune.DateInput.day.label": "Dia",
|
|
14826
15020
|
"neptune.DateInput.month.label": "Mês",
|
|
14827
15021
|
"neptune.DateInput.year.label": "Ano",
|
|
15022
|
+
"neptune.DateLookup.day": "dia",
|
|
15023
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
15024
|
+
"neptune.DateLookup.month": "mês",
|
|
15025
|
+
"neptune.DateLookup.next": "próximo",
|
|
15026
|
+
"neptune.DateLookup.previous": "anterior",
|
|
15027
|
+
"neptune.DateLookup.selected": "selecionada",
|
|
15028
|
+
"neptune.DateLookup.twentyYears": "20 anos",
|
|
15029
|
+
"neptune.DateLookup.year": "ano",
|
|
15030
|
+
"neptune.FlowNavigation.back": "back to previous step",
|
|
15031
|
+
"neptune.Link.opensInNewTab": "(abrir a página em uma nova aba)",
|
|
14828
15032
|
"neptune.MoneyInput.Select.placeholder": "Escolha uma opção...",
|
|
14829
|
-
"neptune.Pagination.ariaLabel": "Navegação pelas páginas",
|
|
14830
|
-
"neptune.PaginationLink.ariaLabel.active": "Ir para a página {pageNumber}",
|
|
14831
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Página atual, página {pageNumber}",
|
|
14832
15033
|
"neptune.Select.searchPlaceholder": "Buscar...",
|
|
14833
15034
|
"neptune.Summary.statusDone": "Pronto",
|
|
14834
15035
|
"neptune.Summary.statusNotDone": "Não iniciado",
|
|
@@ -14864,16 +15065,24 @@ var pt = {
|
|
|
14864
15065
|
};
|
|
14865
15066
|
|
|
14866
15067
|
var ro = {
|
|
15068
|
+
"neptune.Button.loadingAriaLabel": "se încarcă",
|
|
14867
15069
|
"neptune.Chips.ariaLabel": "Șterge {choice}",
|
|
14868
15070
|
"neptune.ClearButton.ariaLabel": "Elimină",
|
|
14869
15071
|
"neptune.CloseButton.ariaLabel": "Închide",
|
|
14870
15072
|
"neptune.DateInput.day.label": "Zi",
|
|
14871
15073
|
"neptune.DateInput.month.label": "Lună",
|
|
14872
15074
|
"neptune.DateInput.year.label": "An",
|
|
15075
|
+
"neptune.DateLookup.day": "zi",
|
|
15076
|
+
"neptune.DateLookup.goTo20YearView": "Accesează vizualizarea pe 20 de ani",
|
|
15077
|
+
"neptune.DateLookup.month": "luna",
|
|
15078
|
+
"neptune.DateLookup.next": "înainte",
|
|
15079
|
+
"neptune.DateLookup.previous": "precedenta",
|
|
15080
|
+
"neptune.DateLookup.selected": "selectată",
|
|
15081
|
+
"neptune.DateLookup.twentyYears": "20 de ani",
|
|
15082
|
+
"neptune.DateLookup.year": "anul",
|
|
15083
|
+
"neptune.FlowNavigation.back": "înapoi la pasul anterior",
|
|
15084
|
+
"neptune.Link.opensInNewTab": "(se deschide într-o filă nouă)",
|
|
14873
15085
|
"neptune.MoneyInput.Select.placeholder": "Selectează o opţiune...",
|
|
14874
|
-
"neptune.Pagination.ariaLabel": "Navigare prin pagină",
|
|
14875
|
-
"neptune.PaginationLink.ariaLabel.active": "Du-te la pagina {pageNumber}",
|
|
14876
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Pagina curentă, pagina {pageNumber}",
|
|
14877
15086
|
"neptune.Select.searchPlaceholder": "Caută...",
|
|
14878
15087
|
"neptune.Summary.statusDone": "Finalizat",
|
|
14879
15088
|
"neptune.Summary.statusNotDone": "De făcut",
|
|
@@ -14909,16 +15118,24 @@ var ro = {
|
|
|
14909
15118
|
};
|
|
14910
15119
|
|
|
14911
15120
|
var ru = {
|
|
15121
|
+
"neptune.Button.loadingAriaLabel": "загрузка",
|
|
14912
15122
|
"neptune.Chips.ariaLabel": "Очистить {choice}",
|
|
14913
15123
|
"neptune.ClearButton.ariaLabel": "Очистить",
|
|
14914
15124
|
"neptune.CloseButton.ariaLabel": "Закрыть",
|
|
14915
15125
|
"neptune.DateInput.day.label": "День",
|
|
14916
15126
|
"neptune.DateInput.month.label": "Месяц",
|
|
14917
15127
|
"neptune.DateInput.year.label": "Год",
|
|
15128
|
+
"neptune.DateLookup.day": "день",
|
|
15129
|
+
"neptune.DateLookup.goTo20YearView": "Перейти к обзору 20 лет",
|
|
15130
|
+
"neptune.DateLookup.month": "месяц",
|
|
15131
|
+
"neptune.DateLookup.next": "далее",
|
|
15132
|
+
"neptune.DateLookup.previous": "предыдущий",
|
|
15133
|
+
"neptune.DateLookup.selected": "выбрано",
|
|
15134
|
+
"neptune.DateLookup.twentyYears": "20 лет",
|
|
15135
|
+
"neptune.DateLookup.year": "год",
|
|
15136
|
+
"neptune.FlowNavigation.back": "вернуться к предыдущему шагу",
|
|
15137
|
+
"neptune.Link.opensInNewTab": "(откроется в новой вкладке)",
|
|
14918
15138
|
"neptune.MoneyInput.Select.placeholder": "Выберите вариант...",
|
|
14919
|
-
"neptune.Pagination.ariaLabel": "Постраничная навигация",
|
|
14920
|
-
"neptune.PaginationLink.ariaLabel.active": "Перейти на страницу {pageNumber}",
|
|
14921
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Текущая страница, страница {pageNumber}",
|
|
14922
15139
|
"neptune.Select.searchPlaceholder": "Поиск...",
|
|
14923
15140
|
"neptune.Summary.statusDone": "Этап завершен",
|
|
14924
15141
|
"neptune.Summary.statusNotDone": "Этап к выполнению",
|
|
@@ -14954,16 +15171,24 @@ var ru = {
|
|
|
14954
15171
|
};
|
|
14955
15172
|
|
|
14956
15173
|
var th = {
|
|
15174
|
+
"neptune.Button.loadingAriaLabel": "กำลังโหลด",
|
|
14957
15175
|
"neptune.Chips.ariaLabel": "เคลียร์ {choice}",
|
|
14958
15176
|
"neptune.ClearButton.ariaLabel": "ชัดเจน",
|
|
14959
15177
|
"neptune.CloseButton.ariaLabel": "ปิด",
|
|
14960
15178
|
"neptune.DateInput.day.label": "วัน",
|
|
14961
15179
|
"neptune.DateInput.month.label": "เดือน",
|
|
14962
15180
|
"neptune.DateInput.year.label": "ปี",
|
|
15181
|
+
"neptune.DateLookup.day": "วัน",
|
|
15182
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
15183
|
+
"neptune.DateLookup.month": "เดือน",
|
|
15184
|
+
"neptune.DateLookup.next": "ถัดไป",
|
|
15185
|
+
"neptune.DateLookup.previous": "ก่อนหน้า",
|
|
15186
|
+
"neptune.DateLookup.selected": "เลือกแล้ว",
|
|
15187
|
+
"neptune.DateLookup.twentyYears": "20 ปี",
|
|
15188
|
+
"neptune.DateLookup.year": "ปี",
|
|
15189
|
+
"neptune.FlowNavigation.back": "back to previous step",
|
|
15190
|
+
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
14963
15191
|
"neptune.MoneyInput.Select.placeholder": "เลือกตัวเลือก...",
|
|
14964
|
-
"neptune.Pagination.ariaLabel": "การนำทางเลขหน้า",
|
|
14965
|
-
"neptune.PaginationLink.ariaLabel.active": "ไปที่หน้า {pageNumber}",
|
|
14966
|
-
"neptune.PaginationLink.ariaLabel.inactive": "หน้าปัจจุบัน หน้า {pageNumber}",
|
|
14967
15192
|
"neptune.Select.searchPlaceholder": "ค้นหา...",
|
|
14968
15193
|
"neptune.Summary.statusDone": "รายการที่ทำแล้ว",
|
|
14969
15194
|
"neptune.Summary.statusNotDone": "รายการที่ต้องทำ",
|
|
@@ -14999,16 +15224,24 @@ var th = {
|
|
|
14999
15224
|
};
|
|
15000
15225
|
|
|
15001
15226
|
var tr = {
|
|
15227
|
+
"neptune.Button.loadingAriaLabel": "yükleniyor",
|
|
15002
15228
|
"neptune.Chips.ariaLabel": "{choice} temizle",
|
|
15003
15229
|
"neptune.ClearButton.ariaLabel": "Sil",
|
|
15004
15230
|
"neptune.CloseButton.ariaLabel": "Kapat",
|
|
15005
15231
|
"neptune.DateInput.day.label": "Gün",
|
|
15006
15232
|
"neptune.DateInput.month.label": "Ay",
|
|
15007
15233
|
"neptune.DateInput.year.label": "Yıl",
|
|
15234
|
+
"neptune.DateLookup.day": "gün",
|
|
15235
|
+
"neptune.DateLookup.goTo20YearView": "20 yıl görünümüne git",
|
|
15236
|
+
"neptune.DateLookup.month": "ay",
|
|
15237
|
+
"neptune.DateLookup.next": "devam et",
|
|
15238
|
+
"neptune.DateLookup.previous": "önceki",
|
|
15239
|
+
"neptune.DateLookup.selected": "seçili",
|
|
15240
|
+
"neptune.DateLookup.twentyYears": "20 yıl",
|
|
15241
|
+
"neptune.DateLookup.year": "yıl",
|
|
15242
|
+
"neptune.FlowNavigation.back": "önceki adıma dön",
|
|
15243
|
+
"neptune.Link.opensInNewTab": "(yeni sekmede açılır)",
|
|
15008
15244
|
"neptune.MoneyInput.Select.placeholder": "Bir seçenek seçin...",
|
|
15009
|
-
"neptune.Pagination.ariaLabel": "Sayfalandırma gezintisi",
|
|
15010
|
-
"neptune.PaginationLink.ariaLabel.active": "{pageNumber} numaralı sayfaya git",
|
|
15011
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Mevcut sayfa, sayfa {pageNumber}",
|
|
15012
15245
|
"neptune.Select.searchPlaceholder": "Ara...",
|
|
15013
15246
|
"neptune.Summary.statusDone": "Tamamlanan aşama",
|
|
15014
15247
|
"neptune.Summary.statusNotDone": "Yapılacak",
|
|
@@ -15044,16 +15277,24 @@ var tr = {
|
|
|
15044
15277
|
};
|
|
15045
15278
|
|
|
15046
15279
|
var uk = {
|
|
15280
|
+
"neptune.Button.loadingAriaLabel": "завантаження",
|
|
15047
15281
|
"neptune.Chips.ariaLabel": "Очистити {choice}",
|
|
15048
15282
|
"neptune.ClearButton.ariaLabel": "Очистити",
|
|
15049
15283
|
"neptune.CloseButton.ariaLabel": "Закрити",
|
|
15050
15284
|
"neptune.DateInput.day.label": "День",
|
|
15051
15285
|
"neptune.DateInput.month.label": "Місяць",
|
|
15052
15286
|
"neptune.DateInput.year.label": "Рік",
|
|
15287
|
+
"neptune.DateLookup.day": "дня",
|
|
15288
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
15289
|
+
"neptune.DateLookup.month": "місяць",
|
|
15290
|
+
"neptune.DateLookup.next": "уперед",
|
|
15291
|
+
"neptune.DateLookup.previous": "назад",
|
|
15292
|
+
"neptune.DateLookup.selected": "вибрано",
|
|
15293
|
+
"neptune.DateLookup.twentyYears": "20 років",
|
|
15294
|
+
"neptune.DateLookup.year": "рік",
|
|
15295
|
+
"neptune.FlowNavigation.back": "back to previous step",
|
|
15296
|
+
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
15053
15297
|
"neptune.MoneyInput.Select.placeholder": "Виберіть варіант…",
|
|
15054
|
-
"neptune.Pagination.ariaLabel": "Перехід за сторінками",
|
|
15055
|
-
"neptune.PaginationLink.ariaLabel.active": "Перейти на сторінку {pageNumber}",
|
|
15056
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Ця сторінка, сторінка {pageNumber}",
|
|
15057
15298
|
"neptune.Select.searchPlaceholder": "Пошук…",
|
|
15058
15299
|
"neptune.Summary.statusDone": "Виконано",
|
|
15059
15300
|
"neptune.Summary.statusNotDone": "Не виконано",
|
|
@@ -15088,17 +15329,78 @@ var uk = {
|
|
|
15088
15329
|
"neptune.UploadItem.uploadingFailed": "Не вдалося завантажити"
|
|
15089
15330
|
};
|
|
15090
15331
|
|
|
15091
|
-
var
|
|
15332
|
+
var zhCN = {
|
|
15333
|
+
"neptune.Button.loadingAriaLabel": "正在加载",
|
|
15334
|
+
"neptune.Chips.ariaLabel": "清除 {choice}",
|
|
15335
|
+
"neptune.ClearButton.ariaLabel": "清晰",
|
|
15336
|
+
"neptune.CloseButton.ariaLabel": "关闭",
|
|
15337
|
+
"neptune.DateInput.day.label": "日",
|
|
15338
|
+
"neptune.DateInput.month.label": "月",
|
|
15339
|
+
"neptune.DateInput.year.label": "年",
|
|
15340
|
+
"neptune.DateLookup.day": "日",
|
|
15341
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
15342
|
+
"neptune.DateLookup.month": "月",
|
|
15343
|
+
"neptune.DateLookup.next": "下一页",
|
|
15344
|
+
"neptune.DateLookup.previous": "上一页",
|
|
15345
|
+
"neptune.DateLookup.selected": "已选",
|
|
15346
|
+
"neptune.DateLookup.twentyYears": "20年",
|
|
15347
|
+
"neptune.DateLookup.year": "年",
|
|
15348
|
+
"neptune.FlowNavigation.back": "back to previous step",
|
|
15349
|
+
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
15350
|
+
"neptune.MoneyInput.Select.placeholder": "请选择...",
|
|
15351
|
+
"neptune.Select.searchPlaceholder": "搜索",
|
|
15352
|
+
"neptune.Summary.statusDone": "已完成",
|
|
15353
|
+
"neptune.Summary.statusNotDone": "未完成",
|
|
15354
|
+
"neptune.Summary.statusPending": "待处理",
|
|
15355
|
+
"neptune.Upload.csButtonText": "上传另一个文件?",
|
|
15356
|
+
"neptune.Upload.csFailureText": "上传失败。请重试",
|
|
15357
|
+
"neptune.Upload.csSuccessText": "上传完毕!",
|
|
15358
|
+
"neptune.Upload.csTooLargeMessage": "请提供小于 5MB 的文件",
|
|
15359
|
+
"neptune.Upload.csWrongTypeMessage": "不支持该文件类型,请试试其他文件",
|
|
15360
|
+
"neptune.Upload.psButtonText": "取消",
|
|
15361
|
+
"neptune.Upload.psProcessingText": "正在上传…",
|
|
15362
|
+
"neptune.Upload.usButtonText": "或选择文件",
|
|
15363
|
+
"neptune.Upload.usDropMessage": "拖放文件开始上传",
|
|
15364
|
+
"neptune.Upload.usPlaceholder": "拖放小于 5MB 的文件",
|
|
15365
|
+
"neptune.UploadButton.allFileTypes": "所有文件类型",
|
|
15366
|
+
"neptune.UploadButton.dropFiles": "拖放文件开始上传",
|
|
15367
|
+
"neptune.UploadButton.instructions": "{fileTypes},小于 {size}MB",
|
|
15368
|
+
"neptune.UploadButton.uploadFile": "上传文件",
|
|
15369
|
+
"neptune.UploadButton.uploadFiles": "上传文件",
|
|
15370
|
+
"neptune.UploadInput.deleteModalBody": "删除此文件会将其从我们的系统中删除",
|
|
15371
|
+
"neptune.UploadInput.deleteModalCancelButtonText": "取消",
|
|
15372
|
+
"neptune.UploadInput.deleteModalConfirmButtonText": "删除",
|
|
15373
|
+
"neptune.UploadInput.deleteModalTitle": "确定要删除此文件吗?",
|
|
15374
|
+
"neptune.UploadInput.fileIsTooLarge": "文件太大",
|
|
15375
|
+
"neptune.UploadInput.fileTypeNotSupported": "文件类型不受支持",
|
|
15376
|
+
"neptune.UploadInput.maximumFilesAlreadyUploaded": "抱歉,此上传失败,因为我们一次只能接受 {maxFilesAllowed} 个文件。",
|
|
15377
|
+
"neptune.UploadItem.deleting": "正在删除…",
|
|
15378
|
+
"neptune.UploadItem.removeFile": "删除文件 {filename}",
|
|
15379
|
+
"neptune.UploadItem.uploaded": "已上传",
|
|
15380
|
+
"neptune.UploadItem.uploadedFile": "上传的文件",
|
|
15381
|
+
"neptune.UploadItem.uploading": "正在上传…",
|
|
15382
|
+
"neptune.UploadItem.uploadingFailed": "上传失败"
|
|
15383
|
+
};
|
|
15384
|
+
|
|
15385
|
+
var zhHK = {
|
|
15386
|
+
"neptune.Button.loadingAriaLabel": "載入中",
|
|
15092
15387
|
"neptune.Chips.ariaLabel": "清除{choice}",
|
|
15093
15388
|
"neptune.ClearButton.ariaLabel": "清除",
|
|
15094
15389
|
"neptune.CloseButton.ariaLabel": "關閉",
|
|
15095
15390
|
"neptune.DateInput.day.label": "日",
|
|
15096
15391
|
"neptune.DateInput.month.label": "月",
|
|
15097
15392
|
"neptune.DateInput.year.label": "年",
|
|
15393
|
+
"neptune.DateLookup.day": "日",
|
|
15394
|
+
"neptune.DateLookup.goTo20YearView": "切換至20年視圖",
|
|
15395
|
+
"neptune.DateLookup.month": "月",
|
|
15396
|
+
"neptune.DateLookup.next": "下一個",
|
|
15397
|
+
"neptune.DateLookup.previous": "上一個",
|
|
15398
|
+
"neptune.DateLookup.selected": "已選",
|
|
15399
|
+
"neptune.DateLookup.twentyYears": "20年",
|
|
15400
|
+
"neptune.DateLookup.year": "年",
|
|
15401
|
+
"neptune.FlowNavigation.back": "返回上一個步驟",
|
|
15402
|
+
"neptune.Link.opensInNewTab": "(在新分頁中開啟)",
|
|
15098
15403
|
"neptune.MoneyInput.Select.placeholder": "選擇一個選項…",
|
|
15099
|
-
"neptune.Pagination.ariaLabel": "分頁導航",
|
|
15100
|
-
"neptune.PaginationLink.ariaLabel.active": "前往第{pageNumber}頁",
|
|
15101
|
-
"neptune.PaginationLink.ariaLabel.inactive": "目前在第{pageNumber}頁",
|
|
15102
15404
|
"neptune.Select.searchPlaceholder": "搜尋…",
|
|
15103
15405
|
"neptune.Summary.statusDone": "已完成事項",
|
|
15104
15406
|
"neptune.Summary.statusNotDone": "未完成事項",
|
|
@@ -15134,6 +15436,7 @@ var zh = {
|
|
|
15134
15436
|
};
|
|
15135
15437
|
|
|
15136
15438
|
const translations = {
|
|
15439
|
+
cs,
|
|
15137
15440
|
de,
|
|
15138
15441
|
en,
|
|
15139
15442
|
es,
|
|
@@ -15149,7 +15452,8 @@ const translations = {
|
|
|
15149
15452
|
th,
|
|
15150
15453
|
tr,
|
|
15151
15454
|
uk,
|
|
15152
|
-
zh
|
|
15455
|
+
'zh-CN': zhCN,
|
|
15456
|
+
'zh-HK': zhHK
|
|
15153
15457
|
};
|
|
15154
15458
|
|
|
15155
15459
|
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 };
|