@pega/cosmos-react-core 5.0.0-dev.13.1 → 5.0.0-dev.15.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.
@@ -2,7 +2,7 @@ import type { FunctionComponent } from 'react';
2
2
  import type { ForwardProps } from '../../types';
3
3
  import type { LightboxProps } from './Lightbox.types';
4
4
  declare const _default: FunctionComponent<LightboxProps & ForwardProps> & {
5
- getTestIds: (testIdProp?: string | undefined) => import("../../types").TestIdsRecord<readonly ["content", "name", "metadata", "download", "close", "prev", "next", "pagination"]>;
5
+ getTestIds: (testIdProp?: string | undefined) => import("../../types").TestIdsRecord<readonly ["content", "name", "metadata", "download", "close", "prev", "next", "pagination", "non-previewable-download", "link"]>;
6
6
  };
7
7
  export default _default;
8
8
  //# sourceMappingURL=Lightbox.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Lightbox.d.ts","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAoD,MAAM,OAAO,CAAC;AAGjG,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AA+BhD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;;;;AAsPtD,wBAAyD"}
1
+ {"version":3,"file":"Lightbox.d.ts","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,iBAAiB,EAMlB,MAAM,OAAO,CAAC;AAGf,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAsChD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;;;;AAmVtD,wBAAyD"}
@@ -1,17 +1,23 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { useEffect, useRef, useState, forwardRef } from 'react';
1
+ import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useEffect, useRef, useState, forwardRef, useCallback } from 'react';
3
3
  import { createPortal } from 'react-dom';
4
4
  import { cap, withTestIds } from '../../utils';
5
5
  import Flex from '../Flex';
6
6
  import MetaList from '../MetaList';
7
7
  import Icon from '../Icon';
8
+ import Image from '../Image';
8
9
  import Text from '../Text';
9
10
  import { useConfiguration, useConsolidatedRef, useDirection, useEvent, useFocusTrap, useI18n, useScrollToggle, useTestIds } from '../../hooks';
10
11
  import ErrorState from '../ErrorState';
11
12
  import Progress from '../Progress';
12
- import { StyledHeader, StyledCountTracker, StyledInfo, StyledActionButton, StyledPreviewRegion, StyledNavButton, StyledImageContainer, StyledImage, StyledLiveRegion, StyledLightbox } from './Lightbox.styles';
13
+ import FileVisual from '../File/FileVisual';
14
+ import Button from '../Button';
15
+ import Link from '../Link/Link';
16
+ import mimeTypes from '../File/mimeTypes.json';
17
+ import { getKindFromMimeType } from '../File/utils';
18
+ import { StyledHeader, StyledCountTracker, StyledInfo, StyledPreviewRegion, StyledNavButton, StyledMediaContainer, StyledLiveRegion, StyledLightbox, StyledContainer, StyledObject } from './Lightbox.styles';
13
19
  import { getLightboxTestIds } from './Lightbox.test-ids';
14
- const Lightbox = forwardRef(function Lightbox({ testId, items, defaultIndex = 0, cycle, onItemLoad, onItemError, onNavigate, onItemDownload, onAfterClose, ...restProps }, refArg) {
20
+ const Lightbox = forwardRef(function Lightbox({ testId, items, defaultIndex = 0, cycle = false, onItemLoad, onItemError, onNavigate, onItemDownload, onAfterClose, ...restProps }, refArg) {
15
21
  const t = useI18n();
16
22
  const { start, end } = useDirection();
17
23
  const { portalTarget } = useConfiguration();
@@ -24,8 +30,7 @@ const Lightbox = forwardRef(function Lightbox({ testId, items, defaultIndex = 0,
24
30
  const prevButtonRef = useRef(null);
25
31
  const nextButtonRef = useRef(null);
26
32
  const [open, setOpen] = useState(true);
27
- const imageRef = useConsolidatedRef(currentItem.ref);
28
- const [error, setError] = useState(false);
33
+ const mediaRef = useConsolidatedRef(currentItem.ref);
29
34
  const [liveText, setLiveText] = useState('');
30
35
  const countTrackerText = items.length > 1 ? t('x_of_y', [currentIndex + 1, items.length]) : '';
31
36
  const testIds = useTestIds(testId, getLightboxTestIds);
@@ -36,20 +41,16 @@ const Lightbox = forwardRef(function Lightbox({ testId, items, defaultIndex = 0,
36
41
  if (direction === 1) {
37
42
  if (currentIndex < items.length - 1) {
38
43
  setCurrentIndex(cur => cur + 1);
39
- setError(false);
40
44
  }
41
45
  else if (cycle) {
42
46
  setCurrentIndex(0);
43
- setError(false);
44
47
  }
45
48
  }
46
49
  else if (currentIndex > 0) {
47
50
  setCurrentIndex(cur => cur - 1);
48
- setError(false);
49
51
  }
50
52
  else if (cycle) {
51
53
  setCurrentIndex(items.length - 1);
52
- setError(false);
53
54
  }
54
55
  };
55
56
  const keyDownHandler = (e) => {
@@ -76,6 +77,58 @@ const Lightbox = forwardRef(function Lightbox({ testId, items, defaultIndex = 0,
76
77
  useEffect(() => {
77
78
  lightboxRef.current?.focus();
78
79
  }, []);
80
+ const handleLoad = useCallback((e) => {
81
+ onItemLoad?.(currentItem.id, e);
82
+ }, [onItemLoad, currentItem.id]);
83
+ const handleError = useCallback((e) => {
84
+ onItemError?.(currentItem.id, e);
85
+ }, [onItemError, currentItem.id]);
86
+ // Object elements appear to need native event handlers bound as JSX does not work.
87
+ // TODO: Follow up on reason why.
88
+ useEffect(() => {
89
+ if (!mediaRef.current || currentItem.format !== 'pdf')
90
+ return;
91
+ const pdfObject = mediaRef.current;
92
+ pdfObject.addEventListener('load', handleLoad);
93
+ pdfObject.addEventListener('error', handleError);
94
+ return () => {
95
+ pdfObject.removeEventListener('load', handleLoad);
96
+ pdfObject.removeEventListener('error', handleError);
97
+ };
98
+ }, [currentItem]);
99
+ let media;
100
+ let validContent;
101
+ let attachmentType = 'generic';
102
+ if (currentItem.format === undefined || currentItem.error) {
103
+ validContent = false;
104
+ }
105
+ else {
106
+ const extractMimeType = mimeTypes[currentItem.format.toLowerCase()];
107
+ const getType = currentItem.format === 'url' ? 'link' : 'generic';
108
+ attachmentType = extractMimeType ? getKindFromMimeType(extractMimeType) : getType;
109
+ const previewableAttachmentTypes = ['pdf', 'image', 'link'];
110
+ validContent = previewableAttachmentTypes.includes(attachmentType)
111
+ ? currentItem.src
112
+ : attachmentType;
113
+ }
114
+ if (validContent) {
115
+ const nonPreviewableContent = (_jsxs(_Fragment, { children: [_jsx(Text, { children: t('non_previewable', [currentItem.format ? currentItem.format.toUpperCase() : '']) }), onItemDownload && (_jsx(Button, { "aria-label": t('download'), onClick: () => onItemDownload(currentItem.id), "data-testid": testIds.nonPreviewableDownload, children: t('download') }))] }));
116
+ const defaultContent = (_jsxs(Flex, { container: { direction: 'column', gap: 2, alignItems: 'center' }, as: StyledInfo, "data-testid": testIds.content, children: [_jsx(FileVisual, { type: attachmentType, size: 'l' }), attachmentType === 'link' && currentItem.src ? (_jsx(Link, { href: currentItem.src, "data-testid": testIds.link, children: currentItem.name })) : (nonPreviewableContent)] }));
117
+ switch (attachmentType) {
118
+ case 'image':
119
+ media = currentItem.src && (_jsx(Image, { "data-testid": testIds.content, src: currentItem.src, alt: currentItem.description, onLoad: handleLoad, onError: handleError, ref: mediaRef }));
120
+ break;
121
+ case 'pdf':
122
+ media = currentItem.src && (_jsx(_Fragment, { children: navigator.pdfViewerEnabled ? (_jsx(StyledObject, { "data-testid": testIds.content, data: currentItem.src, type: 'application/pdf', ref: mediaRef, children: currentItem.description })) : ({ defaultContent }) }));
123
+ break;
124
+ default: {
125
+ media = defaultContent;
126
+ }
127
+ }
128
+ }
129
+ else {
130
+ media = _jsx(Progress, { placement: 'block', delay: true });
131
+ }
79
132
  const content = (_jsxs(StyledLightbox, { "data-testid": testIds.root, ...restProps, tabIndex: -1, ref: lightboxRef, open: open, role: 'dialog', "aria-modal": 'true', container: { alignItems: 'start', justify: 'start', direction: 'column' }, alpha: 0.9, variant: 'dark', transitionSpeed: 'slow', onBeforeTransitionIn: disableScroll, onAfterTransitionOut: () => {
80
133
  enableScroll();
81
134
  onAfterClose?.();
@@ -94,20 +147,14 @@ const Lightbox = forwardRef(function Lightbox({ testId, items, defaultIndex = 0,
94
147
  justify: 'center',
95
148
  colGap: 2,
96
149
  rowGap: 0.5
97
- }, children: [_jsx(Text, { "data-testid": testIds.name, variant: 'primary', as: 'h2', children: currentItem.name }), currentItem.metadata && (_jsx(MetaList, { "data-testid": testIds.metadata, items: currentItem.metadata }))] }), _jsxs(Flex, { container: true, children: [onItemDownload && (_jsx(StyledActionButton, { "data-testid": testIds.download, variant: 'simple', "aria-label": t('download'), icon: true, onClick: () => onItemDownload(currentItem.id), children: _jsx(Icon, { name: 'download' }) })), _jsx(StyledActionButton, { "data-testid": testIds.close, variant: 'simple', ref: closeButtonRef, "aria-label": t('close'), icon: true, onClick: close, children: _jsx(Icon, { name: 'times' }) })] })] }), _jsxs(Flex, { container: { justify: 'between' }, as: StyledPreviewRegion, item: { grow: 1, shrink: 0 }, children: [items.length > 1 && (_jsx(StyledNavButton, { "data-testid": testIds.prev, ref: prevButtonRef, variant: 'simple', "aria-label": t('pagination_prev'), hidden: !cycle && currentIndex === 0, icon: true, onClick: () => {
150
+ }, children: [_jsx(Text, { "data-testid": testIds.name, variant: 'primary', as: 'h2', children: currentItem.name }), currentItem.metadata && (_jsx(MetaList, { "data-testid": testIds.metadata, items: currentItem.metadata }))] }), _jsxs(Flex, { container: true, as: StyledContainer, children: [attachmentType !== 'link' && onItemDownload && (_jsx(Button, { "data-testid": testIds.download, variant: 'simple', "aria-label": t('download'), icon: true, onClick: () => onItemDownload(currentItem.id), children: _jsx(Icon, { name: 'download' }) })), _jsx(Button, { "data-testid": testIds.close, variant: 'simple', ref: closeButtonRef, "aria-label": t('close'), icon: true, onClick: close, children: _jsx(Icon, { name: 'times' }) })] })] }), _jsxs(Flex, { container: { justify: 'between' }, as: StyledPreviewRegion, item: { grow: 1, shrink: 0 }, children: [items.length > 1 && (_jsx(StyledNavButton, { "data-testid": testIds.prev, ref: prevButtonRef, variant: 'simple', "aria-label": t('pagination_prev'), hidden: !cycle && currentIndex === 0, icon: true, onClick: () => {
98
151
  navigate(-1);
99
- }, children: _jsx("span", { children: _jsx(Icon, { name: 'caret-left' }) }) })), _jsx(Flex, { item: { grow: 1 }, as: StyledImageContainer, children: _jsxs(Flex, { container: { alignItems: 'center' }, onMouseDown: (e) => {
152
+ }, children: _jsx("span", { children: _jsx(Icon, { name: 'caret-left' }) }) })), _jsx(Flex, { item: { grow: 1 }, as: StyledMediaContainer, children: _jsx(Flex, { container: { alignItems: 'center', justify: 'center' }, onMouseDown: (e) => {
100
153
  if (e.button !== 0)
101
154
  return;
102
155
  if (e.target === e.currentTarget)
103
156
  close();
104
- }, children: [error && _jsx(ErrorState, { message: t('image_load_error') }), !error &&
105
- (currentItem.src ? (_jsx(StyledImage, { "data-testid": testIds.content, ref: imageRef, src: currentItem.src, alt: currentItem.description, onLoad: (e) => {
106
- onItemLoad?.(currentItem.id, e);
107
- }, onError: (e) => {
108
- onItemError?.(currentItem.id, e);
109
- setError(true);
110
- } })) : (_jsx(Progress, { placement: 'block', delay: true })))] }) }), items.length > 1 && (_jsx(StyledNavButton, { "data-testid": testIds.next, ref: nextButtonRef, variant: 'simple', "aria-label": t('pagination_next'), hidden: !cycle && currentIndex === items.length - 1, icon: true, onClick: () => {
157
+ }, children: currentItem.error ? _jsx(ErrorState, { message: t('content_load_error') }) : media }) }), items.length > 1 && (_jsx(StyledNavButton, { "data-testid": testIds.next, ref: nextButtonRef, variant: 'simple', "aria-label": t('pagination_next'), hidden: !cycle && currentIndex === items.length - 1, icon: true, onClick: () => {
111
158
  navigate(1);
112
159
  }, children: _jsx("span", { children: _jsx(Icon, { name: 'caret-right' }) }) }))] }), _jsx(StyledLiveRegion, { "aria-live": 'polite', "aria-label": liveText })] }));
113
160
  return portalTarget ? createPortal(content, portalTarget) : content;
@@ -1 +1 @@
1
- {"version":3,"file":"Lightbox.js","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.tsx"],"names":[],"mappings":"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","sourcesContent":["import { useEffect, useRef, useState, forwardRef } from 'react';\nimport type { FunctionComponent, PropsWithoutRef, Ref, MouseEvent, SyntheticEvent } from 'react';\nimport { createPortal } from 'react-dom';\n\nimport type { ForwardProps } from '../../types';\nimport { cap, withTestIds } from '../../utils';\nimport Flex from '../Flex';\nimport MetaList from '../MetaList';\nimport Icon from '../Icon';\nimport Text from '../Text';\nimport {\n useConfiguration,\n useConsolidatedRef,\n useDirection,\n useEvent,\n useFocusTrap,\n useI18n,\n useScrollToggle,\n useTestIds\n} from '../../hooks';\nimport ErrorState from '../ErrorState';\nimport Progress from '../Progress';\n\nimport {\n StyledHeader,\n StyledCountTracker,\n StyledInfo,\n StyledActionButton,\n StyledPreviewRegion,\n StyledNavButton,\n StyledImageContainer,\n StyledImage,\n StyledLiveRegion,\n StyledLightbox\n} from './Lightbox.styles';\nimport type { LightboxProps } from './Lightbox.types';\nimport { getLightboxTestIds } from './Lightbox.test-ids';\n\nconst Lightbox: FunctionComponent<LightboxProps & ForwardProps> = forwardRef(function Lightbox(\n {\n testId,\n items,\n defaultIndex = 0,\n cycle,\n onItemLoad,\n onItemError,\n onNavigate,\n onItemDownload,\n onAfterClose,\n ...restProps\n }: PropsWithoutRef<LightboxProps>,\n refArg: Ref<HTMLDivElement>\n) {\n const t = useI18n();\n const { start, end } = useDirection();\n const { portalTarget } = useConfiguration();\n const [currentIndex, setCurrentIndex] = useState(defaultIndex);\n const currentItem = items[currentIndex];\n const { disableScroll, enableScroll } = useScrollToggle();\n const lightboxRef = useConsolidatedRef(refArg);\n const headerRef = useRef<HTMLDivElement>(null);\n const closeButtonRef = useRef<HTMLButtonElement>(null);\n const prevButtonRef = useRef<HTMLButtonElement>(null);\n const nextButtonRef = useRef<HTMLButtonElement>(null);\n const [open, setOpen] = useState(true);\n const imageRef = useConsolidatedRef(currentItem.ref);\n const [error, setError] = useState(false);\n const [liveText, setLiveText] = useState('');\n const countTrackerText = items.length > 1 ? t('x_of_y', [currentIndex + 1, items.length]) : '';\n const testIds = useTestIds(testId, getLightboxTestIds);\n\n const close = () => {\n setOpen(false);\n };\n\n const navigate = (direction: 1 | -1) => {\n if (direction === 1) {\n if (currentIndex < items.length - 1) {\n setCurrentIndex(cur => cur + 1);\n setError(false);\n } else if (cycle) {\n setCurrentIndex(0);\n setError(false);\n }\n } else if (currentIndex > 0) {\n setCurrentIndex(cur => cur - 1);\n setError(false);\n } else if (cycle) {\n setCurrentIndex(items.length - 1);\n setError(false);\n }\n };\n const keyDownHandler = (e: KeyboardEvent) => {\n if (e.repeat) return;\n\n if (e.key === 'Escape') {\n close();\n } else if (e.key === `Arrow${cap(end)}`) {\n navigate(1);\n } else if (e.key === `Arrow${cap(start)}`) {\n navigate(-1);\n }\n };\n\n useEvent('keydown', keyDownHandler);\n useFocusTrap(lightboxRef);\n\n useEffect(() => {\n setLiveText(\n `${currentItem.name}. ${countTrackerText ? `${countTrackerText}.` : ''} ${\n currentItem.description\n }.`\n );\n }, [currentItem.name, countTrackerText, currentItem.description]);\n\n useEffect(() => {\n onNavigate?.(currentItem.id, currentIndex);\n }, [currentIndex]);\n\n useEffect(() => {\n lightboxRef.current?.focus();\n }, []);\n\n const content = (\n <StyledLightbox\n data-testid={testIds.root}\n {...restProps}\n tabIndex={-1}\n ref={lightboxRef}\n open={open}\n role='dialog'\n aria-modal='true'\n container={{ alignItems: 'start', justify: 'start', direction: 'column' }}\n alpha={0.9}\n variant='dark'\n transitionSpeed='slow'\n onBeforeTransitionIn={disableScroll}\n onAfterTransitionOut={() => {\n enableScroll();\n onAfterClose?.();\n }}\n >\n <Flex\n as={StyledHeader}\n ref={headerRef}\n container={{\n justify: 'between',\n alignItems: 'center',\n gap: 2\n }}\n onMouseDown={(e: MouseEvent<HTMLDivElement>) => {\n if (e.button !== 0) return;\n if (e.target === e.currentTarget) close();\n }}\n >\n <StyledCountTracker data-testid={testIds.pagination} aria-hidden='true'>\n {countTrackerText}\n </StyledCountTracker>\n\n <Flex\n as={StyledInfo}\n container={{\n wrap: 'wrap',\n alignItems: 'center',\n justify: 'center',\n colGap: 2,\n rowGap: 0.5\n }}\n >\n <Text data-testid={testIds.name} variant='primary' as='h2'>\n {currentItem.name}\n </Text>\n {currentItem.metadata && (\n <MetaList data-testid={testIds.metadata} items={currentItem.metadata} />\n )}\n </Flex>\n\n <Flex container>\n {onItemDownload && (\n <StyledActionButton\n data-testid={testIds.download}\n variant='simple'\n aria-label={t('download')}\n icon\n onClick={() => onItemDownload(currentItem.id)}\n >\n <Icon name='download' />\n </StyledActionButton>\n )}\n <StyledActionButton\n data-testid={testIds.close}\n variant='simple'\n ref={closeButtonRef}\n aria-label={t('close')}\n icon\n onClick={close}\n >\n <Icon name='times' />\n </StyledActionButton>\n </Flex>\n </Flex>\n\n <Flex\n container={{ justify: 'between' }}\n as={StyledPreviewRegion}\n item={{ grow: 1, shrink: 0 }}\n >\n {items.length > 1 && (\n <StyledNavButton\n data-testid={testIds.prev}\n ref={prevButtonRef}\n variant='simple'\n aria-label={t('pagination_prev')}\n hidden={!cycle && currentIndex === 0}\n icon\n onClick={() => {\n navigate(-1);\n }}\n >\n <span>\n <Icon name='caret-left' />\n </span>\n </StyledNavButton>\n )}\n\n <Flex item={{ grow: 1 }} as={StyledImageContainer}>\n <Flex\n container={{ alignItems: 'center' }}\n onMouseDown={(e: MouseEvent<HTMLDivElement>) => {\n if (e.button !== 0) return;\n if (e.target === e.currentTarget) close();\n }}\n >\n {error && <ErrorState message={t('image_load_error')} />}\n\n {!error &&\n (currentItem.src ? (\n <StyledImage\n data-testid={testIds.content}\n ref={imageRef}\n src={currentItem.src}\n alt={currentItem.description}\n onLoad={(e: SyntheticEvent<HTMLImageElement>) => {\n onItemLoad?.(currentItem.id, e);\n }}\n onError={(e: SyntheticEvent<HTMLImageElement>) => {\n onItemError?.(currentItem.id, e);\n setError(true);\n }}\n />\n ) : (\n <Progress placement='block' delay />\n ))}\n </Flex>\n </Flex>\n\n {items.length > 1 && (\n <StyledNavButton\n data-testid={testIds.next}\n ref={nextButtonRef}\n variant='simple'\n aria-label={t('pagination_next')}\n hidden={!cycle && currentIndex === items.length - 1}\n icon\n onClick={() => {\n navigate(1);\n }}\n >\n <span>\n <Icon name='caret-right' />\n </span>\n </StyledNavButton>\n )}\n </Flex>\n <StyledLiveRegion aria-live='polite' aria-label={liveText} />\n </StyledLightbox>\n );\n\n return portalTarget ? createPortal(content, portalTarget) : content;\n});\n\nexport default withTestIds(Lightbox, getLightboxTestIds);\n"]}
1
+ {"version":3,"file":"Lightbox.js","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.tsx"],"names":[],"mappings":"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","sourcesContent":["import { useEffect, useRef, useState, forwardRef, useCallback } from 'react';\nimport type {\n FunctionComponent,\n PropsWithoutRef,\n Ref,\n MouseEvent,\n SyntheticEvent,\n RefObject\n} from 'react';\nimport { createPortal } from 'react-dom';\n\nimport type { ForwardProps } from '../../types';\nimport { cap, withTestIds } from '../../utils';\nimport Flex from '../Flex';\nimport MetaList from '../MetaList';\nimport Icon from '../Icon';\nimport Image from '../Image';\nimport Text from '../Text';\nimport {\n useConfiguration,\n useConsolidatedRef,\n useDirection,\n useEvent,\n useFocusTrap,\n useI18n,\n useScrollToggle,\n useTestIds\n} from '../../hooks';\nimport ErrorState from '../ErrorState';\nimport Progress from '../Progress';\nimport FileVisual from '../File/FileVisual';\nimport Button from '../Button';\nimport Link from '../Link/Link';\nimport mimeTypes from '../File/mimeTypes.json';\nimport { getKindFromMimeType } from '../File/utils';\nimport type { AttachmentType } from '../File/utils';\n\nimport {\n StyledHeader,\n StyledCountTracker,\n StyledInfo,\n StyledPreviewRegion,\n StyledNavButton,\n StyledMediaContainer,\n StyledLiveRegion,\n StyledLightbox,\n StyledContainer,\n StyledObject\n} from './Lightbox.styles';\nimport type { LightboxProps } from './Lightbox.types';\nimport { getLightboxTestIds } from './Lightbox.test-ids';\n\nconst Lightbox: FunctionComponent<LightboxProps & ForwardProps> = forwardRef(function Lightbox(\n {\n testId,\n items,\n defaultIndex = 0,\n cycle = false,\n onItemLoad,\n onItemError,\n onNavigate,\n onItemDownload,\n onAfterClose,\n ...restProps\n }: PropsWithoutRef<LightboxProps>,\n refArg: Ref<HTMLDivElement>\n) {\n const t = useI18n();\n const { start, end } = useDirection();\n const { portalTarget } = useConfiguration();\n const [currentIndex, setCurrentIndex] = useState(defaultIndex);\n const currentItem = items[currentIndex];\n const { disableScroll, enableScroll } = useScrollToggle();\n const lightboxRef = useConsolidatedRef(refArg);\n const headerRef = useRef<HTMLDivElement>(null);\n const closeButtonRef = useRef<HTMLButtonElement>(null);\n const prevButtonRef = useRef<HTMLButtonElement>(null);\n const nextButtonRef = useRef<HTMLButtonElement>(null);\n const [open, setOpen] = useState(true);\n const mediaRef = useConsolidatedRef(currentItem.ref);\n const [liveText, setLiveText] = useState('');\n const countTrackerText = items.length > 1 ? t('x_of_y', [currentIndex + 1, items.length]) : '';\n const testIds = useTestIds(testId, getLightboxTestIds);\n\n const close = () => {\n setOpen(false);\n };\n\n const navigate = (direction: 1 | -1) => {\n if (direction === 1) {\n if (currentIndex < items.length - 1) {\n setCurrentIndex(cur => cur + 1);\n } else if (cycle) {\n setCurrentIndex(0);\n }\n } else if (currentIndex > 0) {\n setCurrentIndex(cur => cur - 1);\n } else if (cycle) {\n setCurrentIndex(items.length - 1);\n }\n };\n const keyDownHandler = (e: KeyboardEvent) => {\n if (e.repeat) return;\n\n if (e.key === 'Escape') {\n close();\n } else if (e.key === `Arrow${cap(end)}`) {\n navigate(1);\n } else if (e.key === `Arrow${cap(start)}`) {\n navigate(-1);\n }\n };\n\n useEvent('keydown', keyDownHandler);\n useFocusTrap(lightboxRef);\n\n useEffect(() => {\n setLiveText(\n `${currentItem.name}. ${countTrackerText ? `${countTrackerText}.` : ''} ${\n currentItem.description\n }.`\n );\n }, [currentItem.name, countTrackerText, currentItem.description]);\n\n useEffect(() => {\n onNavigate?.(currentItem.id, currentIndex);\n }, [currentIndex]);\n\n useEffect(() => {\n lightboxRef.current?.focus();\n }, []);\n\n const handleLoad = useCallback(\n (e: SyntheticEvent<HTMLImageElement | HTMLObjectElement> | Event) => {\n onItemLoad?.(currentItem.id, e);\n },\n [onItemLoad, currentItem.id]\n );\n\n const handleError = useCallback(\n (e: SyntheticEvent<HTMLImageElement | HTMLObjectElement> | Event) => {\n onItemError?.(currentItem.id, e);\n },\n [onItemError, currentItem.id]\n );\n\n // Object elements appear to need native event handlers bound as JSX does not work.\n // TODO: Follow up on reason why.\n useEffect(() => {\n if (!mediaRef.current || currentItem.format !== 'pdf') return;\n const pdfObject = mediaRef.current;\n pdfObject.addEventListener('load', handleLoad);\n pdfObject.addEventListener('error', handleError);\n\n return () => {\n pdfObject.removeEventListener('load', handleLoad);\n pdfObject.removeEventListener('error', handleError);\n };\n }, [currentItem]);\n\n let media;\n let validContent;\n let attachmentType: AttachmentType = 'generic';\n if (currentItem.format === undefined || currentItem.error) {\n validContent = false;\n } else {\n const extractMimeType = (mimeTypes as Record<string, string>)[currentItem.format.toLowerCase()];\n const getType = currentItem.format === 'url' ? 'link' : 'generic';\n attachmentType = extractMimeType ? getKindFromMimeType(extractMimeType) : getType;\n const previewableAttachmentTypes = ['pdf', 'image', 'link'];\n validContent = previewableAttachmentTypes.includes(attachmentType)\n ? currentItem.src\n : attachmentType;\n }\n\n if (validContent) {\n const nonPreviewableContent = (\n <>\n <Text>\n {t('non_previewable', [currentItem.format ? currentItem.format.toUpperCase() : ''])}\n </Text>\n {onItemDownload && (\n <Button\n aria-label={t('download')}\n onClick={() => onItemDownload(currentItem.id)}\n data-testid={testIds.nonPreviewableDownload}\n >\n {t('download')}\n </Button>\n )}\n </>\n );\n\n const defaultContent = (\n <Flex\n container={{ direction: 'column', gap: 2, alignItems: 'center' }}\n as={StyledInfo}\n data-testid={testIds.content}\n >\n <FileVisual type={attachmentType} size='l' />\n {attachmentType === 'link' && currentItem.src ? (\n <Link href={currentItem.src} data-testid={testIds.link}>\n {currentItem.name}\n </Link>\n ) : (\n nonPreviewableContent\n )}\n </Flex>\n );\n\n switch (attachmentType) {\n case 'image':\n media = currentItem.src && (\n <Image\n data-testid={testIds.content}\n src={currentItem.src}\n alt={currentItem.description}\n onLoad={handleLoad}\n onError={handleError}\n ref={mediaRef as RefObject<HTMLImageElement>}\n />\n );\n break;\n case 'pdf':\n media = currentItem.src && (\n <>\n {navigator.pdfViewerEnabled ? (\n <StyledObject\n data-testid={testIds.content}\n data={currentItem.src}\n type='application/pdf'\n ref={mediaRef as RefObject<HTMLObjectElement>}\n >\n {currentItem.description}\n </StyledObject>\n ) : (\n { defaultContent }\n )}\n </>\n );\n break;\n default: {\n media = defaultContent;\n }\n }\n } else {\n media = <Progress placement='block' delay />;\n }\n\n const content = (\n <StyledLightbox\n data-testid={testIds.root}\n {...restProps}\n tabIndex={-1}\n ref={lightboxRef}\n open={open}\n role='dialog'\n aria-modal='true'\n container={{ alignItems: 'start', justify: 'start', direction: 'column' }}\n alpha={0.9}\n variant='dark'\n transitionSpeed='slow'\n onBeforeTransitionIn={disableScroll}\n onAfterTransitionOut={() => {\n enableScroll();\n onAfterClose?.();\n }}\n >\n <Flex\n as={StyledHeader}\n ref={headerRef}\n container={{\n justify: 'between',\n alignItems: 'center',\n gap: 2\n }}\n onMouseDown={(e: MouseEvent<HTMLDivElement>) => {\n if (e.button !== 0) return;\n if (e.target === e.currentTarget) close();\n }}\n >\n <StyledCountTracker data-testid={testIds.pagination} aria-hidden='true'>\n {countTrackerText}\n </StyledCountTracker>\n\n <Flex\n as={StyledInfo}\n container={{\n wrap: 'wrap',\n alignItems: 'center',\n justify: 'center',\n colGap: 2,\n rowGap: 0.5\n }}\n >\n <Text data-testid={testIds.name} variant='primary' as='h2'>\n {currentItem.name}\n </Text>\n {currentItem.metadata && (\n <MetaList data-testid={testIds.metadata} items={currentItem.metadata} />\n )}\n </Flex>\n\n <Flex container as={StyledContainer}>\n {attachmentType !== 'link' && onItemDownload && (\n <Button\n data-testid={testIds.download}\n variant='simple'\n aria-label={t('download')}\n icon\n onClick={() => onItemDownload(currentItem.id)}\n >\n <Icon name='download' />\n </Button>\n )}\n <Button\n data-testid={testIds.close}\n variant='simple'\n ref={closeButtonRef}\n aria-label={t('close')}\n icon\n onClick={close}\n >\n <Icon name='times' />\n </Button>\n </Flex>\n </Flex>\n\n <Flex\n container={{ justify: 'between' }}\n as={StyledPreviewRegion}\n item={{ grow: 1, shrink: 0 }}\n >\n {items.length > 1 && (\n <StyledNavButton\n data-testid={testIds.prev}\n ref={prevButtonRef}\n variant='simple'\n aria-label={t('pagination_prev')}\n hidden={!cycle && currentIndex === 0}\n icon\n onClick={() => {\n navigate(-1);\n }}\n >\n <span>\n <Icon name='caret-left' />\n </span>\n </StyledNavButton>\n )}\n\n <Flex item={{ grow: 1 }} as={StyledMediaContainer}>\n <Flex\n container={{ alignItems: 'center', justify: 'center' }}\n onMouseDown={(e: MouseEvent<HTMLDivElement>) => {\n if (e.button !== 0) return;\n if (e.target === e.currentTarget) close();\n }}\n >\n {currentItem.error ? <ErrorState message={t('content_load_error')} /> : media}\n </Flex>\n </Flex>\n\n {items.length > 1 && (\n <StyledNavButton\n data-testid={testIds.next}\n ref={nextButtonRef}\n variant='simple'\n aria-label={t('pagination_next')}\n hidden={!cycle && currentIndex === items.length - 1}\n icon\n onClick={() => {\n navigate(1);\n }}\n >\n <span>\n <Icon name='caret-right' />\n </span>\n </StyledNavButton>\n )}\n </Flex>\n <StyledLiveRegion aria-live='polite' aria-label={liveText} />\n </StyledLightbox>\n );\n\n return portalTarget ? createPortal(content, portalTarget) : content;\n});\n\nexport default withTestIds(Lightbox, getLightboxTestIds);\n"]}
@@ -2,10 +2,10 @@ export declare const StyledHeader: import("styled-components").StyledComponent<"
2
2
  export declare const StyledCountTracker: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
3
3
  export declare const StyledInfo: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
4
4
  export declare const StyledNavButton: import("styled-components").StyledComponent<import("react").FunctionComponent<import("../Button/BareButton").BareButtonProps & import("../..").ForwardProps>, import("styled-components").DefaultTheme, {}, never>;
5
- export declare const StyledActionButton: import("styled-components").StyledComponent<import("react").FunctionComponent<import("../Button").ButtonProps & import("../..").ForwardProps>, import("styled-components").DefaultTheme, {}, never>;
6
- export declare const StyledImageContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
5
+ export declare const StyledContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
6
+ export declare const StyledMediaContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
7
+ export declare const StyledObject: import("styled-components").StyledComponent<"object", import("styled-components").DefaultTheme, {}, never>;
7
8
  export declare const StyledPreviewRegion: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
8
- export declare const StyledImage: import("styled-components").StyledComponent<import("react").FunctionComponent<import("../Image").ImageProps & import("../..").ForwardProps>, import("styled-components").DefaultTheme, {}, never>;
9
9
  export declare const StyledLiveRegion: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
10
10
  export declare const StyledLightbox: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Omit<import("../Backdrop").BackdropProps, "ref"> & import("react").RefAttributes<HTMLDivElement>> & {
11
11
  getTestIds: (testIdProp?: string | undefined) => import("../..").TestIdsRecord<readonly []>;
@@ -1 +1 @@
1
- {"version":3,"file":"Lightbox.styles.d.ts","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.styles.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,YAAY,4GAkBvB,CAAC;AAIH,eAAO,MAAM,kBAAkB,yGAY7B,CAAC;AAIH,eAAO,MAAM,UAAU,yGAKrB,CAAC;AAIH,eAAO,MAAM,eAAe,oNAgE1B,CAAC;AAIH,eAAO,MAAM,kBAAkB,qMAS7B,CAAC;AAIH,eAAO,MAAM,oBAAoB,yGAkB/B,CAAC;AAIH,eAAO,MAAM,mBAAmB,yGAG/B,CAAC;AAEF,eAAO,MAAM,WAAW,mMAKvB,CAAC;AAEF,eAAO,MAAM,gBAAgB,yGAE5B,CAAC;AAEF,eAAO,MAAM,cAAc;;uDAQzB,CAAC"}
1
+ {"version":3,"file":"Lightbox.styles.d.ts","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.styles.ts"],"names":[],"mappings":"AAeA,eAAO,MAAM,YAAY,4GAkBvB,CAAC;AAIH,eAAO,MAAM,kBAAkB,yGAY7B,CAAC;AAIH,eAAO,MAAM,UAAU,yGAUrB,CAAC;AAIH,eAAO,MAAM,eAAe,oNAgE1B,CAAC;AAIH,eAAO,MAAM,eAAe,yGAW1B,CAAC;AAIH,eAAO,MAAM,oBAAoB,yGAyB/B,CAAC;AAEH,eAAO,MAAM,YAAY,4GAKxB,CAAC;AAIF,eAAO,MAAM,mBAAmB,yGAG/B,CAAC;AAEF,eAAO,MAAM,gBAAgB,yGAE5B,CAAC;AAEF,eAAO,MAAM,cAAc;;uDAQzB,CAAC"}
@@ -3,8 +3,6 @@ import { hideVisually, rgba } from 'polished';
3
3
  import { defaultThemeProp } from '../../theme';
4
4
  import { tryCatch } from '../../utils';
5
5
  import { calculateFontSize } from '../../styles';
6
- import Image from '../Image';
7
- import Button from '../Button';
8
6
  import BareButton from '../Button/BareButton';
9
7
  import { StyledIcon } from '../Icon';
10
8
  import { StyledMetaList } from '../MetaList/MetaList';
@@ -12,6 +10,7 @@ import { StyledErrorState } from '../ErrorState';
12
10
  import { StyledText } from '../Text';
13
11
  import { useDirection } from '../../hooks';
14
12
  import Backdrop from '../Backdrop';
13
+ import { StyledLink } from '../Link/Link';
15
14
  export const StyledHeader = styled.header(({ theme }) => {
16
15
  const color = tryCatch(() => rgba(theme.base.palette.light, theme.base.transparency['transparent-2']));
17
16
  return css `
@@ -46,6 +45,11 @@ export const StyledInfo = styled.div(({ theme }) => {
46
45
  return css `
47
46
  color: ${theme.base.palette.light};
48
47
  font-weight: ${theme.base['font-weight']['semi-bold']};
48
+
49
+ ${StyledLink} {
50
+ color: inherit;
51
+ text-decoration: underline;
52
+ }
49
53
  `;
50
54
  });
51
55
  StyledInfo.defaultProps = defaultThemeProp;
@@ -114,18 +118,20 @@ export const StyledNavButton = styled(BareButton)(({ theme }) => {
114
118
  `;
115
119
  });
116
120
  StyledNavButton.defaultProps = defaultThemeProp;
117
- export const StyledActionButton = styled(Button)(({ theme }) => {
121
+ export const StyledContainer = styled.div(({ theme }) => {
118
122
  return css `
119
- padding: ${theme.base.spacing};
120
- color: ${theme.base.palette.light};
123
+ button {
124
+ padding: ${theme.base.spacing};
125
+ color: ${theme.base.palette.light};
121
126
 
122
- &:focus:enabled {
123
- box-shadow: ${theme.base.shadow.focus};
127
+ &:focus:enabled {
128
+ box-shadow: ${theme.base.shadow.focus};
129
+ }
124
130
  }
125
131
  `;
126
132
  });
127
- StyledActionButton.defaultProps = defaultThemeProp;
128
- export const StyledImageContainer = styled.div(({ theme }) => {
133
+ StyledContainer.defaultProps = defaultThemeProp;
134
+ export const StyledMediaContainer = styled.div(({ theme }) => {
129
135
  return css `
130
136
  position: relative;
131
137
 
@@ -142,19 +148,26 @@ export const StyledImageContainer = styled.div(({ theme }) => {
142
148
  color: ${theme.base.palette.light};
143
149
  }
144
150
  }
151
+
152
+ img {
153
+ display: block;
154
+ max-width: 100%;
155
+ max-height: 100%;
156
+ margin: auto;
157
+ }
145
158
  `;
146
159
  });
147
- StyledImageContainer.defaultProps = defaultThemeProp;
160
+ export const StyledObject = styled.object `
161
+ display: block;
162
+ margin: auto;
163
+ width: calc(100% - 5rem);
164
+ height: 100%;
165
+ `;
166
+ StyledMediaContainer.defaultProps = defaultThemeProp;
148
167
  export const StyledPreviewRegion = styled.div `
149
168
  position: relative;
150
169
  width: 100%;
151
170
  `;
152
- export const StyledImage = styled(Image) `
153
- display: block;
154
- max-width: 100%;
155
- max-height: 100%;
156
- margin: auto;
157
- `;
158
171
  export const StyledLiveRegion = styled.div `
159
172
  ${hideVisually}
160
173
  `;
@@ -1 +1 @@
1
- {"version":3,"file":"Lightbox.styles.js","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.styles.ts"],"names":[],"mappings":"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","sourcesContent":["import styled, { css } from 'styled-components';\nimport { hideVisually, rgba } from 'polished';\n\nimport { defaultThemeProp } from '../../theme';\nimport { tryCatch } from '../../utils';\nimport { calculateFontSize } from '../../styles';\nimport Image from '../Image';\nimport Button from '../Button';\nimport BareButton from '../Button/BareButton';\nimport { StyledIcon } from '../Icon';\nimport { StyledMetaList } from '../MetaList/MetaList';\nimport { StyledErrorState } from '../ErrorState';\nimport { StyledText } from '../Text';\nimport { useDirection } from '../../hooks';\nimport Backdrop from '../Backdrop';\n\nexport const StyledHeader = styled.header(({ theme }) => {\n const color: string | undefined = tryCatch(() =>\n rgba(theme.base.palette.light, theme.base.transparency['transparent-2'])\n );\n\n return css`\n position: relative;\n width: 100%;\n padding: ${theme.base.spacing};\n color: ${color};\n\n ${StyledMetaList} {\n justify-content: center;\n li {\n color: ${color};\n }\n }\n `;\n});\n\nStyledHeader.defaultProps = defaultThemeProp;\n\nexport const StyledCountTracker = styled.div(({ theme }) => {\n const fontSize = calculateFontSize(theme.base['font-size'], theme.base['font-scale']);\n\n return css`\n font-size: ${fontSize.xs};\n text-align: center;\n min-width: calc(2 * ${theme.base['hit-area']['mouse-min']});\n\n @media (pointer: coarse) {\n min-width: calc(2 * ${theme.base['hit-area']['finger-min']});\n }\n `;\n});\n\nStyledCountTracker.defaultProps = defaultThemeProp;\n\nexport const StyledInfo = styled.div(({ theme }) => {\n return css`\n color: ${theme.base.palette.light};\n font-weight: ${theme.base['font-weight']['semi-bold']};\n `;\n});\n\nStyledInfo.defaultProps = defaultThemeProp;\n\nexport const StyledNavButton = styled(BareButton)(({ theme }) => {\n const bg = tryCatch(() => rgba(theme.base.colors.gray.medium, 0.5));\n const hoverBg = tryCatch(() => rgba(theme.base.colors.gray.medium, 0.7));\n const { rtl } = useDirection();\n\n return css`\n position: absolute;\n z-index: 1;\n inset-block: 0;\n min-width: ${theme.base['hit-area']['mouse-min']};\n color: ${theme.base.palette['foreground-color']};\n box-shadow: none;\n border-radius: 0;\n\n @media (pointer: coarse) {\n min-width: ${theme.base['hit-area']['finger-min']};\n }\n\n &[hidden] {\n display: none;\n }\n\n & > span {\n display: inline-block;\n background-color: ${bg};\n\n ${StyledIcon} {\n color: ${theme.base.palette.light};\n width: 2rem;\n height: 3rem;\n\n ${rtl &&\n css`\n transform: rotateZ(180deg);\n `}\n }\n }\n\n &:nth-of-type(1) {\n inset-inline-start: 0;\n text-align: start;\n & > span {\n border-start-end-radius: calc(${theme.base['border-radius']} / 2);\n border-end-end-radius: calc(${theme.base['border-radius']} / 2);\n }\n }\n\n &:nth-of-type(2) {\n inset-inline-end: 0;\n text-align: end;\n & > span {\n border-start-start-radius: calc(${theme.base['border-radius']} / 2);\n border-end-start-radius: calc(${theme.base['border-radius']} / 2);\n }\n }\n\n &:hover > span {\n background-color: ${hoverBg};\n }\n\n &:focus > span {\n box-shadow: ${theme.base.shadow.focus};\n }\n `;\n});\n\nStyledNavButton.defaultProps = defaultThemeProp;\n\nexport const StyledActionButton = styled(Button)(({ theme }) => {\n return css`\n padding: ${theme.base.spacing};\n color: ${theme.base.palette.light};\n\n &:focus:enabled {\n box-shadow: ${theme.base.shadow.focus};\n }\n `;\n});\n\nStyledActionButton.defaultProps = defaultThemeProp;\n\nexport const StyledImageContainer = styled.div(({ theme }) => {\n return css`\n position: relative;\n\n & > div {\n position: absolute;\n inset-block-start: 0;\n inset-block-end: calc(2 * ${theme.base.spacing});\n inset-inline: 0;\n }\n\n ${StyledErrorState} {\n margin: auto;\n & > ${StyledText} {\n color: ${theme.base.palette.light};\n }\n }\n `;\n});\n\nStyledImageContainer.defaultProps = defaultThemeProp;\n\nexport const StyledPreviewRegion = styled.div`\n position: relative;\n width: 100%;\n`;\n\nexport const StyledImage = styled(Image)`\n display: block;\n max-width: 100%;\n max-height: 100%;\n margin: auto;\n`;\n\nexport const StyledLiveRegion = styled.div`\n ${hideVisually}\n`;\n\nexport const StyledLightbox = styled(Backdrop)(({ theme }) => {\n return css`\n z-index: ${theme.base['z-index'].max};\n\n &:focus {\n outline: none;\n }\n `;\n});\n\nStyledLightbox.defaultProps = defaultThemeProp;\n"]}
1
+ {"version":3,"file":"Lightbox.styles.js","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.styles.ts"],"names":[],"mappings":"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","sourcesContent":["import styled, { css } from 'styled-components';\nimport { hideVisually, rgba } from 'polished';\n\nimport { defaultThemeProp } from '../../theme';\nimport { tryCatch } from '../../utils';\nimport { calculateFontSize } from '../../styles';\nimport BareButton from '../Button/BareButton';\nimport { StyledIcon } from '../Icon';\nimport { StyledMetaList } from '../MetaList/MetaList';\nimport { StyledErrorState } from '../ErrorState';\nimport { StyledText } from '../Text';\nimport { useDirection } from '../../hooks';\nimport Backdrop from '../Backdrop';\nimport { StyledLink } from '../Link/Link';\n\nexport const StyledHeader = styled.header(({ theme }) => {\n const color: string | undefined = tryCatch(() =>\n rgba(theme.base.palette.light, theme.base.transparency['transparent-2'])\n );\n\n return css`\n position: relative;\n width: 100%;\n padding: ${theme.base.spacing};\n color: ${color};\n\n ${StyledMetaList} {\n justify-content: center;\n li {\n color: ${color};\n }\n }\n `;\n});\n\nStyledHeader.defaultProps = defaultThemeProp;\n\nexport const StyledCountTracker = styled.div(({ theme }) => {\n const fontSize = calculateFontSize(theme.base['font-size'], theme.base['font-scale']);\n\n return css`\n font-size: ${fontSize.xs};\n text-align: center;\n min-width: calc(2 * ${theme.base['hit-area']['mouse-min']});\n\n @media (pointer: coarse) {\n min-width: calc(2 * ${theme.base['hit-area']['finger-min']});\n }\n `;\n});\n\nStyledCountTracker.defaultProps = defaultThemeProp;\n\nexport const StyledInfo = styled.div(({ theme }) => {\n return css`\n color: ${theme.base.palette.light};\n font-weight: ${theme.base['font-weight']['semi-bold']};\n\n ${StyledLink} {\n color: inherit;\n text-decoration: underline;\n }\n `;\n});\n\nStyledInfo.defaultProps = defaultThemeProp;\n\nexport const StyledNavButton = styled(BareButton)(({ theme }) => {\n const bg = tryCatch(() => rgba(theme.base.colors.gray.medium, 0.5));\n const hoverBg = tryCatch(() => rgba(theme.base.colors.gray.medium, 0.7));\n const { rtl } = useDirection();\n\n return css`\n position: absolute;\n z-index: 1;\n inset-block: 0;\n min-width: ${theme.base['hit-area']['mouse-min']};\n color: ${theme.base.palette['foreground-color']};\n box-shadow: none;\n border-radius: 0;\n\n @media (pointer: coarse) {\n min-width: ${theme.base['hit-area']['finger-min']};\n }\n\n &[hidden] {\n display: none;\n }\n\n & > span {\n display: inline-block;\n background-color: ${bg};\n\n ${StyledIcon} {\n color: ${theme.base.palette.light};\n width: 2rem;\n height: 3rem;\n\n ${rtl &&\n css`\n transform: rotateZ(180deg);\n `}\n }\n }\n\n &:nth-of-type(1) {\n inset-inline-start: 0;\n text-align: start;\n & > span {\n border-start-end-radius: calc(${theme.base['border-radius']} / 2);\n border-end-end-radius: calc(${theme.base['border-radius']} / 2);\n }\n }\n\n &:nth-of-type(2) {\n inset-inline-end: 0;\n text-align: end;\n & > span {\n border-start-start-radius: calc(${theme.base['border-radius']} / 2);\n border-end-start-radius: calc(${theme.base['border-radius']} / 2);\n }\n }\n\n &:hover > span {\n background-color: ${hoverBg};\n }\n\n &:focus > span {\n box-shadow: ${theme.base.shadow.focus};\n }\n `;\n});\n\nStyledNavButton.defaultProps = defaultThemeProp;\n\nexport const StyledContainer = styled.div(({ theme }) => {\n return css`\n button {\n padding: ${theme.base.spacing};\n color: ${theme.base.palette.light};\n\n &:focus:enabled {\n box-shadow: ${theme.base.shadow.focus};\n }\n }\n `;\n});\n\nStyledContainer.defaultProps = defaultThemeProp;\n\nexport const StyledMediaContainer = styled.div(({ theme }) => {\n return css`\n position: relative;\n\n & > div {\n position: absolute;\n inset-block-start: 0;\n inset-block-end: calc(2 * ${theme.base.spacing});\n inset-inline: 0;\n }\n\n ${StyledErrorState} {\n margin: auto;\n & > ${StyledText} {\n color: ${theme.base.palette.light};\n }\n }\n\n img {\n display: block;\n max-width: 100%;\n max-height: 100%;\n margin: auto;\n }\n `;\n});\n\nexport const StyledObject = styled.object`\n display: block;\n margin: auto;\n width: calc(100% - 5rem);\n height: 100%;\n`;\n\nStyledMediaContainer.defaultProps = defaultThemeProp;\n\nexport const StyledPreviewRegion = styled.div`\n position: relative;\n width: 100%;\n`;\n\nexport const StyledLiveRegion = styled.div`\n ${hideVisually}\n`;\n\nexport const StyledLightbox = styled(Backdrop)(({ theme }) => {\n return css`\n z-index: ${theme.base['z-index'].max};\n\n &:focus {\n outline: none;\n }\n `;\n});\n\nStyledLightbox.defaultProps = defaultThemeProp;\n"]}
@@ -1,2 +1,2 @@
1
- export declare const getLightboxTestIds: (testIdProp?: string | undefined) => import("../..").TestIdsRecord<readonly ["content", "name", "metadata", "download", "close", "prev", "next", "pagination"]>;
1
+ export declare const getLightboxTestIds: (testIdProp?: string | undefined) => import("../..").TestIdsRecord<readonly ["content", "name", "metadata", "download", "close", "prev", "next", "pagination", "non-previewable-download", "link"]>;
2
2
  //# sourceMappingURL=Lightbox.test-ids.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Lightbox.test-ids.d.ts","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.test-ids.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB,iKASpB,CAAC"}
1
+ {"version":3,"file":"Lightbox.test-ids.d.ts","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.test-ids.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB,qMAWpB,CAAC"}
@@ -7,6 +7,8 @@ export const getLightboxTestIds = createTestIds('lightbox', [
7
7
  'close',
8
8
  'prev',
9
9
  'next',
10
- 'pagination'
10
+ 'pagination',
11
+ 'non-previewable-download',
12
+ 'link'
11
13
  ]);
12
14
  //# sourceMappingURL=Lightbox.test-ids.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Lightbox.test-ids.js","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.test-ids.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAE5C,MAAM,CAAC,MAAM,kBAAkB,GAAG,aAAa,CAAC,UAAU,EAAE;IAC1D,SAAS;IACT,MAAM;IACN,UAAU;IACV,UAAU;IACV,OAAO;IACP,MAAM;IACN,MAAM;IACN,YAAY;CACJ,CAAC,CAAC","sourcesContent":["import { createTestIds } from '../../utils';\n\nexport const getLightboxTestIds = createTestIds('lightbox', [\n 'content',\n 'name',\n 'metadata',\n 'download',\n 'close',\n 'prev',\n 'next',\n 'pagination'\n] as const);\n"]}
1
+ {"version":3,"file":"Lightbox.test-ids.js","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.test-ids.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAE5C,MAAM,CAAC,MAAM,kBAAkB,GAAG,aAAa,CAAC,UAAU,EAAE;IAC1D,SAAS;IACT,MAAM;IACN,UAAU;IACV,UAAU;IACV,OAAO;IACP,MAAM;IACN,MAAM;IACN,YAAY;IACZ,0BAA0B;IAC1B,MAAM;CACE,CAAC,CAAC","sourcesContent":["import { createTestIds } from '../../utils';\n\nexport const getLightboxTestIds = createTestIds('lightbox', [\n 'content',\n 'name',\n 'metadata',\n 'download',\n 'close',\n 'prev',\n 'next',\n 'pagination',\n 'non-previewable-download',\n 'link'\n] as const);\n"]}
@@ -1,7 +1,7 @@
1
- import type { ReactNode, SyntheticEvent } from 'react';
1
+ import type { ReactNode, Ref, SyntheticEvent } from 'react';
2
2
  import type { NoChildrenProp, BaseProps, TestIdProp } from '../../types';
3
3
  import type { BackdropProps } from '../Backdrop/Backdrop';
4
- import type { ImageProps } from '../Image';
4
+ type MediaElement = HTMLImageElement | HTMLObjectElement;
5
5
  export interface LightboxProps extends NoChildrenProp, BaseProps, TestIdProp {
6
6
  /** A list of compatible content to present in the lightbox. */
7
7
  items: LightboxItem[];
@@ -10,12 +10,15 @@ export interface LightboxProps extends NoChildrenProp, BaseProps, TestIdProp {
10
10
  * @default 0
11
11
  */
12
12
  defaultIndex?: number;
13
- /** Allow cycling through the items in either direction. */
14
- cycle?: true;
13
+ /**
14
+ * Allow cycling through the items in either direction.
15
+ * @default false
16
+ */
17
+ cycle?: boolean;
15
18
  /** Called when an item's file is loaded. */
16
- onItemLoad?: (id: LightboxItem['id'], e: SyntheticEvent<HTMLImageElement>) => void;
19
+ onItemLoad?: (id: LightboxItem['id'], e: SyntheticEvent<MediaElement> | Event) => void;
17
20
  /** Called when an item's file encounters an error while loading. */
18
- onItemError?: (id: LightboxItem['id'], e: SyntheticEvent<HTMLImageElement>) => void;
21
+ onItemError?: (id: LightboxItem['id'], e: SyntheticEvent<MediaElement> | Event) => void;
19
22
  /** Called when the user navigates between items. */
20
23
  onNavigate?: (id: LightboxItem['id'], index: number) => void;
21
24
  /** Called when a download action is triggered for an item's file. */
@@ -31,12 +34,20 @@ export interface LightboxItem {
31
34
  /** The item's name e.g. filename. */
32
35
  name: string;
33
36
  /** Text to describe the item. */
34
- description: ImageProps['alt'];
37
+ description: string;
35
38
  /** URL for the item's binary file. Pass null for when src is not yet available. */
36
39
  src: string | null;
40
+ /** File extension. Use 'url' for link */
41
+ format: string | undefined;
42
+ /**
43
+ * Prop for showing Error state
44
+ * @default false
45
+ */
46
+ error?: boolean;
37
47
  /** Additional info about the item. */
38
48
  metadata?: ReactNode[];
39
49
  /** A ref to the item's underlying element. */
40
- ref?: ImageProps['ref'];
50
+ ref?: Ref<MediaElement>;
41
51
  }
52
+ export {};
42
53
  //# sourceMappingURL=Lightbox.types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Lightbox.types.d.ts","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAEvD,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AACzE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAE3C,MAAM,WAAW,aAAc,SAAQ,cAAc,EAAE,SAAS,EAAE,UAAU;IAC1E,+DAA+D;IAC/D,KAAK,EAAE,YAAY,EAAE,CAAC;IACtB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,2DAA2D;IAC3D,KAAK,CAAC,EAAE,IAAI,CAAC;IACb,4CAA4C;IAC5C,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,YAAY,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,cAAc,CAAC,gBAAgB,CAAC,KAAK,IAAI,CAAC;IACnF,oEAAoE;IACpE,WAAW,CAAC,EAAE,CAAC,EAAE,EAAE,YAAY,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,cAAc,CAAC,gBAAgB,CAAC,KAAK,IAAI,CAAC;IACpF,oDAAoD;IACpD,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,YAAY,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7D,qEAAqE;IACrE,cAAc,CAAC,EAAE,CAAC,EAAE,EAAE,YAAY,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC;IAClD,sDAAsD;IACtD,YAAY,CAAC,EAAE,aAAa,CAAC,sBAAsB,CAAC,CAAC;IACrD,4DAA4D;IAC5D,GAAG,CAAC,EAAE,aAAa,CAAC,KAAK,CAAC,CAAC;CAC5B;AAED,MAAM,WAAW,YAAY;IAC3B,wCAAwC;IACxC,EAAE,EAAE,MAAM,CAAC;IACX,qCAAqC;IACrC,IAAI,EAAE,MAAM,CAAC;IACb,iCAAiC;IACjC,WAAW,EAAE,UAAU,CAAC,KAAK,CAAC,CAAC;IAC/B,mFAAmF;IACnF,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IACnB,sCAAsC;IACtC,QAAQ,CAAC,EAAE,SAAS,EAAE,CAAC;IACvB,8CAA8C;IAC9C,GAAG,CAAC,EAAE,UAAU,CAAC,KAAK,CAAC,CAAC;CACzB"}
1
+ {"version":3,"file":"Lightbox.types.d.ts","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,GAAG,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAE5D,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AACzE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE1D,KAAK,YAAY,GAAG,gBAAgB,GAAG,iBAAiB,CAAC;AAEzD,MAAM,WAAW,aAAc,SAAQ,cAAc,EAAE,SAAS,EAAE,UAAU;IAC1E,+DAA+D;IAC/D,KAAK,EAAE,YAAY,EAAE,CAAC;IACtB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,4CAA4C;IAC5C,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,YAAY,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,KAAK,IAAI,CAAC;IACvF,oEAAoE;IACpE,WAAW,CAAC,EAAE,CAAC,EAAE,EAAE,YAAY,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,KAAK,IAAI,CAAC;IACxF,oDAAoD;IACpD,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,YAAY,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7D,qEAAqE;IACrE,cAAc,CAAC,EAAE,CAAC,EAAE,EAAE,YAAY,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC;IAClD,sDAAsD;IACtD,YAAY,CAAC,EAAE,aAAa,CAAC,sBAAsB,CAAC,CAAC;IACrD,4DAA4D;IAC5D,GAAG,CAAC,EAAE,aAAa,CAAC,KAAK,CAAC,CAAC;CAC5B;AAED,MAAM,WAAW,YAAY;IAC3B,wCAAwC;IACxC,EAAE,EAAE,MAAM,CAAC;IACX,qCAAqC;IACrC,IAAI,EAAE,MAAM,CAAC;IACb,iCAAiC;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,mFAAmF;IACnF,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IACnB,yCAAyC;IACzC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B;;;OAGG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,sCAAsC;IACtC,QAAQ,CAAC,EAAE,SAAS,EAAE,CAAC;IACvB,8CAA8C;IAC9C,GAAG,CAAC,EAAE,GAAG,CAAC,YAAY,CAAC,CAAC;CACzB"}
@@ -1 +1 @@
1
- {"version":3,"file":"Lightbox.types.js","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ReactNode, SyntheticEvent } from 'react';\n\nimport type { NoChildrenProp, BaseProps, TestIdProp } from '../../types';\nimport type { BackdropProps } from '../Backdrop/Backdrop';\nimport type { ImageProps } from '../Image';\n\nexport interface LightboxProps extends NoChildrenProp, BaseProps, TestIdProp {\n /** A list of compatible content to present in the lightbox. */\n items: LightboxItem[];\n /**\n * The index of the item to present on mount.\n * @default 0\n */\n defaultIndex?: number;\n /** Allow cycling through the items in either direction. */\n cycle?: true;\n /** Called when an item's file is loaded. */\n onItemLoad?: (id: LightboxItem['id'], e: SyntheticEvent<HTMLImageElement>) => void;\n /** Called when an item's file encounters an error while loading. */\n onItemError?: (id: LightboxItem['id'], e: SyntheticEvent<HTMLImageElement>) => void;\n /** Called when the user navigates between items. */\n onNavigate?: (id: LightboxItem['id'], index: number) => void;\n /** Called when a download action is triggered for an item's file. */\n onItemDownload?: (id: LightboxItem['id']) => void;\n /** Called after the lightbox has transitioned out. */\n onAfterClose?: BackdropProps['onAfterTransitionOut'];\n /** A ref to the underlying root element of the lightbox. */\n ref?: BackdropProps['ref'];\n}\n\nexport interface LightboxItem {\n /** A unique identifier for the item. */\n id: string;\n /** The item's name e.g. filename. */\n name: string;\n /** Text to describe the item. */\n description: ImageProps['alt'];\n /** URL for the item's binary file. Pass null for when src is not yet available. */\n src: string | null;\n /** Additional info about the item. */\n metadata?: ReactNode[];\n /** A ref to the item's underlying element. */\n ref?: ImageProps['ref'];\n}\n"]}
1
+ {"version":3,"file":"Lightbox.types.js","sourceRoot":"","sources":["../../../src/components/Lightbox/Lightbox.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ReactNode, Ref, SyntheticEvent } from 'react';\n\nimport type { NoChildrenProp, BaseProps, TestIdProp } from '../../types';\nimport type { BackdropProps } from '../Backdrop/Backdrop';\n\ntype MediaElement = HTMLImageElement | HTMLObjectElement;\n\nexport interface LightboxProps extends NoChildrenProp, BaseProps, TestIdProp {\n /** A list of compatible content to present in the lightbox. */\n items: LightboxItem[];\n /**\n * The index of the item to present on mount.\n * @default 0\n */\n defaultIndex?: number;\n /**\n * Allow cycling through the items in either direction.\n * @default false\n */\n cycle?: boolean;\n /** Called when an item's file is loaded. */\n onItemLoad?: (id: LightboxItem['id'], e: SyntheticEvent<MediaElement> | Event) => void;\n /** Called when an item's file encounters an error while loading. */\n onItemError?: (id: LightboxItem['id'], e: SyntheticEvent<MediaElement> | Event) => void;\n /** Called when the user navigates between items. */\n onNavigate?: (id: LightboxItem['id'], index: number) => void;\n /** Called when a download action is triggered for an item's file. */\n onItemDownload?: (id: LightboxItem['id']) => void;\n /** Called after the lightbox has transitioned out. */\n onAfterClose?: BackdropProps['onAfterTransitionOut'];\n /** A ref to the underlying root element of the lightbox. */\n ref?: BackdropProps['ref'];\n}\n\nexport interface LightboxItem {\n /** A unique identifier for the item. */\n id: string;\n /** The item's name e.g. filename. */\n name: string;\n /** Text to describe the item. */\n description: string;\n /** URL for the item's binary file. Pass null for when src is not yet available. */\n src: string | null;\n /** File extension. Use 'url' for link */\n format: string | undefined;\n /**\n * Prop for showing Error state\n * @default false\n */\n error?: boolean;\n /** Additional info about the item. */\n metadata?: ReactNode[];\n /** A ref to the item's underlying element. */\n ref?: Ref<MediaElement>;\n}\n"]}
@@ -261,6 +261,8 @@ declare const useI18n: () => import("../i18n/translate").TranslationFunction<Rea
261
261
  enter_a_number: string;
262
262
  skip_navigation_menu_label: string;
263
263
  tab_error_tooltip: string;
264
+ non_previewable: string;
265
+ content_load_error: string;
264
266
  assignments: string;
265
267
  article_list_label_a11y: string;
266
268
  article_list_filter_label_a11y: string;
@@ -1 +1 @@
1
- {"version":3,"file":"useI18n.d.ts","sourceRoot":"","sources":["../../src/hooks/useI18n.ts"],"names":[],"mappings":"AAMA;;;GAGG;AACH,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAGZ,CAAC;AAEF,eAAe,OAAO,CAAC"}
1
+ {"version":3,"file":"useI18n.d.ts","sourceRoot":"","sources":["../../src/hooks/useI18n.ts"],"names":[],"mappings":"AAMA;;;GAGG;AACH,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAGZ,CAAC;AAEF,eAAe,OAAO,CAAC"}
@@ -257,6 +257,8 @@ declare const _default: {
257
257
  enter_a_number: string;
258
258
  skip_navigation_menu_label: string;
259
259
  tab_error_tooltip: string;
260
+ non_previewable: string;
261
+ content_load_error: string;
260
262
  assignments: string;
261
263
  article_list_label_a11y: string;
262
264
  article_list_filter_label_a11y: string;
@@ -1 +1 @@
1
- {"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAupCE"}
1
+ {"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA2pCE"}
@@ -294,6 +294,9 @@ export default {
294
294
  skip_navigation_menu_label: 'Skip navigation menu',
295
295
  /* core:Tabs */
296
296
  tab_error_tooltip: '{0} has errors',
297
+ /* core:LightBox */
298
+ non_previewable: "{0} file can't be previewed in your browser",
299
+ content_load_error: 'Error loading content',
297
300
  /* work:Assignments */
298
301
  assignments: 'Assignments',
299
302
  /* work:ArticleList */
@@ -1 +1 @@
1
- {"version":3,"file":"default.js","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":"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","sourcesContent":["export default {\n // -----------------------------------------------------------------------------\n // Common translation entries\n // -----------------------------------------------------------------------------\n\n /* Nouns, Types, Terms, Phrases, etc... */\n yes: 'Yes',\n no: 'No',\n filters: 'Filters',\n actions: 'Actions',\n status: 'Status',\n additional_info: 'Additional info',\n search_placeholder_default: 'Search…',\n select_placeholder_default: 'Select…',\n description: 'Description',\n all: 'All',\n default: 'default',\n app_default: 'app default',\n sitewide: 'Sitewide',\n opens_in_a_new_tab: 'Opens in a new tab',\n summary: 'Summary',\n utilities: 'Utilities',\n search: 'Search',\n menu: 'menu',\n new: 'New',\n info: 'info',\n shortcuts: 'Shortcuts',\n\n /* Verbs */\n remove: 'Remove',\n follow: 'Follow',\n unfollow: 'Unfollow',\n add: 'Add',\n cancel: 'Cancel',\n try_again: 'Try again',\n update: 'Update',\n submit: 'Submit',\n apply: 'Apply',\n select: 'Select',\n edit: 'Edit',\n preview: 'Preview',\n decline: 'Decline',\n delete: 'Delete',\n close: 'Close',\n activate: 'Activate',\n expand: 'Expand',\n collapse: 'Collapse',\n accept: 'Accept',\n clear: 'Clear',\n use: 'Use',\n undo: 'Undo',\n redo: 'Redo',\n filter: 'Filter',\n sort: 'Sort',\n group: 'Group',\n go: 'Go',\n configure: 'Configure',\n dismiss: 'Dismiss',\n due: 'Due',\n\n /* Static verb noun */\n view_all: 'View all',\n view_less: 'View less',\n show_more: 'Show more',\n show_less: 'Show less',\n show_all: 'Show all',\n clear_all: 'Clear all',\n link_open_in_tab_text: 'Open in tab',\n edit_details: 'Edit details',\n add_emoji: 'Add emoji',\n create_new: 'Create new',\n submit_and_open: 'Submit and open',\n add_condition: 'Add condition',\n\n /* Dynamic verb {noun} */\n open_noun: 'Open {0}',\n close_noun: 'Close {0}',\n view_all_noun: 'View all {0}',\n view_less_noun: 'View less {0}',\n expand_noun: 'Expand {0}',\n add_noun: 'Add {0}',\n collapse_noun: 'Collapse {0}',\n checked_noun: '{0} checked',\n selected_noun: '{0} selected',\n unselected_noun: '{0} unselected',\n use_input_value: 'Use {0}',\n preview_of_noun: 'Preview of {0}',\n go_to_noun: 'Go to {0}',\n insert_noun: 'Insert {0}',\n delete_noun: 'Delete {0}',\n actions_for: 'Actions for {0}',\n\n /* States */\n edited: 'Edited {0}',\n done: 'Done',\n uploading: 'Uploading',\n loading: 'Loading…',\n loaded: 'Loaded',\n submitting: 'Submitting…',\n no_items: 'No items',\n unknown_error: 'Unknown error',\n image_load_error: 'Error loading image',\n selected: 'Selected',\n selected_count: {\n zero: '{0} selected',\n one: '{0} selected',\n two: '{0} selected',\n few: '{0} selected',\n many: '{0} selected',\n other: '{0} selected'\n },\n completed: 'Completed',\n current: 'Current',\n previous: 'Previous',\n not_started: 'Not started',\n empty_value: 'Empty value',\n no_value: 'no value',\n delivered: 'Delivered',\n sent: 'Sent',\n active: 'Active',\n read_only: 'Read only',\n information: 'Information',\n error: 'Error',\n warning: 'Warning',\n success: 'Success',\n pass: 'Pass',\n fail: 'Fail',\n did_not_ask: 'Did not ask',\n\n /* Date and time */\n day_placeholder: 'DD',\n month_placeholder: 'MM',\n year_placeholder: 'YYYY',\n hour_placeholder: 'hh',\n minute_placeholder: 'mm',\n second_placeholder: 'ss',\n meridiem_value_am: 'AM',\n meridiem_value_pm: 'PM',\n week_placeholder: 'WW',\n seconds_text: 'Seconds',\n minutes_text: 'Minutes',\n hours_text: 'Hours',\n days_text: 'Days',\n time_text: 'Time',\n time_format_info: 'hh:mm:ss',\n date_quarter_q1: 'Q1 {0}',\n date_quarter_q2: 'Q2 {0}',\n date_quarter_q3: 'Q3 {0}',\n date_quarter_q4: 'Q4 {0}',\n time_unit: 'Time Unit',\n\n /* Count based types */\n attachments_count: {\n zero: 'No attachments',\n one: '{0} attachment',\n two: '{0} attachments',\n few: '{0} attachments',\n many: '{0} attachments',\n other: '{0} attachments'\n },\n results_count: {\n zero: 'No results',\n one: '{0} result',\n two: '{0} results',\n few: '{0} results',\n many: '{0} results',\n other: '{0} results'\n },\n recent_results_count: {\n zero: 'No recent results',\n one: '{0} recent result',\n two: '{0} recent results',\n few: '{0} recent results',\n many: '{0} recent results',\n other: '{0} recent results'\n },\n new_emails_count: {\n zero: 'No new emails',\n one: '{0} new email',\n two: '{0} new emails',\n few: '{0} new emails',\n many: '{0} new emails',\n other: '{0} new emails'\n },\n\n /* Pagination */\n pagination_page_of: 'Page {0} of {1}',\n pagination_next: 'Next',\n pagination_prev: 'Previous',\n\n /* Range */\n range_from_datetime: 'Since',\n range_to_datetime: 'Until',\n range_from_numeric: 'From',\n range_to_numeric: 'To',\n\n /* Miscellaneous */\n x_of_y: '{0} of {1}',\n\n // -----------------------------------------------------------------------------\n // {pkg}:{ComponentDir} entries\n // -----------------------------------------------------------------------------\n\n /* core:Link */\n preview_link_instruction: 'Press {0} and p to open this link in a preview.',\n\n /* core:LiveLog */\n polite_announcements: 'Polite Announcements',\n assertive_announcements: 'Assertive Announcements',\n\n /* core:SkipLinks */\n go_to_main_content: 'Go to main content',\n main_content: 'Main content',\n\n /* core:AppShell */\n app_shell_create: 'Create',\n app_shell_open_nav: 'Open navigation menu',\n app_shell_main_navigation_label: 'Main',\n shortcut_NextRegion: 'Next region',\n shortcut_PrevRegion: 'Previous region',\n app_shell_user_account: 'Account',\n\n /* core:ComboBox */\n combobox_open_close: 'Arrow down to open, press escape to close.',\n combobox_search_instructions: 'Start typing to search',\n combobox_open_list_button_a11y: 'Open combobox list',\n combobox_close_list_button_a11y: 'Close combobox list',\n multiselect_instructions: 'Arrow {0} from start to review selected items',\n selected_items: 'Selected items',\n\n /* core:Menu */\n menu_selection_instructions: 'Press enter to select items.',\n menu_item_expand_arrow: '{0}. Arrow right to expand.',\n menu_item_collapse_arrow: 'Arrow left to collapse.',\n menu_item_collapse_shift_space: 'Press shift space to collapse.',\n menu_item_shift_space_expand_collapse: '{0}. Press shift space to expand and collapse.',\n menu_option_list: 'Options list',\n menu_item_count: 'Contains {0} items.',\n menu_collapsed: '{0} collapsed',\n menu_expanded: '{0} expanded.',\n\n /* core:Modal */\n modal_minimize: 'Minimize modal',\n modal_maximize: 'Maximize modal',\n modal_dock: 'Dock Modal',\n modal_close: 'Close modal',\n\n /* core:Datetime */\n selected_date_a11y: 'Selected date:',\n open_calendar_button_a11y: 'Open calendar',\n close_calendar_button_a11y: 'Close calendar',\n open_time_button_a11y: 'Open time picker',\n close_time_button_a11y: 'Close time picker',\n set_current_date_and_time_a11y: 'Set current date and time',\n set_current_date_a11y: 'Set current date',\n clear_current_date_and_time: 'Clear current date and time',\n clear_current_date: 'Clear current date',\n picker_next_month: 'Next month',\n picker_prev_month: 'Previous month',\n picker_jump_to_month_and_year: 'Jump to month and year selection',\n calendar_assist: 'Use cursor keys to navigate dates',\n calendar: 'Calendar',\n choose_date: 'Choose date',\n choose_date_and_time: 'Choose date and time',\n choose_week: 'Choose week',\n\n /* core:Boolean */\n boolean_display_true_label: 'Yes',\n boolean_display_false_label: 'No',\n\n /* core:MultiStepForm */\n step_changed_to_name: 'Step changed to {0}',\n\n /* core:Number */\n measured_in: 'measured in {0}',\n\n /* core:Banner */\n banner_dismiss_button_label_a11y: 'Dismiss banner',\n\n /* core:File */\n file_upload_text_main: 'Drag and drop or {0}',\n file_upload_text_one: 'choose a file',\n file_upload_text_multiple: 'choose files',\n download_file: 'Download {0}',\n open_file_in_new_tab: 'Open {0} in new tab',\n\n /* core:Location */\n my_current_location_button_a11y: 'Use my current location',\n location_input_placeholder: 'Enter a location',\n location_not_found_text: 'Location not found',\n allow_location_permissions_text:\n 'To get current location, allow location permissions for this app',\n\n /* core:SearchInput */\n advanced_search: 'Advanced search',\n select_search_filter: 'Select search filter',\n recent_searches: 'Recent searches',\n clear_search: 'Clear search',\n search_instructions: 'Use arrow keys to move up and down the suggested results.',\n\n /* core:SummaryList */\n action_from_summarylist_heading: '{0} from {1}',\n selected_search_filter: 'Filter search by: {0}',\n\n /* work:CaseView */\n utilities_label: 'Utilities',\n utilities_summary: 'Utilities summary',\n expand_summary: 'Expand summary',\n collapse_summary: 'Collapse summary',\n expand_utilities_panel: 'Expand utilities',\n collapse_utilities_panel: 'Collapse utilities',\n primary_summary_fields: 'Primary summary fields',\n summary_fields: 'Summary fields',\n\n /* core:FormField */\n accept_suggestion_button_a11y: 'Accept AI suggestion',\n reject_suggestion_button_a11y: 'Reject AI suggestion',\n suggestion_info: 'Accept AI suggestion?',\n suggestion_assist:\n 'Either press Enter to accept the AI suggestion or edit the value to reject it',\n\n /* core:Phone Input */\n select_country_code: 'Select country code',\n enter_a_number: 'Enter a number',\n\n /* core:SkipLinks */\n skip_navigation_menu_label: 'Skip navigation menu',\n\n /* core:Tabs */\n tab_error_tooltip: '{0} has errors',\n\n /* work:Assignments */\n assignments: 'Assignments',\n\n /* work:ArticleList */\n article_list_label_a11y: 'Article list',\n article_list_filter_label_a11y: 'Article lists filter',\n article_list_header_submit_label: 'Submit',\n clear_filters: 'Clear filters',\n suggest_article: 'Suggest article',\n suggested: 'Suggested',\n followed: 'Followed',\n buddy: 'Buddy',\n disclaimer: 'Disclaimer',\n references: 'References',\n result_available: 'Result available',\n ask: 'Ask',\n error_message: 'Unable to retrieve data at the moment. Please try again.',\n add_a_comment: 'Add a comment',\n\n /* work:Article */\n article_label_a11y: 'Article',\n article_related_links: 'Related links',\n article_more_like_this: 'More like this',\n article_was_this_helpful: 'Was this helpful?',\n article_thank_you_for_your_feedback: 'Thank you for your feedback',\n article_attachments: 'Attachments',\n likes: 'Likes',\n dislikes: 'Dislikes',\n like: 'Like',\n dislike: 'Dislike',\n\n /* work:CasePreview */\n close_preview: 'Close preview',\n\n /* work:Confirmation */\n confirmation_whats_next: \"What's next\",\n confirmation_open_tasks: 'Open tasks',\n\n /* work:Stakeholders */\n add_stakeholders: 'Add stakeholder',\n edit_stakeholder: 'Edit stakeholder',\n view_stakeholders: 'Stakeholders',\n stakeholders_role: 'Role',\n stakeholders: {\n zero: '{0} stakeholders',\n one: '{0} stakeholder',\n two: '{0} stakeholders',\n few: '{0} stakeholders',\n many: '{0} stakeholders',\n other: '{0} stakeholders'\n },\n\n /* work:Tags */\n edit_tags: 'Edit tags',\n tags: 'Tags',\n\n /* work:Glimpse */\n view_profile: 'View profile',\n\n /* work:Timeline */\n timeline_toolbar_sort_descending: 'Newest first',\n timeline_toolbar_sort_ascending: 'Oldest first',\n timeline_toolbar_group_date: 'By day',\n timeline_toolbar_group_monthyear: 'By month',\n timeline_toolbar_group_quarteryear: 'By quarter',\n timeline_toolbar_group_year: 'By year',\n timeline_toolbar_group_none: 'Off',\n\n /* work:AppAnnouncement */\n app_announcement_dismiss_button_label_a11y: 'Hide until next update',\n app_announcement_details_list_header: 'Announcements',\n app_announcement_whats_new_button_label: \"See what's new\",\n\n /* work:Stages */\n stages_label: 'Case stages',\n stages_see_full_lifecycle: 'See full lifecycle',\n stages_case_lifecycle: '{0} lifecycle',\n stages_default_case_lifecycle: 'Case lifecycle',\n stages_stage_label: 'Stage {0}, {1}',\n stages_description: 'Use horizontal arrow keys to navigate.',\n\n /* work:Predictions */\n predictions: 'Predictions',\n all_predictions: 'All predictions',\n learn_more: 'Learn more',\n\n /* work:TaskList */\n tasks_added: {\n zero: 'No tasks added',\n one: '{0} task added',\n two: '{0} tasks added',\n few: '{0} tasks added',\n many: '{0} tasks added',\n other: '{0} tasks added'\n },\n tasks_removed: {\n zero: 'No tasks removed',\n one: '{0} task removed',\n two: '{0} tasks removed',\n few: '{0} tasks removed',\n many: '{0} tasks removed',\n other: '{0} tasks removed'\n },\n\n /* work:InteractionNotification */\n interaction_time_expired: 'The time to accept the interaction has expired.',\n interaction_time_remaining: {\n zero: 'The time to accept the interaction has expired.',\n one: '{0} second remaining to accept the interaction.',\n two: '{0} seconds remaining to accept the interaction.',\n few: '{0} seconds remaining to accept the interaction.',\n many: '{0} seconds remaining to accept the interaction.',\n other: '{0} seconds remaining to accept the interaction.'\n },\n interaction_shortcut_goto_info: 'Press {0} to review.',\n interaction_shortcut_dismiss_info: 'Press {0} to dismiss.',\n shortcut_GoToIncomingInteraction: 'Go to incoming interaction popup.',\n shortcut_DismissIncomingInteraction: 'Dismiss incoming interaction popup.',\n\n /* rte:RichTextEditor */\n rte_heading_style: 'Heading style',\n rte_heading_style_normal: 'Normal',\n rte_heading_style_heading_1: 'Heading 1',\n rte_heading_style_heading_2: 'Heading 2',\n rte_heading_style_heading_3: 'Heading 3',\n rte_heading_style_heading_4: 'Heading 4',\n rte_bold: 'Bold',\n rte_italic: 'Italic',\n rte_strike_through: 'Strike-through',\n rte_cut: 'Cut',\n rte_copy: 'Copy',\n rte_paste: 'Paste',\n rte_bulleted_list: 'Bulleted list',\n rte_numbered_list: 'Numbered list',\n rte_indent: 'Indent',\n rte_unindent: 'Unindent',\n rte_table: 'Table',\n rte_link: 'Link',\n rte_image: 'Image',\n rte_invalid_html: 'Invalid HTML',\n rte_insert_field: 'Insert field',\n rte_invalid_url: 'Invalid URL',\n rte_change_text_format: 'Change text format to',\n rte_toggle_unordered_list: 'Toggle unordered list',\n rte_indent_selection: 'Indent selection',\n rte_unindent_selection: 'Unindent selection',\n rte_toolbar_instructions: 'Hit tab to enter the editor toolbar',\n rte_text_formatting_toolbar: 'Text formatting toolbar',\n rte_image_description_info: 'Provides an alternate (ALT) description for the visually impaired',\n rte_image_custom_size: 'Custom size',\n rte_width_in_pixels: 'Width (in pixels)',\n rte_height_in_pixels: 'Height (in pixels)',\n rte_image_settings: 'Image settings',\n rte_image_key_command: 'Press enter to edit the image',\n\n /* social:Email */\n expand_forwarded_message: 'Expand forwarded message',\n collapse_forwarded_message: 'Collapse forwarded message',\n copy_to: 'Copy to',\n subject_label: 'Subject: {0}',\n search_results: 'Search results',\n\n /* social:Feed */\n feed_new_post: 'Start a conversation',\n feed_new_post_submit: 'Post',\n feed_new_comment: 'New comment',\n feed_new_comment_submit: 'Comment',\n feed_attach_files: 'Attach files',\n feed_post_actions_menu: 'More',\n feed_edit_post: 'Edit post',\n feed_edit_comment: 'Edit comment',\n feed_context: 'in {0}',\n feed_liked_by: 'Liked by {0}',\n feed_likes: 'Likes',\n feed_private_post: 'Private post',\n feed_public_post: 'Public post',\n feed_recipients: 'Recipients',\n feed_like_label: 'Like',\n feed_unlike_label: 'Unlike',\n feed_post_likes: {\n zero: 'No likes',\n one: '{0} like',\n two: '{0} likes',\n few: '{0} likes',\n many: '{0} likes',\n other: '{0} likes'\n },\n feed_comment_label: 'Comment',\n feed_post_comments: {\n zero: 'No comments',\n one: '{0} comment',\n two: '{0} comments',\n few: '{0} comments',\n many: '{0} comments',\n other: '{0} comments'\n },\n feed_attachments_added: {\n zero: 'No attachments added',\n one: '{0} attachment added',\n two: '{0} attachments added',\n few: '{0} attachments added',\n many: '{0} attachments added',\n other: '{0} attachments added'\n },\n feed_attachments_removed: {\n zero: 'No attachments removed',\n one: '{0} attachment removed',\n two: '{0} attachments removed',\n few: '{0} attachments removed',\n many: '{0} attachments removed',\n other: '{0} attachments removed'\n },\n feed_post_liked: 'Post has been liked',\n feed_post_deliked: 'Post has been deliked',\n feed_post_removed: 'Post has been removed',\n feed_comment_removed: 'Comment has been removed',\n showing_num_of_num: 'Showing {0} of {1}',\n feed_new_post_added: {\n zero: 'No posts added',\n one: '{0} post added',\n two: '{0} posts added',\n few: '{0} posts added',\n many: '{0} posts added',\n other: '{0} posts added'\n },\n new_item_added: {\n zero: 'No items added',\n one: '{0} new item added',\n two: '{0} new items added',\n few: '{0} new items added',\n many: '{0} new items added',\n other: '{0} new items added'\n },\n loading_post: 'Loading post',\n mention_type: 'Mention a {0}',\n\n /* cs:Chat */\n scroll_to_latest_message: 'Scroll to latest message',\n scroll_to_unread_messages: 'Scroll to unread messages',\n suggested_replies_current_of_total: 'Suggested reply {0} of {1}',\n suggested_replies: 'Suggested replies',\n confidence_percentage: '{0}% confidence',\n next_suggested_reply: 'Next suggested reply',\n prev_suggested_reply: 'Previous suggested reply',\n dismiss_suggested_replies: 'Dismiss suggested replies',\n message_sent: 'Message sent',\n temporarilyUnavailable: 'Temporarily unavailable',\n available: 'Available',\n unavailable: 'Unavailable',\n authenticated: 'Authenticated',\n not_authenticated: 'Not authenticated',\n context: 'Context',\n chat_context: 'Chat context',\n bot: 'Bot',\n is_typing: '{0} is typing {1}',\n chat_message_at_timestamp: '{0} at {1}.',\n sender_replied_message: '{0} replied {1}',\n chat_attachments: '{0} with {1} attachments',\n chat_links: '{0} with {1} links',\n chat_message_status: 'Message {0}',\n opened: 'Opened',\n undeliverable: 'Undeliverable',\n new_message: 'New message',\n attachments: 'attachments',\n attachments_x_of_y: 'attachment {0} of {1}',\n edit_current_template: 'Edit suggested reply {0} of {1}',\n send_current_template: 'Send suggested reply {0} of {1}',\n expand_suggested_replies: 'Expand suggested replies',\n collapse_suggested_replies: 'Collapse suggested replies',\n replies_count: '{0} of {1}',\n no_suggestion: 'No suggestions',\n suggestion: 'Suggestion',\n suggested_reply_copied_to_input_field: 'Suggested reply copied to input field',\n dialogue: 'Dialogue',\n pega_genAI: 'Pega GenAI',\n suggest_reply: 'Suggest reply',\n\n /* cs:Email */\n unique_entities: {\n zero: 'No unique entities',\n one: '{0} unique entity',\n two: '{0} unique entities',\n few: '{0} unique entities',\n many: '{0} unique entities',\n other: '{0} unique entities'\n },\n more_count: '{0} more…',\n other_responses: 'Other responses',\n empty_search: 'Enter a search term',\n new_messages: 'New messages',\n earlier_transcripts: 'Earlier transcripts',\n send: 'Send',\n compose_label: 'Compose',\n save_as_draft: 'Save as draft',\n enter_message: 'Enter message',\n download: 'Download',\n close_chat_utility: 'Close chat utility',\n email_account: 'Email account',\n subject: 'Subject',\n to: 'To',\n from: 'From',\n cc: 'Cc',\n bcc: 'Bcc',\n date: 'Date',\n reply: 'Reply',\n reply_all: 'Reply all',\n response_templates: 'Response templates',\n forward: 'Forward',\n email: 'Email',\n email_message: 'Email message',\n email_filters: 'Email filters',\n unread_email_count: '{0} of {1} unread',\n priority: 'Priority',\n inbox: 'Inbox',\n insert: 'Insert',\n email_add_attachment: 'Add attachment, the maximum number of attachments allowed is {0}.',\n email_disable_attachment:\n 'Adding attachments are disabled, the maximum number of attachments allowed is {0}.',\n email_remove_attachment: 'Remove attachment',\n loading_email: 'Loading email',\n draft: {\n zero: 'No drafts',\n one: '{0} draft',\n two: '{0} drafts',\n few: '{0} drafts',\n many: '{0} drafts',\n other: '{0} drafts'\n },\n undelivered: 'Undelivered',\n drafts: 'drafts',\n unread: 'unread',\n\n /* cs:CallControlPanel */\n call_panel_heading: 'Pega call',\n call_panel_make_new_call: 'Make new call',\n call_panel_agent_status: 'Status',\n call_panel_pause_call_menu_item: 'Pause call',\n call_panel_resume_call_menu_item: 'Resume call',\n call_panel_mute_mic_menu_item: 'Mute microphone',\n call_panel_unmute_mic_menu_item: 'Unmute microphone',\n call_panel_call_on_hold: 'On hold {0}',\n call_panel_consult_call_menu_item: 'Consult',\n call_panel_transfer_call_menu_item: 'Transfer',\n call_panel_menu_item_call_only: 'Call only',\n call_panel_menu_item_call_with_interaction: 'Call and interaction',\n call_panel_send_dtmf_menu_item: 'Send DTMF',\n call_panel_conference_call_menu_item: 'Conference',\n call_panel_hangup_call_menu_item: 'Hang up',\n call_panel_contacts_add_to_favorites: 'Add to favorites',\n call_panel_contacts_remove_from_favorites: 'Remove from favorites',\n call_panel_contacts_call_button_label: 'Call',\n call_panel_contacts_list_heading: 'Contacts',\n call_panel_contacts_favorites_heading: 'Favorites',\n call_panel_contacts_dial_pad_heading: 'Dial pad',\n call_panel_new_call_heading: 'New call',\n call_panel_interaction_transfer_heading: 'Transfer initiated',\n call_panel_interaction_transfer_complete_button_label: 'Complete transfer',\n call_panel_incoming_call: 'Incoming call…',\n call_panel_answer_call: 'Answer',\n\n call_panel_conference_heading: 'Conference call',\n call_panel_conference_call_and_interactions_heading: 'Conference by call and interaction',\n call_panel_consult_heading: 'Consult by call',\n call_panel_consult_call_and_interactions_heading: 'Consult by call and interaction',\n call_panel_transfer_heading: 'Transfer call',\n call_panel_transfer_call_and_interactions_heading: 'Transfer call and interaction',\n\n call_panel_conference_submit: 'Conference',\n call_panel_transfer_submit: 'Transfer',\n call_panel_consult_submit: 'Consult',\n\n call_panel_handover_reason_label: 'Reason',\n call_panel_handover_to_label: 'To',\n call_panel_handover_comments_label: 'Comments',\n call_panel_handover_call_option_label: 'Call option',\n call_panel_handover_call_only_option: 'Call only',\n call_panel_handover_call_and_interaction_option: 'Call and interaction',\n call_panel_handover_interaction_label: 'Interaction',\n call_panel_merge_call_menu_item: 'Merge',\n call_panel_handoff_call_menu_item: 'Hand off',\n call_panel_send_dtmf_heading: 'Send DTMF',\n call_panel_expand: 'Expand call control panel',\n call_panel_collapse: 'Collapse call control panel',\n call_panel_nav_label: 'Phone panel',\n\n /* cs:DialPad */\n dial_pad_keyboard: 'Dial pad keyboard',\n dial_pad_phone_number_input_label: 'Phone number input',\n dial_pad_call_button_label: 'Call {0}',\n\n /* cs:TaskManager */\n select_multiple: 'Select multiple',\n dismiss_case: 'Dismiss case',\n task_manager_add_case: 'Add case',\n task_manager_wrap_up: 'Wrap up',\n task_manager_cases: 'Cases',\n add_cases: 'Add cases',\n open_cases: 'Open cases',\n resolved_cases: 'Resolved cases',\n no_picker_items: 'No {0}',\n selected_picker_items: 'Selected {0}',\n no_selected_picker_items: 'No selected {0}',\n search_picker_items: 'Search {0}',\n case_picker_close: 'Close case picker',\n case_manager_overflow_menu: 'All cases',\n continue_label: 'Continue',\n continue_label_a11y: 'Continue with {0}',\n review_label: 'Review',\n review_label_a11y: 'Review {0}',\n dismiss_label: 'Dismiss',\n dismiss_label_a11y: 'Dismiss {0}',\n task_manager_picker_add_label: {\n zero: 'No items to add',\n one: 'Add {0} new item',\n two: 'Add {0} new items',\n few: 'Add {0} new items',\n many: 'Add {0} new items',\n other: 'Add {0} new items'\n },\n show_detected_entities: 'Show detected entities',\n nothing_detected_yet: 'Nothing detected yet',\n ai_detected_entities: 'AI detected entities',\n close_conversation: 'Close conversation',\n shortcut_AddTask: 'Open task picker',\n shortcut_WrapUp: 'Wrap up interaction',\n live_transcript: 'Live transcript',\n open_live_transcript: 'Open live transcript',\n close_live_transcript: 'Close live transcript',\n download_live_transcript: 'Download live transcript',\n transcripts: 'Transcripts',\n verbatim: 'Verbatim',\n dialog: 'Dialog',\n download_transcript: 'Download transcript',\n follow_up_tasks: 'Follow-up tasks',\n add_follow_up_task: 'Add follow-up task',\n agents_utterance: \"Agent's utterance in context\",\n\n /* cs:FollowUpTask */\n due_on: 'Due on {0}',\n\n /* cs:Sentiment */\n sentiment_positive: 'Positive',\n sentiment_negative: 'Negative',\n sentiment_neutral: 'Neutral',\n\n /* cs:IntelligentGuidance */\n no_recommendations: 'No recommendations',\n items_added_to_previous_list: 'Items added to previous list',\n items_added_to_current_list: 'Items added to current list',\n\n /* condition-builder:ConditionBuilder */\n condition_builder_advanced_condition_label: 'Advanced condition',\n condition_builder_advanced_condition_placeholder: 'Advanced condition',\n condition_builder_advanced_mode_button_label: 'Advanced mode',\n condition_builder_basic_mode_button_label: 'Basic mode',\n condition_builder_advanced_mode_button_aria_label: 'Switch to advanced mode',\n condition_builder_basic_mode_button_aria_label: 'Switch to basic mode',\n condition_builder_mode_switch: 'Mode switched',\n condition_builder_advanced_condition_tooltip:\n 'A logical expression representing an advanced condition. Use numbers like 1,2,3,… to represent different condition rows. Use {0} operators and parentheses to construct advanced conditions. Example: {1}',\n condition_builder_condition_select_info_default: 'No selection',\n condition_builder_possible_values_label: 'Values',\n condition_builder_possible_values_error: 'Error retrieving values',\n condition_builder_multi_selection_text_default: 'Select values',\n condition_builder_single_selection_text_default: 'Select value',\n condition_builder_switch_banner_text:\n 'Switching from advanced mode can reset all AND/OR/NOT operators. Do you want to continue?',\n condition_builder_confirm_button_label: 'OK',\n condition_builder_empty_selection_error_text: 'No selection',\n condition_builder_empty_value_text: 'Empty value',\n condition_builder_compare_with: 'Compare with {0}',\n condition_builder_compare_with_another_field: 'Another field',\n condition_builder_compare_with_parameter: 'Parameter',\n condition_builder_compare_with_relative_date: 'Relative date',\n condition_builder_compare_with_text_value: 'Text value',\n condition_builder_compare_with_numeric_value: 'Numeric value',\n condition_builder_compare_with_date_value: 'Date value',\n condition_builder_compare_with_time_value: 'Time value',\n condition_builder_invalid_time_period: 'Invalid time period',\n condition_builder_invalid_relative_date: 'Invalid relative date',\n condition_builder_invalid_value: 'Invalid value',\n condition_builder_invalid_values: 'Invalid values',\n condition_builder_invalid_time: 'Invalid time',\n condition_builder_invalid_date: 'Invalid date',\n condition_builder_invalid_number: 'Invalid number',\n condition_builder_invalid_date_range: 'Invalid date range',\n condition_builder_invalid_time_range: 'Invalid time range',\n condition_builder_invalid_number_range: 'Invalid range',\n condition_builder_select_placeholder: 'Select…',\n condition_builder_hour_number_of_day: '{0} (hour of day)',\n condition_builder_rhs_with_time_only_input: 'Rhs with Time only input',\n condition_builder_rhs_with_date_only_input: 'Rhs with Date only input',\n condition_builder_rhs_with_date_time_input: 'Rhs with Date Time input',\n condition_builder_rhs_with_csv_input: 'Rhs with csv input',\n condition_builder_no_selection: 'No selection',\n condition_builder_enter_csv_placeholder: 'Enter comma separated values',\n condition_builder_day_number_of_month: {\n zero: '{0}th day of the month',\n one: '{0}st day of the month',\n two: '{0}nd day of the month',\n few: '{0}rd day of the month',\n many: '{0}th day of the month',\n other: '{0}th day of the month'\n },\n condition_builder_year: 'Year(s)',\n condition_builder_quarter: 'Quarter(s)',\n condition_builder_month: 'Month(s)',\n condition_builder_week: 'Week(s)',\n condition_builder_day: 'Day(s)',\n condition_builder_hour: 'Hour(s)',\n condition_builder_minute: 'Minute(s)',\n condition_builder_second: 'Second(s)',\n condition_builder_date_function_hour_of_day: 'Hour of day',\n condition_builder_date_function_month_of_year: 'Month of year',\n condition_builder_date_function_day_of_month: 'Day of month',\n condition_builder_date_function_day_of_week: 'Day of week',\n condition_builder_date_part: 'Date part',\n condition_builder_current_second: 'Current second',\n condition_builder_current_minute: 'Current minute',\n condition_builder_current_hour: 'Current hour',\n condition_builder_current_day: 'Current day',\n condition_builder_current_week: 'Current week',\n condition_builder_current_month: 'Current month',\n condition_builder_current_quarter: 'Current quarter',\n condition_builder_current_year: 'Current year',\n condition_builder_last_X_seconds: {\n zero: 'Current second',\n one: 'Last second',\n two: 'Last {0} seconds',\n few: 'Last {0} seconds',\n many: 'Last {0} seconds',\n other: 'Last {0} seconds'\n },\n condition_builder_last_X_minutes: {\n zero: 'Current minute',\n one: 'Last minute',\n two: 'Last {0} minutes',\n few: 'Last {0} minutes',\n many: 'Last {0} minutes',\n other: 'Last {0} minutes'\n },\n condition_builder_last_X_hours: {\n zero: 'Current hour',\n one: 'Last hour',\n two: 'Last {0} hours',\n few: 'Last {0} hours',\n many: 'Last {0} hours',\n other: 'Last {0} hours'\n },\n condition_builder_last_X_days: {\n zero: 'Current day',\n one: 'Last day',\n two: 'Last {0} days',\n few: 'Last {0} days',\n many: 'Last {0} days',\n other: 'Last {0} days'\n },\n condition_builder_last_X_weeks: {\n zero: 'Current week',\n one: 'Last week',\n two: 'Last {0} weeks',\n few: 'Last {0} weeks',\n many: 'Last {0} weeks',\n other: 'Last {0} weeks'\n },\n condition_builder_last_X_months: {\n zero: 'Current month',\n one: 'Last month',\n two: 'Last {0} months',\n few: 'Last {0} months',\n many: 'Last {0} months',\n other: 'Last {0} months'\n },\n condition_builder_last_X_quarters: {\n zero: 'Current quarter',\n one: 'Last quarter',\n two: 'Last {0} quarters',\n few: 'Last {0} quarters',\n many: 'Last {0} quarters',\n other: 'Last {0} quarters'\n },\n condition_builder_last_X_years: {\n zero: 'Current year',\n one: 'Last year',\n two: 'Last {0} years',\n few: 'Last {0} years',\n many: 'Last {0} years',\n other: 'Last {0} years'\n },\n condition_builder_next_X_seconds: {\n zero: 'Current second',\n one: 'Next second',\n two: 'Next {0} seconds',\n few: 'Next {0} seconds',\n many: 'Next {0} seconds',\n other: 'Next {0} seconds'\n },\n condition_builder_next_X_minutes: {\n zero: 'Current minute',\n one: 'Next minute',\n two: 'Next {0} minutes',\n few: 'Next {0} minutes',\n many: 'Next {0} minutes',\n other: 'Next {0} minutes'\n },\n condition_builder_next_X_hours: {\n zero: 'Current hour',\n one: 'Next hour',\n two: 'Next {0} hours',\n few: 'Next {0} hours',\n many: 'Next {0} hours',\n other: 'Next {0} hours'\n },\n condition_builder_next_X_days: {\n zero: 'Current day',\n one: 'Next day',\n two: 'Next {0} days',\n few: 'Next {0} days',\n many: 'Next {0} days',\n other: 'Next {0} days'\n },\n condition_builder_next_X_weeks: {\n zero: 'Current week',\n one: 'Next week',\n two: 'Next {0} weeks',\n few: 'Next {0} weeks',\n many: 'Next {0} weeks',\n other: 'Next {0} weeks'\n },\n condition_builder_next_X_months: {\n zero: 'Current month',\n one: 'Next month',\n two: 'Next {0} months',\n few: 'Next {0} months',\n many: 'Next {0} months',\n other: 'Next {0} months'\n },\n condition_builder_next_X_quarters: {\n zero: 'Current quarter',\n one: 'Next quarter',\n two: 'Next {0} quarters',\n few: 'Next {0} quarters',\n many: 'Next {0} quarters',\n other: 'Next {0} quarters'\n },\n condition_builder_next_X_years: {\n zero: 'Current year',\n one: 'Next year',\n two: 'Next {0} years',\n few: 'Next {0} years',\n many: 'Next {0} years',\n other: 'Next {0} years'\n },\n condition_builder_previous_X_seconds: {\n zero: 'Current second',\n one: 'Previous second',\n two: 'Previous {0} seconds',\n few: 'Previous {0} seconds',\n many: 'Previous {0} seconds',\n other: 'Previous {0} seconds'\n },\n condition_builder_previous_X_minutes: {\n zero: 'Current minute',\n one: 'Previous minute',\n two: 'Previous {0} minutes',\n few: 'Previous {0} minutes',\n many: 'Previous {0} minutes',\n other: 'Previous {0} minutes'\n },\n condition_builder_previous_X_hours: {\n zero: 'Current hour',\n one: 'Previous hour',\n two: 'Previous {0} hours',\n few: 'Previous {0} hours',\n many: 'Previous {0} hours',\n other: 'Previous {0} hours'\n },\n condition_builder_previous_X_days: {\n zero: 'Current day',\n one: 'Previous day',\n two: 'Previous {0} days',\n few: 'Previous {0} days',\n many: 'Previous {0} days',\n other: 'Previous {0} days'\n },\n condition_builder_previous_X_weeks: {\n zero: 'Current week',\n one: 'Previous week',\n two: 'Previous {0} weeks',\n few: 'Previous {0} weeks',\n many: 'Previous {0} weeks',\n other: 'Previous {0} weeks'\n },\n condition_builder_previous_X_months: {\n zero: 'Current month',\n one: 'Previous month',\n two: 'Previous {0} months',\n few: 'Previous {0} months',\n many: 'Previous {0} months',\n other: 'Previous {0} months'\n },\n condition_builder_previous_X_quarters: {\n zero: 'Current quarter',\n one: 'Previous quarter',\n two: 'Previous {0} quarters',\n few: 'Previous {0} quarters',\n many: 'Previous {0} quarters',\n other: 'Previous {0} quarters'\n },\n condition_builder_previous_X_years: {\n zero: 'Current year',\n one: 'Previous year',\n two: 'Previous {0} years',\n few: 'Previous {0} years',\n many: 'Previous {0} years',\n other: 'Previous {0} years'\n },\n condition_builder_time_period_label: 'Time period',\n condition_builder_time_period_last: 'Last',\n condition_builder_time_period_current: 'Current',\n condition_builder_time_period_previous: 'Previous',\n condition_builder_time_period_next: 'Next',\n condition_builder_value_label: 'Value',\n condition_builder_field_label: 'Field',\n condition_builder_comparator_label: 'Conditional operator',\n\n /* condition-builder:PromotedFilters */\n promoted_filters_clear_all_button_label: 'Clear all filters',\n\n /* build:AppShell */\n dev_mode: 'Dev mode',\n expand_navigation: 'Expand navigation',\n collapse_navigation: 'Collapse navigation',\n switch_to: 'Switch to…',\n expand_search: 'Expand search',\n collapse_search: 'Collapse search',\n\n /* build:BranchButton */\n branch_with_no_changes: '{0} with no changes',\n branch_with_no_potential_conflicts: '{0} with no potential conflicts and {1} unmerged changes',\n branch_with_potential_conflicts: '{0} with potential conflicts',\n\n /* build:Lifecycle */\n parallel: 'Parallel',\n stage: 'Stage',\n alternate_stage: 'Alternate stage',\n add_stage: 'Add stage',\n add_process: 'Add process',\n add_alternate_stage: 'Add alternate stage',\n stage_name: '{0} stage',\n process_name: '{0} process',\n step_name: '{0} step',\n item_error: '{0} error',\n step_name_error: '{0} step has configuration error',\n stage_name_error: '{0} stage has configuration error',\n process_name_error: '{0} process has configuration error',\n\n /* build:FlowModeller */\n add_node: 'Add node',\n search_nodes: 'Search nodes',\n delete_step: 'This step has multiple outcomes, are you sure want to delete this step?',\n delete_decision_step:\n 'Select outcome that you want to retain. The remaining highlighted outcomes will be deleted',\n delete_step_title: 'Delete step',\n delete_step_outcome: 'Outcome to keep',\n delete_all_outcomes: 'None (delete all outcomes)',\n delete_step_error: 'This step can\\'t be deleted as the outcome selected has a \"Go to\" step.',\n delete_referenced_step_error:\n 'This step can\\'t be deleted as it is referenced by a \"Go to\" step.',\n delete_connector_error:\n 'Connector cannot be deleted unless Goto step is deleted from all branches',\n\n /* build:Workbench */\n zoom_level: 'Zoom level',\n close_configuration_panel: 'Close configuration panel',\n\n /* build:ObjectSelect */\n clear_object_summary: 'Clear {0} selection',\n create_in_new_tab: 'Create new, opens in new tab',\n\n /* build:ExpressionBuilder */\n expression_editor: 'Expression editor',\n output_parameters: 'Output parameters',\n input_parameters: 'Input parameters',\n\n /* build:MobileBuildSummary */\n no_app_build: 'There is no app build',\n build_app: 'Build app',\n build_in_progress: 'Building…',\n rebuild_app: 'Rebuild app',\n download_app: 'Download app',\n qr_code_not_available: 'No QR code available yet',\n qr_code: 'QR code',\n\n /* wss:AppHeader */\n app_header_notifications_empty: 'No notifications',\n app_header_notifications_loading: 'Loading notifications',\n open_app_header_notifications: 'Open notifications',\n open_app_header_drawer: 'Open navigation menu',\n\n /* tools: PreviewShell */\n preview_frame: 'Preview frame',\n open_in_new_window_text: 'Open in new window',\n more_options: 'More options',\n dev_tools: 'dev tools',\n\n /* tools: DevTools */\n active_session_info: 'Debugging for this session is active in another window',\n continue_debugging: 'Continue debugging',\n\n /* Launchpad: IconTiles */\n action_task: 'Action task',\n task_object: 'Task object',\n view_rule: 'View rule',\n system_rule: 'System rule',\n record_rule: 'Record rule',\n portal_rule: 'Portal rule',\n persona_rule: 'Persona rule',\n permission_rule: 'Permission rule',\n live_data_rule: 'Live data rule',\n integration_system_rule: 'Integration system rule',\n insight_rule: 'Insight rule',\n field_rule: 'Field rule',\n data_page_rule: 'Data page rule',\n connector_rule: 'Connector rule',\n configuration_rule: 'Configuration rule',\n authenticate_rule: 'Authenticate rule',\n when_logic: 'When logic',\n validation_logic: 'Validation logic',\n function_logic: 'Function logic',\n decision_step_logic: 'Decision step logic',\n case_wait: 'Case wait object',\n case_stage: 'Case stage object',\n case_sla: 'Case SLA object',\n case_process: 'Case process object',\n case_go_to: 'Case go-to object',\n case_object: 'Case object',\n set_automation: 'Set automation',\n return_automation: 'Return automation',\n for_each_automation: 'For each automation',\n call_automation: 'Call automation',\n append_automation: 'Append automation',\n automation_object: 'Automation object',\n ai_object: 'AI object'\n};\n"]}
1
+ {"version":3,"file":"default.js","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":"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","sourcesContent":["export default {\n // -----------------------------------------------------------------------------\n // Common translation entries\n // -----------------------------------------------------------------------------\n\n /* Nouns, Types, Terms, Phrases, etc... */\n yes: 'Yes',\n no: 'No',\n filters: 'Filters',\n actions: 'Actions',\n status: 'Status',\n additional_info: 'Additional info',\n search_placeholder_default: 'Search…',\n select_placeholder_default: 'Select…',\n description: 'Description',\n all: 'All',\n default: 'default',\n app_default: 'app default',\n sitewide: 'Sitewide',\n opens_in_a_new_tab: 'Opens in a new tab',\n summary: 'Summary',\n utilities: 'Utilities',\n search: 'Search',\n menu: 'menu',\n new: 'New',\n info: 'info',\n shortcuts: 'Shortcuts',\n\n /* Verbs */\n remove: 'Remove',\n follow: 'Follow',\n unfollow: 'Unfollow',\n add: 'Add',\n cancel: 'Cancel',\n try_again: 'Try again',\n update: 'Update',\n submit: 'Submit',\n apply: 'Apply',\n select: 'Select',\n edit: 'Edit',\n preview: 'Preview',\n decline: 'Decline',\n delete: 'Delete',\n close: 'Close',\n activate: 'Activate',\n expand: 'Expand',\n collapse: 'Collapse',\n accept: 'Accept',\n clear: 'Clear',\n use: 'Use',\n undo: 'Undo',\n redo: 'Redo',\n filter: 'Filter',\n sort: 'Sort',\n group: 'Group',\n go: 'Go',\n configure: 'Configure',\n dismiss: 'Dismiss',\n due: 'Due',\n\n /* Static verb noun */\n view_all: 'View all',\n view_less: 'View less',\n show_more: 'Show more',\n show_less: 'Show less',\n show_all: 'Show all',\n clear_all: 'Clear all',\n link_open_in_tab_text: 'Open in tab',\n edit_details: 'Edit details',\n add_emoji: 'Add emoji',\n create_new: 'Create new',\n submit_and_open: 'Submit and open',\n add_condition: 'Add condition',\n\n /* Dynamic verb {noun} */\n open_noun: 'Open {0}',\n close_noun: 'Close {0}',\n view_all_noun: 'View all {0}',\n view_less_noun: 'View less {0}',\n expand_noun: 'Expand {0}',\n add_noun: 'Add {0}',\n collapse_noun: 'Collapse {0}',\n checked_noun: '{0} checked',\n selected_noun: '{0} selected',\n unselected_noun: '{0} unselected',\n use_input_value: 'Use {0}',\n preview_of_noun: 'Preview of {0}',\n go_to_noun: 'Go to {0}',\n insert_noun: 'Insert {0}',\n delete_noun: 'Delete {0}',\n actions_for: 'Actions for {0}',\n\n /* States */\n edited: 'Edited {0}',\n done: 'Done',\n uploading: 'Uploading',\n loading: 'Loading…',\n loaded: 'Loaded',\n submitting: 'Submitting…',\n no_items: 'No items',\n unknown_error: 'Unknown error',\n image_load_error: 'Error loading image',\n selected: 'Selected',\n selected_count: {\n zero: '{0} selected',\n one: '{0} selected',\n two: '{0} selected',\n few: '{0} selected',\n many: '{0} selected',\n other: '{0} selected'\n },\n completed: 'Completed',\n current: 'Current',\n previous: 'Previous',\n not_started: 'Not started',\n empty_value: 'Empty value',\n no_value: 'no value',\n delivered: 'Delivered',\n sent: 'Sent',\n active: 'Active',\n read_only: 'Read only',\n information: 'Information',\n error: 'Error',\n warning: 'Warning',\n success: 'Success',\n pass: 'Pass',\n fail: 'Fail',\n did_not_ask: 'Did not ask',\n\n /* Date and time */\n day_placeholder: 'DD',\n month_placeholder: 'MM',\n year_placeholder: 'YYYY',\n hour_placeholder: 'hh',\n minute_placeholder: 'mm',\n second_placeholder: 'ss',\n meridiem_value_am: 'AM',\n meridiem_value_pm: 'PM',\n week_placeholder: 'WW',\n seconds_text: 'Seconds',\n minutes_text: 'Minutes',\n hours_text: 'Hours',\n days_text: 'Days',\n time_text: 'Time',\n time_format_info: 'hh:mm:ss',\n date_quarter_q1: 'Q1 {0}',\n date_quarter_q2: 'Q2 {0}',\n date_quarter_q3: 'Q3 {0}',\n date_quarter_q4: 'Q4 {0}',\n time_unit: 'Time Unit',\n\n /* Count based types */\n attachments_count: {\n zero: 'No attachments',\n one: '{0} attachment',\n two: '{0} attachments',\n few: '{0} attachments',\n many: '{0} attachments',\n other: '{0} attachments'\n },\n results_count: {\n zero: 'No results',\n one: '{0} result',\n two: '{0} results',\n few: '{0} results',\n many: '{0} results',\n other: '{0} results'\n },\n recent_results_count: {\n zero: 'No recent results',\n one: '{0} recent result',\n two: '{0} recent results',\n few: '{0} recent results',\n many: '{0} recent results',\n other: '{0} recent results'\n },\n new_emails_count: {\n zero: 'No new emails',\n one: '{0} new email',\n two: '{0} new emails',\n few: '{0} new emails',\n many: '{0} new emails',\n other: '{0} new emails'\n },\n\n /* Pagination */\n pagination_page_of: 'Page {0} of {1}',\n pagination_next: 'Next',\n pagination_prev: 'Previous',\n\n /* Range */\n range_from_datetime: 'Since',\n range_to_datetime: 'Until',\n range_from_numeric: 'From',\n range_to_numeric: 'To',\n\n /* Miscellaneous */\n x_of_y: '{0} of {1}',\n\n // -----------------------------------------------------------------------------\n // {pkg}:{ComponentDir} entries\n // -----------------------------------------------------------------------------\n\n /* core:Link */\n preview_link_instruction: 'Press {0} and p to open this link in a preview.',\n\n /* core:LiveLog */\n polite_announcements: 'Polite Announcements',\n assertive_announcements: 'Assertive Announcements',\n\n /* core:SkipLinks */\n go_to_main_content: 'Go to main content',\n main_content: 'Main content',\n\n /* core:AppShell */\n app_shell_create: 'Create',\n app_shell_open_nav: 'Open navigation menu',\n app_shell_main_navigation_label: 'Main',\n shortcut_NextRegion: 'Next region',\n shortcut_PrevRegion: 'Previous region',\n app_shell_user_account: 'Account',\n\n /* core:ComboBox */\n combobox_open_close: 'Arrow down to open, press escape to close.',\n combobox_search_instructions: 'Start typing to search',\n combobox_open_list_button_a11y: 'Open combobox list',\n combobox_close_list_button_a11y: 'Close combobox list',\n multiselect_instructions: 'Arrow {0} from start to review selected items',\n selected_items: 'Selected items',\n\n /* core:Menu */\n menu_selection_instructions: 'Press enter to select items.',\n menu_item_expand_arrow: '{0}. Arrow right to expand.',\n menu_item_collapse_arrow: 'Arrow left to collapse.',\n menu_item_collapse_shift_space: 'Press shift space to collapse.',\n menu_item_shift_space_expand_collapse: '{0}. Press shift space to expand and collapse.',\n menu_option_list: 'Options list',\n menu_item_count: 'Contains {0} items.',\n menu_collapsed: '{0} collapsed',\n menu_expanded: '{0} expanded.',\n\n /* core:Modal */\n modal_minimize: 'Minimize modal',\n modal_maximize: 'Maximize modal',\n modal_dock: 'Dock Modal',\n modal_close: 'Close modal',\n\n /* core:Datetime */\n selected_date_a11y: 'Selected date:',\n open_calendar_button_a11y: 'Open calendar',\n close_calendar_button_a11y: 'Close calendar',\n open_time_button_a11y: 'Open time picker',\n close_time_button_a11y: 'Close time picker',\n set_current_date_and_time_a11y: 'Set current date and time',\n set_current_date_a11y: 'Set current date',\n clear_current_date_and_time: 'Clear current date and time',\n clear_current_date: 'Clear current date',\n picker_next_month: 'Next month',\n picker_prev_month: 'Previous month',\n picker_jump_to_month_and_year: 'Jump to month and year selection',\n calendar_assist: 'Use cursor keys to navigate dates',\n calendar: 'Calendar',\n choose_date: 'Choose date',\n choose_date_and_time: 'Choose date and time',\n choose_week: 'Choose week',\n\n /* core:Boolean */\n boolean_display_true_label: 'Yes',\n boolean_display_false_label: 'No',\n\n /* core:MultiStepForm */\n step_changed_to_name: 'Step changed to {0}',\n\n /* core:Number */\n measured_in: 'measured in {0}',\n\n /* core:Banner */\n banner_dismiss_button_label_a11y: 'Dismiss banner',\n\n /* core:File */\n file_upload_text_main: 'Drag and drop or {0}',\n file_upload_text_one: 'choose a file',\n file_upload_text_multiple: 'choose files',\n download_file: 'Download {0}',\n open_file_in_new_tab: 'Open {0} in new tab',\n\n /* core:Location */\n my_current_location_button_a11y: 'Use my current location',\n location_input_placeholder: 'Enter a location',\n location_not_found_text: 'Location not found',\n allow_location_permissions_text:\n 'To get current location, allow location permissions for this app',\n\n /* core:SearchInput */\n advanced_search: 'Advanced search',\n select_search_filter: 'Select search filter',\n recent_searches: 'Recent searches',\n clear_search: 'Clear search',\n search_instructions: 'Use arrow keys to move up and down the suggested results.',\n\n /* core:SummaryList */\n action_from_summarylist_heading: '{0} from {1}',\n selected_search_filter: 'Filter search by: {0}',\n\n /* work:CaseView */\n utilities_label: 'Utilities',\n utilities_summary: 'Utilities summary',\n expand_summary: 'Expand summary',\n collapse_summary: 'Collapse summary',\n expand_utilities_panel: 'Expand utilities',\n collapse_utilities_panel: 'Collapse utilities',\n primary_summary_fields: 'Primary summary fields',\n summary_fields: 'Summary fields',\n\n /* core:FormField */\n accept_suggestion_button_a11y: 'Accept AI suggestion',\n reject_suggestion_button_a11y: 'Reject AI suggestion',\n suggestion_info: 'Accept AI suggestion?',\n suggestion_assist:\n 'Either press Enter to accept the AI suggestion or edit the value to reject it',\n\n /* core:Phone Input */\n select_country_code: 'Select country code',\n enter_a_number: 'Enter a number',\n\n /* core:SkipLinks */\n skip_navigation_menu_label: 'Skip navigation menu',\n\n /* core:Tabs */\n tab_error_tooltip: '{0} has errors',\n\n /* core:LightBox */\n non_previewable: \"{0} file can't be previewed in your browser\",\n content_load_error: 'Error loading content',\n\n /* work:Assignments */\n assignments: 'Assignments',\n\n /* work:ArticleList */\n article_list_label_a11y: 'Article list',\n article_list_filter_label_a11y: 'Article lists filter',\n article_list_header_submit_label: 'Submit',\n clear_filters: 'Clear filters',\n suggest_article: 'Suggest article',\n suggested: 'Suggested',\n followed: 'Followed',\n buddy: 'Buddy',\n disclaimer: 'Disclaimer',\n references: 'References',\n result_available: 'Result available',\n ask: 'Ask',\n error_message: 'Unable to retrieve data at the moment. Please try again.',\n add_a_comment: 'Add a comment',\n\n /* work:Article */\n article_label_a11y: 'Article',\n article_related_links: 'Related links',\n article_more_like_this: 'More like this',\n article_was_this_helpful: 'Was this helpful?',\n article_thank_you_for_your_feedback: 'Thank you for your feedback',\n article_attachments: 'Attachments',\n likes: 'Likes',\n dislikes: 'Dislikes',\n like: 'Like',\n dislike: 'Dislike',\n\n /* work:CasePreview */\n close_preview: 'Close preview',\n\n /* work:Confirmation */\n confirmation_whats_next: \"What's next\",\n confirmation_open_tasks: 'Open tasks',\n\n /* work:Stakeholders */\n add_stakeholders: 'Add stakeholder',\n edit_stakeholder: 'Edit stakeholder',\n view_stakeholders: 'Stakeholders',\n stakeholders_role: 'Role',\n stakeholders: {\n zero: '{0} stakeholders',\n one: '{0} stakeholder',\n two: '{0} stakeholders',\n few: '{0} stakeholders',\n many: '{0} stakeholders',\n other: '{0} stakeholders'\n },\n\n /* work:Tags */\n edit_tags: 'Edit tags',\n tags: 'Tags',\n\n /* work:Glimpse */\n view_profile: 'View profile',\n\n /* work:Timeline */\n timeline_toolbar_sort_descending: 'Newest first',\n timeline_toolbar_sort_ascending: 'Oldest first',\n timeline_toolbar_group_date: 'By day',\n timeline_toolbar_group_monthyear: 'By month',\n timeline_toolbar_group_quarteryear: 'By quarter',\n timeline_toolbar_group_year: 'By year',\n timeline_toolbar_group_none: 'Off',\n\n /* work:AppAnnouncement */\n app_announcement_dismiss_button_label_a11y: 'Hide until next update',\n app_announcement_details_list_header: 'Announcements',\n app_announcement_whats_new_button_label: \"See what's new\",\n\n /* work:Stages */\n stages_label: 'Case stages',\n stages_see_full_lifecycle: 'See full lifecycle',\n stages_case_lifecycle: '{0} lifecycle',\n stages_default_case_lifecycle: 'Case lifecycle',\n stages_stage_label: 'Stage {0}, {1}',\n stages_description: 'Use horizontal arrow keys to navigate.',\n\n /* work:Predictions */\n predictions: 'Predictions',\n all_predictions: 'All predictions',\n learn_more: 'Learn more',\n\n /* work:TaskList */\n tasks_added: {\n zero: 'No tasks added',\n one: '{0} task added',\n two: '{0} tasks added',\n few: '{0} tasks added',\n many: '{0} tasks added',\n other: '{0} tasks added'\n },\n tasks_removed: {\n zero: 'No tasks removed',\n one: '{0} task removed',\n two: '{0} tasks removed',\n few: '{0} tasks removed',\n many: '{0} tasks removed',\n other: '{0} tasks removed'\n },\n\n /* work:InteractionNotification */\n interaction_time_expired: 'The time to accept the interaction has expired.',\n interaction_time_remaining: {\n zero: 'The time to accept the interaction has expired.',\n one: '{0} second remaining to accept the interaction.',\n two: '{0} seconds remaining to accept the interaction.',\n few: '{0} seconds remaining to accept the interaction.',\n many: '{0} seconds remaining to accept the interaction.',\n other: '{0} seconds remaining to accept the interaction.'\n },\n interaction_shortcut_goto_info: 'Press {0} to review.',\n interaction_shortcut_dismiss_info: 'Press {0} to dismiss.',\n shortcut_GoToIncomingInteraction: 'Go to incoming interaction popup.',\n shortcut_DismissIncomingInteraction: 'Dismiss incoming interaction popup.',\n\n /* rte:RichTextEditor */\n rte_heading_style: 'Heading style',\n rte_heading_style_normal: 'Normal',\n rte_heading_style_heading_1: 'Heading 1',\n rte_heading_style_heading_2: 'Heading 2',\n rte_heading_style_heading_3: 'Heading 3',\n rte_heading_style_heading_4: 'Heading 4',\n rte_bold: 'Bold',\n rte_italic: 'Italic',\n rte_strike_through: 'Strike-through',\n rte_cut: 'Cut',\n rte_copy: 'Copy',\n rte_paste: 'Paste',\n rte_bulleted_list: 'Bulleted list',\n rte_numbered_list: 'Numbered list',\n rte_indent: 'Indent',\n rte_unindent: 'Unindent',\n rte_table: 'Table',\n rte_link: 'Link',\n rte_image: 'Image',\n rte_invalid_html: 'Invalid HTML',\n rte_insert_field: 'Insert field',\n rte_invalid_url: 'Invalid URL',\n rte_change_text_format: 'Change text format to',\n rte_toggle_unordered_list: 'Toggle unordered list',\n rte_indent_selection: 'Indent selection',\n rte_unindent_selection: 'Unindent selection',\n rte_toolbar_instructions: 'Hit tab to enter the editor toolbar',\n rte_text_formatting_toolbar: 'Text formatting toolbar',\n rte_image_description_info: 'Provides an alternate (ALT) description for the visually impaired',\n rte_image_custom_size: 'Custom size',\n rte_width_in_pixels: 'Width (in pixels)',\n rte_height_in_pixels: 'Height (in pixels)',\n rte_image_settings: 'Image settings',\n rte_image_key_command: 'Press enter to edit the image',\n\n /* social:Email */\n expand_forwarded_message: 'Expand forwarded message',\n collapse_forwarded_message: 'Collapse forwarded message',\n copy_to: 'Copy to',\n subject_label: 'Subject: {0}',\n search_results: 'Search results',\n\n /* social:Feed */\n feed_new_post: 'Start a conversation',\n feed_new_post_submit: 'Post',\n feed_new_comment: 'New comment',\n feed_new_comment_submit: 'Comment',\n feed_attach_files: 'Attach files',\n feed_post_actions_menu: 'More',\n feed_edit_post: 'Edit post',\n feed_edit_comment: 'Edit comment',\n feed_context: 'in {0}',\n feed_liked_by: 'Liked by {0}',\n feed_likes: 'Likes',\n feed_private_post: 'Private post',\n feed_public_post: 'Public post',\n feed_recipients: 'Recipients',\n feed_like_label: 'Like',\n feed_unlike_label: 'Unlike',\n feed_post_likes: {\n zero: 'No likes',\n one: '{0} like',\n two: '{0} likes',\n few: '{0} likes',\n many: '{0} likes',\n other: '{0} likes'\n },\n feed_comment_label: 'Comment',\n feed_post_comments: {\n zero: 'No comments',\n one: '{0} comment',\n two: '{0} comments',\n few: '{0} comments',\n many: '{0} comments',\n other: '{0} comments'\n },\n feed_attachments_added: {\n zero: 'No attachments added',\n one: '{0} attachment added',\n two: '{0} attachments added',\n few: '{0} attachments added',\n many: '{0} attachments added',\n other: '{0} attachments added'\n },\n feed_attachments_removed: {\n zero: 'No attachments removed',\n one: '{0} attachment removed',\n two: '{0} attachments removed',\n few: '{0} attachments removed',\n many: '{0} attachments removed',\n other: '{0} attachments removed'\n },\n feed_post_liked: 'Post has been liked',\n feed_post_deliked: 'Post has been deliked',\n feed_post_removed: 'Post has been removed',\n feed_comment_removed: 'Comment has been removed',\n showing_num_of_num: 'Showing {0} of {1}',\n feed_new_post_added: {\n zero: 'No posts added',\n one: '{0} post added',\n two: '{0} posts added',\n few: '{0} posts added',\n many: '{0} posts added',\n other: '{0} posts added'\n },\n new_item_added: {\n zero: 'No items added',\n one: '{0} new item added',\n two: '{0} new items added',\n few: '{0} new items added',\n many: '{0} new items added',\n other: '{0} new items added'\n },\n loading_post: 'Loading post',\n mention_type: 'Mention a {0}',\n\n /* cs:Chat */\n scroll_to_latest_message: 'Scroll to latest message',\n scroll_to_unread_messages: 'Scroll to unread messages',\n suggested_replies_current_of_total: 'Suggested reply {0} of {1}',\n suggested_replies: 'Suggested replies',\n confidence_percentage: '{0}% confidence',\n next_suggested_reply: 'Next suggested reply',\n prev_suggested_reply: 'Previous suggested reply',\n dismiss_suggested_replies: 'Dismiss suggested replies',\n message_sent: 'Message sent',\n temporarilyUnavailable: 'Temporarily unavailable',\n available: 'Available',\n unavailable: 'Unavailable',\n authenticated: 'Authenticated',\n not_authenticated: 'Not authenticated',\n context: 'Context',\n chat_context: 'Chat context',\n bot: 'Bot',\n is_typing: '{0} is typing {1}',\n chat_message_at_timestamp: '{0} at {1}.',\n sender_replied_message: '{0} replied {1}',\n chat_attachments: '{0} with {1} attachments',\n chat_links: '{0} with {1} links',\n chat_message_status: 'Message {0}',\n opened: 'Opened',\n undeliverable: 'Undeliverable',\n new_message: 'New message',\n attachments: 'attachments',\n attachments_x_of_y: 'attachment {0} of {1}',\n edit_current_template: 'Edit suggested reply {0} of {1}',\n send_current_template: 'Send suggested reply {0} of {1}',\n expand_suggested_replies: 'Expand suggested replies',\n collapse_suggested_replies: 'Collapse suggested replies',\n replies_count: '{0} of {1}',\n no_suggestion: 'No suggestions',\n suggestion: 'Suggestion',\n suggested_reply_copied_to_input_field: 'Suggested reply copied to input field',\n dialogue: 'Dialogue',\n pega_genAI: 'Pega GenAI',\n suggest_reply: 'Suggest reply',\n\n /* cs:Email */\n unique_entities: {\n zero: 'No unique entities',\n one: '{0} unique entity',\n two: '{0} unique entities',\n few: '{0} unique entities',\n many: '{0} unique entities',\n other: '{0} unique entities'\n },\n more_count: '{0} more…',\n other_responses: 'Other responses',\n empty_search: 'Enter a search term',\n new_messages: 'New messages',\n earlier_transcripts: 'Earlier transcripts',\n send: 'Send',\n compose_label: 'Compose',\n save_as_draft: 'Save as draft',\n enter_message: 'Enter message',\n download: 'Download',\n close_chat_utility: 'Close chat utility',\n email_account: 'Email account',\n subject: 'Subject',\n to: 'To',\n from: 'From',\n cc: 'Cc',\n bcc: 'Bcc',\n date: 'Date',\n reply: 'Reply',\n reply_all: 'Reply all',\n response_templates: 'Response templates',\n forward: 'Forward',\n email: 'Email',\n email_message: 'Email message',\n email_filters: 'Email filters',\n unread_email_count: '{0} of {1} unread',\n priority: 'Priority',\n inbox: 'Inbox',\n insert: 'Insert',\n email_add_attachment: 'Add attachment, the maximum number of attachments allowed is {0}.',\n email_disable_attachment:\n 'Adding attachments are disabled, the maximum number of attachments allowed is {0}.',\n email_remove_attachment: 'Remove attachment',\n loading_email: 'Loading email',\n draft: {\n zero: 'No drafts',\n one: '{0} draft',\n two: '{0} drafts',\n few: '{0} drafts',\n many: '{0} drafts',\n other: '{0} drafts'\n },\n undelivered: 'Undelivered',\n drafts: 'drafts',\n unread: 'unread',\n\n /* cs:CallControlPanel */\n call_panel_heading: 'Pega call',\n call_panel_make_new_call: 'Make new call',\n call_panel_agent_status: 'Status',\n call_panel_pause_call_menu_item: 'Pause call',\n call_panel_resume_call_menu_item: 'Resume call',\n call_panel_mute_mic_menu_item: 'Mute microphone',\n call_panel_unmute_mic_menu_item: 'Unmute microphone',\n call_panel_call_on_hold: 'On hold {0}',\n call_panel_consult_call_menu_item: 'Consult',\n call_panel_transfer_call_menu_item: 'Transfer',\n call_panel_menu_item_call_only: 'Call only',\n call_panel_menu_item_call_with_interaction: 'Call and interaction',\n call_panel_send_dtmf_menu_item: 'Send DTMF',\n call_panel_conference_call_menu_item: 'Conference',\n call_panel_hangup_call_menu_item: 'Hang up',\n call_panel_contacts_add_to_favorites: 'Add to favorites',\n call_panel_contacts_remove_from_favorites: 'Remove from favorites',\n call_panel_contacts_call_button_label: 'Call',\n call_panel_contacts_list_heading: 'Contacts',\n call_panel_contacts_favorites_heading: 'Favorites',\n call_panel_contacts_dial_pad_heading: 'Dial pad',\n call_panel_new_call_heading: 'New call',\n call_panel_interaction_transfer_heading: 'Transfer initiated',\n call_panel_interaction_transfer_complete_button_label: 'Complete transfer',\n call_panel_incoming_call: 'Incoming call…',\n call_panel_answer_call: 'Answer',\n\n call_panel_conference_heading: 'Conference call',\n call_panel_conference_call_and_interactions_heading: 'Conference by call and interaction',\n call_panel_consult_heading: 'Consult by call',\n call_panel_consult_call_and_interactions_heading: 'Consult by call and interaction',\n call_panel_transfer_heading: 'Transfer call',\n call_panel_transfer_call_and_interactions_heading: 'Transfer call and interaction',\n\n call_panel_conference_submit: 'Conference',\n call_panel_transfer_submit: 'Transfer',\n call_panel_consult_submit: 'Consult',\n\n call_panel_handover_reason_label: 'Reason',\n call_panel_handover_to_label: 'To',\n call_panel_handover_comments_label: 'Comments',\n call_panel_handover_call_option_label: 'Call option',\n call_panel_handover_call_only_option: 'Call only',\n call_panel_handover_call_and_interaction_option: 'Call and interaction',\n call_panel_handover_interaction_label: 'Interaction',\n call_panel_merge_call_menu_item: 'Merge',\n call_panel_handoff_call_menu_item: 'Hand off',\n call_panel_send_dtmf_heading: 'Send DTMF',\n call_panel_expand: 'Expand call control panel',\n call_panel_collapse: 'Collapse call control panel',\n call_panel_nav_label: 'Phone panel',\n\n /* cs:DialPad */\n dial_pad_keyboard: 'Dial pad keyboard',\n dial_pad_phone_number_input_label: 'Phone number input',\n dial_pad_call_button_label: 'Call {0}',\n\n /* cs:TaskManager */\n select_multiple: 'Select multiple',\n dismiss_case: 'Dismiss case',\n task_manager_add_case: 'Add case',\n task_manager_wrap_up: 'Wrap up',\n task_manager_cases: 'Cases',\n add_cases: 'Add cases',\n open_cases: 'Open cases',\n resolved_cases: 'Resolved cases',\n no_picker_items: 'No {0}',\n selected_picker_items: 'Selected {0}',\n no_selected_picker_items: 'No selected {0}',\n search_picker_items: 'Search {0}',\n case_picker_close: 'Close case picker',\n case_manager_overflow_menu: 'All cases',\n continue_label: 'Continue',\n continue_label_a11y: 'Continue with {0}',\n review_label: 'Review',\n review_label_a11y: 'Review {0}',\n dismiss_label: 'Dismiss',\n dismiss_label_a11y: 'Dismiss {0}',\n task_manager_picker_add_label: {\n zero: 'No items to add',\n one: 'Add {0} new item',\n two: 'Add {0} new items',\n few: 'Add {0} new items',\n many: 'Add {0} new items',\n other: 'Add {0} new items'\n },\n show_detected_entities: 'Show detected entities',\n nothing_detected_yet: 'Nothing detected yet',\n ai_detected_entities: 'AI detected entities',\n close_conversation: 'Close conversation',\n shortcut_AddTask: 'Open task picker',\n shortcut_WrapUp: 'Wrap up interaction',\n live_transcript: 'Live transcript',\n open_live_transcript: 'Open live transcript',\n close_live_transcript: 'Close live transcript',\n download_live_transcript: 'Download live transcript',\n transcripts: 'Transcripts',\n verbatim: 'Verbatim',\n dialog: 'Dialog',\n download_transcript: 'Download transcript',\n follow_up_tasks: 'Follow-up tasks',\n add_follow_up_task: 'Add follow-up task',\n agents_utterance: \"Agent's utterance in context\",\n\n /* cs:FollowUpTask */\n due_on: 'Due on {0}',\n\n /* cs:Sentiment */\n sentiment_positive: 'Positive',\n sentiment_negative: 'Negative',\n sentiment_neutral: 'Neutral',\n\n /* cs:IntelligentGuidance */\n no_recommendations: 'No recommendations',\n items_added_to_previous_list: 'Items added to previous list',\n items_added_to_current_list: 'Items added to current list',\n\n /* condition-builder:ConditionBuilder */\n condition_builder_advanced_condition_label: 'Advanced condition',\n condition_builder_advanced_condition_placeholder: 'Advanced condition',\n condition_builder_advanced_mode_button_label: 'Advanced mode',\n condition_builder_basic_mode_button_label: 'Basic mode',\n condition_builder_advanced_mode_button_aria_label: 'Switch to advanced mode',\n condition_builder_basic_mode_button_aria_label: 'Switch to basic mode',\n condition_builder_mode_switch: 'Mode switched',\n condition_builder_advanced_condition_tooltip:\n 'A logical expression representing an advanced condition. Use numbers like 1,2,3,… to represent different condition rows. Use {0} operators and parentheses to construct advanced conditions. Example: {1}',\n condition_builder_condition_select_info_default: 'No selection',\n condition_builder_possible_values_label: 'Values',\n condition_builder_possible_values_error: 'Error retrieving values',\n condition_builder_multi_selection_text_default: 'Select values',\n condition_builder_single_selection_text_default: 'Select value',\n condition_builder_switch_banner_text:\n 'Switching from advanced mode can reset all AND/OR/NOT operators. Do you want to continue?',\n condition_builder_confirm_button_label: 'OK',\n condition_builder_empty_selection_error_text: 'No selection',\n condition_builder_empty_value_text: 'Empty value',\n condition_builder_compare_with: 'Compare with {0}',\n condition_builder_compare_with_another_field: 'Another field',\n condition_builder_compare_with_parameter: 'Parameter',\n condition_builder_compare_with_relative_date: 'Relative date',\n condition_builder_compare_with_text_value: 'Text value',\n condition_builder_compare_with_numeric_value: 'Numeric value',\n condition_builder_compare_with_date_value: 'Date value',\n condition_builder_compare_with_time_value: 'Time value',\n condition_builder_invalid_time_period: 'Invalid time period',\n condition_builder_invalid_relative_date: 'Invalid relative date',\n condition_builder_invalid_value: 'Invalid value',\n condition_builder_invalid_values: 'Invalid values',\n condition_builder_invalid_time: 'Invalid time',\n condition_builder_invalid_date: 'Invalid date',\n condition_builder_invalid_number: 'Invalid number',\n condition_builder_invalid_date_range: 'Invalid date range',\n condition_builder_invalid_time_range: 'Invalid time range',\n condition_builder_invalid_number_range: 'Invalid range',\n condition_builder_select_placeholder: 'Select…',\n condition_builder_hour_number_of_day: '{0} (hour of day)',\n condition_builder_rhs_with_time_only_input: 'Rhs with Time only input',\n condition_builder_rhs_with_date_only_input: 'Rhs with Date only input',\n condition_builder_rhs_with_date_time_input: 'Rhs with Date Time input',\n condition_builder_rhs_with_csv_input: 'Rhs with csv input',\n condition_builder_no_selection: 'No selection',\n condition_builder_enter_csv_placeholder: 'Enter comma separated values',\n condition_builder_day_number_of_month: {\n zero: '{0}th day of the month',\n one: '{0}st day of the month',\n two: '{0}nd day of the month',\n few: '{0}rd day of the month',\n many: '{0}th day of the month',\n other: '{0}th day of the month'\n },\n condition_builder_year: 'Year(s)',\n condition_builder_quarter: 'Quarter(s)',\n condition_builder_month: 'Month(s)',\n condition_builder_week: 'Week(s)',\n condition_builder_day: 'Day(s)',\n condition_builder_hour: 'Hour(s)',\n condition_builder_minute: 'Minute(s)',\n condition_builder_second: 'Second(s)',\n condition_builder_date_function_hour_of_day: 'Hour of day',\n condition_builder_date_function_month_of_year: 'Month of year',\n condition_builder_date_function_day_of_month: 'Day of month',\n condition_builder_date_function_day_of_week: 'Day of week',\n condition_builder_date_part: 'Date part',\n condition_builder_current_second: 'Current second',\n condition_builder_current_minute: 'Current minute',\n condition_builder_current_hour: 'Current hour',\n condition_builder_current_day: 'Current day',\n condition_builder_current_week: 'Current week',\n condition_builder_current_month: 'Current month',\n condition_builder_current_quarter: 'Current quarter',\n condition_builder_current_year: 'Current year',\n condition_builder_last_X_seconds: {\n zero: 'Current second',\n one: 'Last second',\n two: 'Last {0} seconds',\n few: 'Last {0} seconds',\n many: 'Last {0} seconds',\n other: 'Last {0} seconds'\n },\n condition_builder_last_X_minutes: {\n zero: 'Current minute',\n one: 'Last minute',\n two: 'Last {0} minutes',\n few: 'Last {0} minutes',\n many: 'Last {0} minutes',\n other: 'Last {0} minutes'\n },\n condition_builder_last_X_hours: {\n zero: 'Current hour',\n one: 'Last hour',\n two: 'Last {0} hours',\n few: 'Last {0} hours',\n many: 'Last {0} hours',\n other: 'Last {0} hours'\n },\n condition_builder_last_X_days: {\n zero: 'Current day',\n one: 'Last day',\n two: 'Last {0} days',\n few: 'Last {0} days',\n many: 'Last {0} days',\n other: 'Last {0} days'\n },\n condition_builder_last_X_weeks: {\n zero: 'Current week',\n one: 'Last week',\n two: 'Last {0} weeks',\n few: 'Last {0} weeks',\n many: 'Last {0} weeks',\n other: 'Last {0} weeks'\n },\n condition_builder_last_X_months: {\n zero: 'Current month',\n one: 'Last month',\n two: 'Last {0} months',\n few: 'Last {0} months',\n many: 'Last {0} months',\n other: 'Last {0} months'\n },\n condition_builder_last_X_quarters: {\n zero: 'Current quarter',\n one: 'Last quarter',\n two: 'Last {0} quarters',\n few: 'Last {0} quarters',\n many: 'Last {0} quarters',\n other: 'Last {0} quarters'\n },\n condition_builder_last_X_years: {\n zero: 'Current year',\n one: 'Last year',\n two: 'Last {0} years',\n few: 'Last {0} years',\n many: 'Last {0} years',\n other: 'Last {0} years'\n },\n condition_builder_next_X_seconds: {\n zero: 'Current second',\n one: 'Next second',\n two: 'Next {0} seconds',\n few: 'Next {0} seconds',\n many: 'Next {0} seconds',\n other: 'Next {0} seconds'\n },\n condition_builder_next_X_minutes: {\n zero: 'Current minute',\n one: 'Next minute',\n two: 'Next {0} minutes',\n few: 'Next {0} minutes',\n many: 'Next {0} minutes',\n other: 'Next {0} minutes'\n },\n condition_builder_next_X_hours: {\n zero: 'Current hour',\n one: 'Next hour',\n two: 'Next {0} hours',\n few: 'Next {0} hours',\n many: 'Next {0} hours',\n other: 'Next {0} hours'\n },\n condition_builder_next_X_days: {\n zero: 'Current day',\n one: 'Next day',\n two: 'Next {0} days',\n few: 'Next {0} days',\n many: 'Next {0} days',\n other: 'Next {0} days'\n },\n condition_builder_next_X_weeks: {\n zero: 'Current week',\n one: 'Next week',\n two: 'Next {0} weeks',\n few: 'Next {0} weeks',\n many: 'Next {0} weeks',\n other: 'Next {0} weeks'\n },\n condition_builder_next_X_months: {\n zero: 'Current month',\n one: 'Next month',\n two: 'Next {0} months',\n few: 'Next {0} months',\n many: 'Next {0} months',\n other: 'Next {0} months'\n },\n condition_builder_next_X_quarters: {\n zero: 'Current quarter',\n one: 'Next quarter',\n two: 'Next {0} quarters',\n few: 'Next {0} quarters',\n many: 'Next {0} quarters',\n other: 'Next {0} quarters'\n },\n condition_builder_next_X_years: {\n zero: 'Current year',\n one: 'Next year',\n two: 'Next {0} years',\n few: 'Next {0} years',\n many: 'Next {0} years',\n other: 'Next {0} years'\n },\n condition_builder_previous_X_seconds: {\n zero: 'Current second',\n one: 'Previous second',\n two: 'Previous {0} seconds',\n few: 'Previous {0} seconds',\n many: 'Previous {0} seconds',\n other: 'Previous {0} seconds'\n },\n condition_builder_previous_X_minutes: {\n zero: 'Current minute',\n one: 'Previous minute',\n two: 'Previous {0} minutes',\n few: 'Previous {0} minutes',\n many: 'Previous {0} minutes',\n other: 'Previous {0} minutes'\n },\n condition_builder_previous_X_hours: {\n zero: 'Current hour',\n one: 'Previous hour',\n two: 'Previous {0} hours',\n few: 'Previous {0} hours',\n many: 'Previous {0} hours',\n other: 'Previous {0} hours'\n },\n condition_builder_previous_X_days: {\n zero: 'Current day',\n one: 'Previous day',\n two: 'Previous {0} days',\n few: 'Previous {0} days',\n many: 'Previous {0} days',\n other: 'Previous {0} days'\n },\n condition_builder_previous_X_weeks: {\n zero: 'Current week',\n one: 'Previous week',\n two: 'Previous {0} weeks',\n few: 'Previous {0} weeks',\n many: 'Previous {0} weeks',\n other: 'Previous {0} weeks'\n },\n condition_builder_previous_X_months: {\n zero: 'Current month',\n one: 'Previous month',\n two: 'Previous {0} months',\n few: 'Previous {0} months',\n many: 'Previous {0} months',\n other: 'Previous {0} months'\n },\n condition_builder_previous_X_quarters: {\n zero: 'Current quarter',\n one: 'Previous quarter',\n two: 'Previous {0} quarters',\n few: 'Previous {0} quarters',\n many: 'Previous {0} quarters',\n other: 'Previous {0} quarters'\n },\n condition_builder_previous_X_years: {\n zero: 'Current year',\n one: 'Previous year',\n two: 'Previous {0} years',\n few: 'Previous {0} years',\n many: 'Previous {0} years',\n other: 'Previous {0} years'\n },\n condition_builder_time_period_label: 'Time period',\n condition_builder_time_period_last: 'Last',\n condition_builder_time_period_current: 'Current',\n condition_builder_time_period_previous: 'Previous',\n condition_builder_time_period_next: 'Next',\n condition_builder_value_label: 'Value',\n condition_builder_field_label: 'Field',\n condition_builder_comparator_label: 'Conditional operator',\n\n /* condition-builder:PromotedFilters */\n promoted_filters_clear_all_button_label: 'Clear all filters',\n\n /* build:AppShell */\n dev_mode: 'Dev mode',\n expand_navigation: 'Expand navigation',\n collapse_navigation: 'Collapse navigation',\n switch_to: 'Switch to…',\n expand_search: 'Expand search',\n collapse_search: 'Collapse search',\n\n /* build:BranchButton */\n branch_with_no_changes: '{0} with no changes',\n branch_with_no_potential_conflicts: '{0} with no potential conflicts and {1} unmerged changes',\n branch_with_potential_conflicts: '{0} with potential conflicts',\n\n /* build:Lifecycle */\n parallel: 'Parallel',\n stage: 'Stage',\n alternate_stage: 'Alternate stage',\n add_stage: 'Add stage',\n add_process: 'Add process',\n add_alternate_stage: 'Add alternate stage',\n stage_name: '{0} stage',\n process_name: '{0} process',\n step_name: '{0} step',\n item_error: '{0} error',\n step_name_error: '{0} step has configuration error',\n stage_name_error: '{0} stage has configuration error',\n process_name_error: '{0} process has configuration error',\n\n /* build:FlowModeller */\n add_node: 'Add node',\n search_nodes: 'Search nodes',\n delete_step: 'This step has multiple outcomes, are you sure want to delete this step?',\n delete_decision_step:\n 'Select outcome that you want to retain. The remaining highlighted outcomes will be deleted',\n delete_step_title: 'Delete step',\n delete_step_outcome: 'Outcome to keep',\n delete_all_outcomes: 'None (delete all outcomes)',\n delete_step_error: 'This step can\\'t be deleted as the outcome selected has a \"Go to\" step.',\n delete_referenced_step_error:\n 'This step can\\'t be deleted as it is referenced by a \"Go to\" step.',\n delete_connector_error:\n 'Connector cannot be deleted unless Goto step is deleted from all branches',\n\n /* build:Workbench */\n zoom_level: 'Zoom level',\n close_configuration_panel: 'Close configuration panel',\n\n /* build:ObjectSelect */\n clear_object_summary: 'Clear {0} selection',\n create_in_new_tab: 'Create new, opens in new tab',\n\n /* build:ExpressionBuilder */\n expression_editor: 'Expression editor',\n output_parameters: 'Output parameters',\n input_parameters: 'Input parameters',\n\n /* build:MobileBuildSummary */\n no_app_build: 'There is no app build',\n build_app: 'Build app',\n build_in_progress: 'Building…',\n rebuild_app: 'Rebuild app',\n download_app: 'Download app',\n qr_code_not_available: 'No QR code available yet',\n qr_code: 'QR code',\n\n /* wss:AppHeader */\n app_header_notifications_empty: 'No notifications',\n app_header_notifications_loading: 'Loading notifications',\n open_app_header_notifications: 'Open notifications',\n open_app_header_drawer: 'Open navigation menu',\n\n /* tools: PreviewShell */\n preview_frame: 'Preview frame',\n open_in_new_window_text: 'Open in new window',\n more_options: 'More options',\n dev_tools: 'dev tools',\n\n /* tools: DevTools */\n active_session_info: 'Debugging for this session is active in another window',\n continue_debugging: 'Continue debugging',\n\n /* Launchpad: IconTiles */\n action_task: 'Action task',\n task_object: 'Task object',\n view_rule: 'View rule',\n system_rule: 'System rule',\n record_rule: 'Record rule',\n portal_rule: 'Portal rule',\n persona_rule: 'Persona rule',\n permission_rule: 'Permission rule',\n live_data_rule: 'Live data rule',\n integration_system_rule: 'Integration system rule',\n insight_rule: 'Insight rule',\n field_rule: 'Field rule',\n data_page_rule: 'Data page rule',\n connector_rule: 'Connector rule',\n configuration_rule: 'Configuration rule',\n authenticate_rule: 'Authenticate rule',\n when_logic: 'When logic',\n validation_logic: 'Validation logic',\n function_logic: 'Function logic',\n decision_step_logic: 'Decision step logic',\n case_wait: 'Case wait object',\n case_stage: 'Case stage object',\n case_sla: 'Case SLA object',\n case_process: 'Case process object',\n case_go_to: 'Case go-to object',\n case_object: 'Case object',\n set_automation: 'Set automation',\n return_automation: 'Return automation',\n for_each_automation: 'For each automation',\n call_automation: 'Call automation',\n append_automation: 'Append automation',\n automation_object: 'Automation object',\n ai_object: 'AI object'\n};\n"]}
@@ -262,6 +262,8 @@ export declare const DefaultTranslation: Readonly<Readonly<{
262
262
  enter_a_number: string;
263
263
  skip_navigation_menu_label: string;
264
264
  tab_error_tooltip: string;
265
+ non_previewable: string;
266
+ content_load_error: string;
265
267
  assignments: string;
266
268
  article_list_label_a11y: string;
267
269
  article_list_filter_label_a11y: string;
@@ -1 +1 @@
1
- {"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../src/i18n/i18n.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,WAAW,CAAC;AAE3C,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAClE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE7D,QAAA,MAAM,MAAM,kBAAmB,WAAW,KAAG,SAAS,eAAe,CAEpE,CAAC;AACF,eAAe,MAAM,CAAC;AAEtB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAW,CAAC;AAiB3C,eAAO,MAAM,SAAS,cAAe,MAAM,KAAG,KAAK,GAAG,KAErD,CAAC"}
1
+ {"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../src/i18n/i18n.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,WAAW,CAAC;AAE3C,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAClE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE7D,QAAA,MAAM,MAAM,kBAAmB,WAAW,KAAG,SAAS,eAAe,CAEpE,CAAC;AACF,eAAe,MAAM,CAAC;AAEtB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAW,CAAC;AAiB3C,eAAO,MAAM,SAAS,cAAe,MAAM,KAAG,KAAK,GAAG,KAErD,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pega/cosmos-react-core",
3
- "version": "5.0.0-dev.13.1",
3
+ "version": "5.0.0-dev.15.0",
4
4
  "description": "Cosmos is a visual design system and UI component collection. Its goal is to empower application developers in their pursuit to create engaging and rewarding user experiences.",
5
5
  "repository": {
6
6
  "type": "git",