@cloudscape-design/components 3.0.585 → 3.0.587
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/breadcrumb-group/item/item.d.ts.map +1 -1
- package/breadcrumb-group/item/item.js +2 -11
- package/breadcrumb-group/item/item.js.map +1 -1
- package/breadcrumb-group/item/styles.css.js +8 -9
- package/breadcrumb-group/item/styles.scoped.css +16 -20
- package/breadcrumb-group/item/styles.selectors.js +8 -9
- package/i18n/messages/all.all.js +26 -0
- package/i18n/messages/all.all.json +26 -0
- package/i18n/messages/all.de.js +2 -0
- package/i18n/messages/all.de.json +2 -0
- package/i18n/messages/all.en-GB.js +2 -0
- package/i18n/messages/all.en-GB.json +2 -0
- package/i18n/messages/all.en.js +2 -0
- package/i18n/messages/all.en.json +2 -0
- package/i18n/messages/all.es.js +2 -0
- package/i18n/messages/all.es.json +2 -0
- package/i18n/messages/all.fr.js +2 -0
- package/i18n/messages/all.fr.json +2 -0
- package/i18n/messages/all.id.js +2 -0
- package/i18n/messages/all.id.json +2 -0
- package/i18n/messages/all.it.js +2 -0
- package/i18n/messages/all.it.json +2 -0
- package/i18n/messages/all.ja.js +2 -0
- package/i18n/messages/all.ja.json +2 -0
- package/i18n/messages/all.ko.js +2 -0
- package/i18n/messages/all.ko.json +2 -0
- package/i18n/messages/all.pt-BR.js +2 -0
- package/i18n/messages/all.pt-BR.json +2 -0
- package/i18n/messages/all.tr.js +2 -0
- package/i18n/messages/all.tr.json +2 -0
- package/i18n/messages/all.zh-CN.js +2 -0
- package/i18n/messages/all.zh-CN.json +2 -0
- package/i18n/messages/all.zh-TW.js +2 -0
- package/i18n/messages/all.zh-TW.json +2 -0
- package/i18n/messages-types.d.ts +2 -0
- package/i18n/messages-types.d.ts.map +1 -1
- package/i18n/messages-types.js.map +1 -1
- package/internal/components/tooltip/index.d.ts +7 -0
- package/internal/components/tooltip/index.d.ts.map +1 -0
- package/internal/components/tooltip/index.js +19 -0
- package/internal/components/tooltip/index.js.map +1 -0
- package/internal/components/tooltip/styles.css.js +6 -0
- package/internal/components/tooltip/styles.scoped.css +7 -0
- package/internal/components/tooltip/styles.selectors.js +7 -0
- package/internal/environment.js +1 -1
- package/internal/environment.json +1 -1
- package/internal/manifest.json +1 -1
- package/package.json +1 -1
- package/popover/body.d.ts +1 -1
- package/popover/body.d.ts.map +1 -1
- package/popover/body.js +2 -2
- package/popover/body.js.map +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"item.d.ts","sourceRoot":"","sources":["../../../../src/breadcrumb-group/item/item.tsx"],"names":[],"mappings":";AAGA,OAAO,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"item.d.ts","sourceRoot":"","sources":["../../../../src/breadcrumb-group/item/item.tsx"],"names":[],"mappings":";AAGA,OAAO,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAiG1E,wBAAgB,cAAc,CAAC,CAAC,SAAS,oBAAoB,CAAC,IAAI,EAAE,EAClE,IAAI,EACJ,OAAO,EACP,QAAQ,EACR,WAAW,EACX,MAAc,EACd,YAAoB,GACrB,EAAE,mBAAmB,CAAC,CAAC,CAAC,eA8CxB"}
|
|
@@ -7,13 +7,9 @@ import styles from './styles.css.js';
|
|
|
7
7
|
import clsx from 'clsx';
|
|
8
8
|
import { fireCancelableEvent, isPlainLeftClick } from '../../internal/events';
|
|
9
9
|
import { getEventDetail } from '../internal';
|
|
10
|
-
import { Transition } from '../../internal/components/transition';
|
|
11
|
-
import PopoverContainer from '../../popover/container';
|
|
12
|
-
import PopoverBody from '../../popover/body';
|
|
13
|
-
import Portal from '../../internal/components/portal';
|
|
14
|
-
import popoverStyles from '../../popover/styles.css.js';
|
|
15
10
|
import { DATA_ATTR_FUNNEL_KEY } from '../../internal/analytics/selectors';
|
|
16
11
|
import { FUNNEL_KEY_FUNNEL_NAME } from '../../internal/analytics/selectors';
|
|
12
|
+
import Tooltip from '../../internal/components/tooltip';
|
|
17
13
|
const BreadcrumbItemWithPopover = (_a) => {
|
|
18
14
|
var { item, isLast, anchorAttributes, funnelAttributes } = _a, itemAttributes = __rest(_a, ["item", "isLast", "anchorAttributes", "funnelAttributes"]);
|
|
19
15
|
const [showPopover, setShowPopover] = useState(false);
|
|
@@ -30,12 +26,7 @@ const BreadcrumbItemWithPopover = (_a) => {
|
|
|
30
26
|
}
|
|
31
27
|
return false;
|
|
32
28
|
};
|
|
33
|
-
const popoverContent =
|
|
34
|
-
React.createElement("div", { className: styles['item-popover'] },
|
|
35
|
-
React.createElement(Transition, { in: true }, () => (React.createElement(PopoverContainer, { trackRef: textRef, size: "small", fixedWidth: false, position: "bottom", arrow: position => (React.createElement("div", { className: clsx(popoverStyles.arrow, popoverStyles[`arrow-position-${position}`]) },
|
|
36
|
-
React.createElement("div", { className: popoverStyles['arrow-outer'] }),
|
|
37
|
-
React.createElement("div", { className: popoverStyles['arrow-inner'] }))) },
|
|
38
|
-
React.createElement(PopoverBody, { dismissButton: false, dismissAriaLabel: undefined, onDismiss: () => { }, header: undefined }, item.text)))))));
|
|
29
|
+
const popoverContent = React.createElement(Tooltip, { trackRef: textRef, value: item.text });
|
|
39
30
|
useEffect(() => {
|
|
40
31
|
const onKeyDown = (event) => {
|
|
41
32
|
if (event.key === 'Escape') {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"item.js","sourceRoot":"","sources":["../../../../src/breadcrumb-group/item/item.tsx"],"names":[],"mappings":";AAAA,qEAAqE;AACrE,sCAAsC;AACtC,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAE3D,OAAO,YAAY,MAAM,qBAAqB,CAAC;AAC/C,OAAO,MAAM,MAAM,iBAAiB,CAAC;AACrC,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,mBAAmB,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAC9E,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,EAAE,UAAU,EAAE,MAAM,sCAAsC,CAAC;AAClE,OAAO,gBAAgB,MAAM,yBAAyB,CAAC;AACvD,OAAO,WAAW,MAAM,oBAAoB,CAAC;AAC7C,OAAO,MAAM,MAAM,kCAAkC,CAAC;AACtD,OAAO,aAAa,MAAM,6BAA6B,CAAC;AACxD,OAAO,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,sBAAsB,EAAE,MAAM,oCAAoC,CAAC;AAS5E,MAAM,yBAAyB,GAAG,CAAsC,EAMpC,EAAE,EAAE;QANgC,EACtE,IAAI,EACJ,MAAM,EACN,gBAAgB,EAChB,gBAAgB,OAEkB,EAD/B,cAAc,cALqD,0DAMvE,CADkB;IAEjB,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IACtD,MAAM,OAAO,GAAG,MAAM,CAAc,IAAI,CAAC,CAAC;IAC1C,MAAM,cAAc,GAAG,MAAM,CAAc,IAAI,CAAC,CAAC;IAEjD,MAAM,WAAW,GAAG,CAAC,OAAqC,EAAE,cAA4C,EAAE,EAAE;QAC1G,IAAI,CAAC,OAAO,IAAI,CAAC,cAAc,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE;YAC9E,OAAO,KAAK,CAAC;SACd;QACD,MAAM,gBAAgB,GAAG,cAAc,CAAC,OAAO,CAAC,qBAAqB,EAAE,CAAC,KAAK,CAAC;QAC9E,MAAM,SAAS,GAAG,OAAO,CAAC,OAAO,CAAC,qBAAqB,EAAE,CAAC,KAAK,CAAC;QAChE,IAAI,gBAAgB,GAAG,SAAS,EAAE;YAChC,OAAO,IAAI,CAAC;SACb;QACD,OAAO,KAAK,CAAC;IACf,CAAC,CAAC;IAEF,MAAM,cAAc,GAAG,CACrB,oBAAC,MAAM;QACL,6BAAK,SAAS,EAAE,MAAM,CAAC,cAAc,CAAC;YACpC,oBAAC,UAAU,IAAC,EAAE,EAAE,IAAI,IACjB,GAAG,EAAE,CAAC,CACL,oBAAC,gBAAgB,IACf,QAAQ,EAAE,OAAO,EACjB,IAAI,EAAC,OAAO,EACZ,UAAU,EAAE,KAAK,EACjB,QAAQ,EAAC,QAAQ,EACjB,KAAK,EAAE,QAAQ,CAAC,EAAE,CAAC,CACjB,6BAAK,SAAS,EAAE,IAAI,CAAC,aAAa,CAAC,KAAK,EAAE,aAAa,CAAC,kBAAkB,QAAQ,EAAE,CAAC,CAAC;oBACpF,6BAAK,SAAS,EAAE,aAAa,CAAC,aAAa,CAAC,GAAI;oBAChD,6BAAK,SAAS,EAAE,aAAa,CAAC,aAAa,CAAC,GAAI,CAC5C,CACP;gBAED,oBAAC,WAAW,IAAC,aAAa,EAAE,KAAK,EAAE,gBAAgB,EAAE,SAAS,EAAE,SAAS,EAAE,GAAG,EAAE,GAAE,CAAC,EAAE,MAAM,EAAE,SAAS,IACnG,IAAI,CAAC,IAAI,CACE,CACG,CACpB,CACU,CACT,CACC,CACV,CAAC;IAEF,SAAS,CAAC,GAAG,EAAE;QACb,MAAM,SAAS,GAAG,CAAC,KAAoB,EAAE,EAAE;YACzC,IAAI,KAAK,CAAC,GAAG,KAAK,QAAQ,EAAE;gBAC1B,cAAc,CAAC,KAAK,CAAC,CAAC;aACvB;QACH,CAAC,CAAC;QACF,IAAI,WAAW,EAAE;YACf,QAAQ,CAAC,gBAAgB,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;SACjD;QACD,OAAO,GAAG,EAAE;YACV,QAAQ,CAAC,mBAAmB,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;QACrD,CAAC,CAAC;IACJ,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC;IAElB,OAAO,CACL;QACE,oBAAC,IAAI,kBACH,MAAM,EAAE,MAAM,IACV,cAAc,IAClB,OAAO,EAAE,GAAG,EAAE;gBACZ,WAAW,CAAC,OAAO,EAAE,cAAc,CAAC,IAAI,cAAc,CAAC,IAAI,CAAC,CAAC;YAC/D,CAAC,EACD,MAAM,EAAE,GAAG,EAAE,CAAC,cAAc,CAAC,KAAK,CAAC,EACnC,YAAY,EAAE,GAAG,EAAE;gBACjB,WAAW,CAAC,OAAO,EAAE,cAAc,CAAC,IAAI,cAAc,CAAC,IAAI,CAAC,CAAC;YAC/D,CAAC,EACD,YAAY,EAAE,GAAG,EAAE,CAAC,cAAc,CAAC,KAAK,CAAC,EACzC,gBAAgB,EAAE,gBAAgB;YAElC,8CAAU,gBAAgB,IAAE,SAAS,EAAE,MAAM,CAAC,IAAI,EAAE,GAAG,EAAE,OAAO,KAC7D,IAAI,CAAC,IAAI,CACL;YACP,8BAAM,SAAS,EAAE,MAAM,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,cAAc,IACzD,IAAI,CAAC,IAAI,CACL,CACF;QACN,WAAW,IAAI,cAAc,CAC7B,CACJ,CAAC;AACJ,CAAC,CAAC;AAMF,MAAM,IAAI,GAAG,CAAC,EAAoE,EAAE,EAAE;QAAxE,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,OAAgC,EAA3B,cAAc,cAAvD,0CAAyD,CAAF;IACnE,OAAA,MAAM,CAAC,CAAC,CAAC,CACP,8CAAU,cAAc,GAAG,QAAQ,CAAQ,CAC5C,CAAC,CAAC,CAAC,CACF,2CAAO,cAAc,EAAM,gBAAgB,GACxC,QAAQ,CACP,CACL,CAAA;CAAA,CAAC;AAEJ,MAAM,UAAU,cAAc,CAAsC,EAClE,IAAI,EACJ,OAAO,EACP,QAAQ,EACR,WAAW,EACX,MAAM,GAAG,KAAK,EACd,YAAY,GAAG,KAAK,GACG;IACvB,MAAM,cAAc,GAAG,CAAC,KAAuB,EAAE,EAAE,CAAC,KAAK,CAAC,cAAc,EAAE,CAAC;IAC3E,MAAM,cAAc,GAAG,CAAC,KAAuB,EAAE,EAAE;QACjD,IAAI,gBAAgB,CAAC,KAAK,CAAC,EAAE;YAC3B,mBAAmB,CAAC,QAAQ,EAAE,cAAc,CAAC,IAAI,CAAC,EAAE,KAAK,CAAC,CAAC;SAC5D;QACD,mBAAmB,CAAC,OAAO,EAAE,cAAc,CAAC,IAAI,CAAC,EAAE,KAAK,CAAC,CAAC;IAC5D,CAAC,CAAC;IAEF,MAAM,cAAc,GAAsC;QACxD,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE,YAAY,EAAE,CAAC;KACtE,CAAC;IACF,MAAM,gBAAgB,GAAkD;QACtE,IAAI,EAAE,IAAI,CAAC,IAAI,IAAI,GAAG;QACtB,OAAO,EAAE,MAAM,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,cAAc;KAClD,CAAC;IAEF,MAAM,gBAAgB,GAA2B,EAAE,CAAC;IACpD,IAAI,MAAM,EAAE;QACV,gBAAgB,CAAC,oBAAoB,CAAC,GAAG,sBAAsB,CAAC;KACjE;IAED,OAAO,CACL,6BAAK,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,MAAM,IAAI,MAAM,CAAC,IAAI,CAAC;QAC3D,WAAW,IAAI,YAAY,CAAC,CAAC,CAAC,CAC7B,oBAAC,yBAAyB,kBACxB,IAAI,EAAE,IAAI,EACV,MAAM,EAAE,MAAM,EACd,gBAAgB,EAAE,gBAAgB,EAClC,gBAAgB,EAAE,gBAAgB,IAC9B,cAAc,EAClB,CACH,CAAC,CAAC,CAAC,CACF,oBAAC,IAAI,kBAAC,MAAM,EAAE,MAAM,EAAE,gBAAgB,EAAE,gBAAgB,IAAM,cAAc;YAC1E,8CAAU,gBAAgB,IAAE,SAAS,EAAE,MAAM,CAAC,IAAI,KAC/C,IAAI,CAAC,IAAI,CACL,CACF,CACR;QACA,CAAC,MAAM,CAAC,CAAC,CAAC,CACT,8BAAM,SAAS,EAAE,MAAM,CAAC,IAAI;YAC1B,oBAAC,YAAY,IAAC,IAAI,EAAC,aAAa,GAAG,CAC9B,CACR,CAAC,CAAC,CAAC,IAAI,CACJ,CACP,CAAC;AACJ,CAAC","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nimport React, { useEffect, useRef, useState } from 'react';\nimport { BreadcrumbGroupProps, BreadcrumbItemProps } from '../interfaces';\nimport InternalIcon from '../../icon/internal';\nimport styles from './styles.css.js';\nimport clsx from 'clsx';\nimport { fireCancelableEvent, isPlainLeftClick } from '../../internal/events';\nimport { getEventDetail } from '../internal';\nimport { Transition } from '../../internal/components/transition';\nimport PopoverContainer from '../../popover/container';\nimport PopoverBody from '../../popover/body';\nimport Portal from '../../internal/components/portal';\nimport popoverStyles from '../../popover/styles.css.js';\nimport { DATA_ATTR_FUNNEL_KEY } from '../../internal/analytics/selectors';\nimport { FUNNEL_KEY_FUNNEL_NAME } from '../../internal/analytics/selectors';\n\ntype BreadcrumbItemWithPopoverProps<T extends BreadcrumbGroupProps.Item> = React.HTMLAttributes<HTMLElement> & {\n item: T;\n isLast: boolean;\n anchorAttributes: React.AnchorHTMLAttributes<HTMLAnchorElement>;\n funnelAttributes: Record<string, string>;\n};\n\nconst BreadcrumbItemWithPopover = <T extends BreadcrumbGroupProps.Item>({\n item,\n isLast,\n anchorAttributes,\n funnelAttributes,\n ...itemAttributes\n}: BreadcrumbItemWithPopoverProps<T>) => {\n const [showPopover, setShowPopover] = useState(false);\n const textRef = useRef<HTMLElement>(null);\n const virtualTextRef = useRef<HTMLElement>(null);\n\n const isTruncated = (textRef: React.RefObject<HTMLElement>, virtualTextRef: React.RefObject<HTMLElement>) => {\n if (!textRef || !virtualTextRef || !textRef.current || !virtualTextRef.current) {\n return false;\n }\n const virtualTextWidth = virtualTextRef.current.getBoundingClientRect().width;\n const textWidth = textRef.current.getBoundingClientRect().width;\n if (virtualTextWidth > textWidth) {\n return true;\n }\n return false;\n };\n\n const popoverContent = (\n <Portal>\n <div className={styles['item-popover']}>\n <Transition in={true}>\n {() => (\n <PopoverContainer\n trackRef={textRef}\n size=\"small\"\n fixedWidth={false}\n position=\"bottom\"\n arrow={position => (\n <div className={clsx(popoverStyles.arrow, popoverStyles[`arrow-position-${position}`])}>\n <div className={popoverStyles['arrow-outer']} />\n <div className={popoverStyles['arrow-inner']} />\n </div>\n )}\n >\n <PopoverBody dismissButton={false} dismissAriaLabel={undefined} onDismiss={() => {}} header={undefined}>\n {item.text}\n </PopoverBody>\n </PopoverContainer>\n )}\n </Transition>\n </div>\n </Portal>\n );\n\n useEffect(() => {\n const onKeyDown = (event: KeyboardEvent) => {\n if (event.key === 'Escape') {\n setShowPopover(false);\n }\n };\n if (showPopover) {\n document.addEventListener('keydown', onKeyDown);\n }\n return () => {\n document.removeEventListener('keydown', onKeyDown);\n };\n }, [showPopover]);\n\n return (\n <>\n <Item\n isLast={isLast}\n {...itemAttributes}\n onFocus={() => {\n isTruncated(textRef, virtualTextRef) && setShowPopover(true);\n }}\n onBlur={() => setShowPopover(false)}\n onMouseEnter={() => {\n isTruncated(textRef, virtualTextRef) && setShowPopover(true);\n }}\n onMouseLeave={() => setShowPopover(false)}\n anchorAttributes={anchorAttributes}\n >\n <span {...funnelAttributes} className={styles.text} ref={textRef}>\n {item.text}\n </span>\n <span className={styles['virtual-item']} ref={virtualTextRef}>\n {item.text}\n </span>\n </Item>\n {showPopover && popoverContent}\n </>\n );\n};\n\ntype ItemProps = React.HTMLAttributes<HTMLElement> & {\n anchorAttributes: React.AnchorHTMLAttributes<HTMLAnchorElement>;\n isLast: boolean;\n};\nconst Item = ({ anchorAttributes, children, isLast, ...itemAttributes }: ItemProps) =>\n isLast ? (\n <span {...itemAttributes}>{children}</span>\n ) : (\n <a {...itemAttributes} {...anchorAttributes}>\n {children}\n </a>\n );\n\nexport function BreadcrumbItem<T extends BreadcrumbGroupProps.Item>({\n item,\n onClick,\n onFollow,\n isDisplayed,\n isLast = false,\n isCompressed = false,\n}: BreadcrumbItemProps<T>) {\n const preventDefault = (event: React.MouseEvent) => event.preventDefault();\n const onClickHandler = (event: React.MouseEvent) => {\n if (isPlainLeftClick(event)) {\n fireCancelableEvent(onFollow, getEventDetail(item), event);\n }\n fireCancelableEvent(onClick, getEventDetail(item), event);\n };\n\n const itemAttributes: React.HTMLAttributes<HTMLElement> = {\n className: clsx(styles.anchor, { [styles.compressed]: isCompressed }),\n };\n const anchorAttributes: React.AnchorHTMLAttributes<HTMLAnchorElement> = {\n href: item.href || '#',\n onClick: isLast ? preventDefault : onClickHandler,\n };\n\n const funnelAttributes: Record<string, string> = {};\n if (isLast) {\n funnelAttributes[DATA_ATTR_FUNNEL_KEY] = FUNNEL_KEY_FUNNEL_NAME;\n }\n\n return (\n <div className={clsx(styles.breadcrumb, isLast && styles.last)}>\n {isDisplayed && isCompressed ? (\n <BreadcrumbItemWithPopover\n item={item}\n isLast={isLast}\n anchorAttributes={anchorAttributes}\n funnelAttributes={funnelAttributes}\n {...itemAttributes}\n />\n ) : (\n <Item isLast={isLast} anchorAttributes={anchorAttributes} {...itemAttributes}>\n <span {...funnelAttributes} className={styles.text}>\n {item.text}\n </span>\n </Item>\n )}\n {!isLast ? (\n <span className={styles.icon}>\n <InternalIcon name=\"angle-right\" />\n </span>\n ) : null}\n </div>\n );\n}\n"]}
|
|
1
|
+
{"version":3,"file":"item.js","sourceRoot":"","sources":["../../../../src/breadcrumb-group/item/item.tsx"],"names":[],"mappings":"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","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nimport React, { useEffect, useRef, useState } from 'react';\nimport { BreadcrumbGroupProps, BreadcrumbItemProps } from '../interfaces';\nimport InternalIcon from '../../icon/internal';\nimport styles from './styles.css.js';\nimport clsx from 'clsx';\nimport { fireCancelableEvent, isPlainLeftClick } from '../../internal/events';\nimport { getEventDetail } from '../internal';\n\nimport { DATA_ATTR_FUNNEL_KEY } from '../../internal/analytics/selectors';\nimport { FUNNEL_KEY_FUNNEL_NAME } from '../../internal/analytics/selectors';\nimport Tooltip from '../../internal/components/tooltip';\n\ntype BreadcrumbItemWithPopoverProps<T extends BreadcrumbGroupProps.Item> = React.HTMLAttributes<HTMLElement> & {\n item: T;\n isLast: boolean;\n anchorAttributes: React.AnchorHTMLAttributes<HTMLAnchorElement>;\n funnelAttributes: Record<string, string>;\n};\n\nconst BreadcrumbItemWithPopover = <T extends BreadcrumbGroupProps.Item>({\n item,\n isLast,\n anchorAttributes,\n funnelAttributes,\n ...itemAttributes\n}: BreadcrumbItemWithPopoverProps<T>) => {\n const [showPopover, setShowPopover] = useState(false);\n const textRef = useRef<HTMLElement>(null);\n const virtualTextRef = useRef<HTMLElement>(null);\n\n const isTruncated = (textRef: React.RefObject<HTMLElement>, virtualTextRef: React.RefObject<HTMLElement>) => {\n if (!textRef || !virtualTextRef || !textRef.current || !virtualTextRef.current) {\n return false;\n }\n const virtualTextWidth = virtualTextRef.current.getBoundingClientRect().width;\n const textWidth = textRef.current.getBoundingClientRect().width;\n if (virtualTextWidth > textWidth) {\n return true;\n }\n return false;\n };\n\n const popoverContent = <Tooltip trackRef={textRef} value={item.text} />;\n\n useEffect(() => {\n const onKeyDown = (event: KeyboardEvent) => {\n if (event.key === 'Escape') {\n setShowPopover(false);\n }\n };\n if (showPopover) {\n document.addEventListener('keydown', onKeyDown);\n }\n return () => {\n document.removeEventListener('keydown', onKeyDown);\n };\n }, [showPopover]);\n\n return (\n <>\n <Item\n isLast={isLast}\n {...itemAttributes}\n onFocus={() => {\n isTruncated(textRef, virtualTextRef) && setShowPopover(true);\n }}\n onBlur={() => setShowPopover(false)}\n onMouseEnter={() => {\n isTruncated(textRef, virtualTextRef) && setShowPopover(true);\n }}\n onMouseLeave={() => setShowPopover(false)}\n anchorAttributes={anchorAttributes}\n >\n <span {...funnelAttributes} className={styles.text} ref={textRef}>\n {item.text}\n </span>\n <span className={styles['virtual-item']} ref={virtualTextRef}>\n {item.text}\n </span>\n </Item>\n {showPopover && popoverContent}\n </>\n );\n};\n\ntype ItemProps = React.HTMLAttributes<HTMLElement> & {\n anchorAttributes: React.AnchorHTMLAttributes<HTMLAnchorElement>;\n isLast: boolean;\n};\nconst Item = ({ anchorAttributes, children, isLast, ...itemAttributes }: ItemProps) =>\n isLast ? (\n <span {...itemAttributes}>{children}</span>\n ) : (\n <a {...itemAttributes} {...anchorAttributes}>\n {children}\n </a>\n );\n\nexport function BreadcrumbItem<T extends BreadcrumbGroupProps.Item>({\n item,\n onClick,\n onFollow,\n isDisplayed,\n isLast = false,\n isCompressed = false,\n}: BreadcrumbItemProps<T>) {\n const preventDefault = (event: React.MouseEvent) => event.preventDefault();\n const onClickHandler = (event: React.MouseEvent) => {\n if (isPlainLeftClick(event)) {\n fireCancelableEvent(onFollow, getEventDetail(item), event);\n }\n fireCancelableEvent(onClick, getEventDetail(item), event);\n };\n\n const itemAttributes: React.HTMLAttributes<HTMLElement> = {\n className: clsx(styles.anchor, { [styles.compressed]: isCompressed }),\n };\n const anchorAttributes: React.AnchorHTMLAttributes<HTMLAnchorElement> = {\n href: item.href || '#',\n onClick: isLast ? preventDefault : onClickHandler,\n };\n\n const funnelAttributes: Record<string, string> = {};\n if (isLast) {\n funnelAttributes[DATA_ATTR_FUNNEL_KEY] = FUNNEL_KEY_FUNNEL_NAME;\n }\n\n return (\n <div className={clsx(styles.breadcrumb, isLast && styles.last)}>\n {isDisplayed && isCompressed ? (\n <BreadcrumbItemWithPopover\n item={item}\n isLast={isLast}\n anchorAttributes={anchorAttributes}\n funnelAttributes={funnelAttributes}\n {...itemAttributes}\n />\n ) : (\n <Item isLast={isLast} anchorAttributes={anchorAttributes} {...itemAttributes}>\n <span {...funnelAttributes} className={styles.text}>\n {item.text}\n </span>\n </Item>\n )}\n {!isLast ? (\n <span className={styles.icon}>\n <InternalIcon name=\"angle-right\" />\n </span>\n ) : null}\n </div>\n );\n}\n"]}
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
|
|
2
2
|
import './styles.scoped.css';
|
|
3
3
|
export default {
|
|
4
|
-
"link": "
|
|
5
|
-
"breadcrumb": "
|
|
6
|
-
"icon": "
|
|
7
|
-
"anchor": "
|
|
8
|
-
"last": "
|
|
9
|
-
"compressed": "
|
|
10
|
-
"text": "
|
|
11
|
-
"virtual-item": "awsui_virtual-
|
|
12
|
-
"item-popover": "awsui_item-popover_1kosq_b8bvi_185"
|
|
4
|
+
"link": "awsui_link_1kosq_r0i6w_99",
|
|
5
|
+
"breadcrumb": "awsui_breadcrumb_1kosq_r0i6w_103",
|
|
6
|
+
"icon": "awsui_icon_1kosq_r0i6w_106",
|
|
7
|
+
"anchor": "awsui_anchor_1kosq_r0i6w_111",
|
|
8
|
+
"last": "awsui_last_1kosq_r0i6w_157",
|
|
9
|
+
"compressed": "awsui_compressed_1kosq_r0i6w_167",
|
|
10
|
+
"text": "awsui_text_1kosq_r0i6w_171",
|
|
11
|
+
"virtual-item": "awsui_virtual-item_1kosq_r0i6w_178"
|
|
13
12
|
};
|
|
14
13
|
|
|
@@ -96,19 +96,19 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
96
96
|
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
97
97
|
SPDX-License-Identifier: Apache-2.0
|
|
98
98
|
*/
|
|
99
|
-
.
|
|
99
|
+
.awsui_link_1kosq_r0i6w_99:not(#\9):after {
|
|
100
100
|
display: none;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
.
|
|
103
|
+
.awsui_breadcrumb_1kosq_r0i6w_103:not(#\9) {
|
|
104
104
|
display: flex;
|
|
105
105
|
}
|
|
106
|
-
.
|
|
106
|
+
.awsui_breadcrumb_1kosq_r0i6w_103 > .awsui_icon_1kosq_r0i6w_106:not(#\9) {
|
|
107
107
|
margin-block: 0;
|
|
108
108
|
margin-inline: var(--space-xs-zb16t3, 8px);
|
|
109
109
|
color: var(--color-text-breadcrumb-icon-ma8w3r, #7d8998);
|
|
110
110
|
}
|
|
111
|
-
.
|
|
111
|
+
.awsui_breadcrumb_1kosq_r0i6w_103 > .awsui_anchor_1kosq_r0i6w_111:not(#\9) {
|
|
112
112
|
color: var(--color-text-link-default-latg1a, #0972d3);
|
|
113
113
|
font-weight: inherit;
|
|
114
114
|
letter-spacing: normal;
|
|
@@ -122,30 +122,30 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
122
122
|
text-decoration-thickness: 1px;
|
|
123
123
|
}
|
|
124
124
|
@media (prefers-reduced-motion: reduce) {
|
|
125
|
-
.
|
|
125
|
+
.awsui_breadcrumb_1kosq_r0i6w_103 > .awsui_anchor_1kosq_r0i6w_111:not(#\9) {
|
|
126
126
|
animation: none;
|
|
127
127
|
transition: none;
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
|
-
.awsui-motion-disabled .
|
|
130
|
+
.awsui-motion-disabled .awsui_breadcrumb_1kosq_r0i6w_103 > .awsui_anchor_1kosq_r0i6w_111:not(#\9), .awsui-mode-entering .awsui_breadcrumb_1kosq_r0i6w_103 > .awsui_anchor_1kosq_r0i6w_111:not(#\9) {
|
|
131
131
|
animation: none;
|
|
132
132
|
transition: none;
|
|
133
133
|
}
|
|
134
|
-
.
|
|
134
|
+
.awsui_breadcrumb_1kosq_r0i6w_103 > .awsui_anchor_1kosq_r0i6w_111:not(#\9):hover {
|
|
135
135
|
cursor: pointer;
|
|
136
136
|
color: var(--color-text-link-hover-8j6p14, #033160);
|
|
137
137
|
}
|
|
138
|
-
.
|
|
138
|
+
.awsui_breadcrumb_1kosq_r0i6w_103 > .awsui_anchor_1kosq_r0i6w_111:not(#\9):focus {
|
|
139
139
|
outline: none;
|
|
140
140
|
}
|
|
141
|
-
.
|
|
141
|
+
.awsui_breadcrumb_1kosq_r0i6w_103 > .awsui_anchor_1kosq_r0i6w_111:not(#\9):active {
|
|
142
142
|
color: var(--color-text-link-hover-8j6p14, #033160);
|
|
143
143
|
}
|
|
144
|
-
.
|
|
144
|
+
.awsui_breadcrumb_1kosq_r0i6w_103 > .awsui_anchor_1kosq_r0i6w_111:not(#\9):active, .awsui_breadcrumb_1kosq_r0i6w_103 > .awsui_anchor_1kosq_r0i6w_111:not(#\9):focus, .awsui_breadcrumb_1kosq_r0i6w_103 > .awsui_anchor_1kosq_r0i6w_111:not(#\9):hover {
|
|
145
145
|
text-decoration-line: underline;
|
|
146
146
|
text-decoration-color: currentColor;
|
|
147
147
|
}
|
|
148
|
-
body[data-awsui-focus-visible=true] .
|
|
148
|
+
body[data-awsui-focus-visible=true] .awsui_breadcrumb_1kosq_r0i6w_103 > .awsui_anchor_1kosq_r0i6w_111:not(#\9):focus {
|
|
149
149
|
outline: thin dotted;
|
|
150
150
|
outline: var(--border-link-focus-ring-outline-kkfop6, 0);
|
|
151
151
|
outline-offset: 2px;
|
|
@@ -156,34 +156,30 @@ body[data-awsui-focus-visible=true] .awsui_breadcrumb_1kosq_b8bvi_103 > .awsui_a
|
|
|
156
156
|
border-end-end-radius: var(--border-radius-control-default-focus-ring-u8zbsz, 4px);
|
|
157
157
|
box-shadow: 0 0 0 var(--border-link-focus-ring-shadow-spread-v8hkrl, 2px) var(--color-border-item-focused-b2ntyl, #0972d3);
|
|
158
158
|
}
|
|
159
|
-
.
|
|
159
|
+
.awsui_breadcrumb_1kosq_r0i6w_103.awsui_last_1kosq_r0i6w_157 > .awsui_icon_1kosq_r0i6w_106:not(#\9) {
|
|
160
160
|
display: none;
|
|
161
161
|
}
|
|
162
|
-
.
|
|
162
|
+
.awsui_breadcrumb_1kosq_r0i6w_103.awsui_last_1kosq_r0i6w_157 > .awsui_anchor_1kosq_r0i6w_111:not(#\9) {
|
|
163
163
|
color: var(--color-text-breadcrumb-current-bnqeha, #5f6b7a);
|
|
164
164
|
font-weight: 700;
|
|
165
165
|
text-decoration: none;
|
|
166
166
|
cursor: default;
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
-
.
|
|
169
|
+
.awsui_compressed_1kosq_r0i6w_167:not(#\9) {
|
|
170
170
|
min-inline-size: 0;
|
|
171
171
|
overflow: hidden;
|
|
172
172
|
}
|
|
173
|
-
.
|
|
173
|
+
.awsui_compressed_1kosq_r0i6w_167 > .awsui_text_1kosq_r0i6w_171:not(#\9) {
|
|
174
174
|
overflow: hidden;
|
|
175
175
|
text-overflow: ellipsis;
|
|
176
176
|
white-space: nowrap;
|
|
177
177
|
display: block;
|
|
178
178
|
}
|
|
179
179
|
|
|
180
|
-
.awsui_virtual-
|
|
180
|
+
.awsui_virtual-item_1kosq_r0i6w_178:not(#\9) {
|
|
181
181
|
position: absolute !important;
|
|
182
182
|
inset-block-start: -9999px !important;
|
|
183
183
|
inset-inline-start: -9999px !important;
|
|
184
184
|
visibility: hidden;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.awsui_item-popover_1kosq_b8bvi_185:not(#\9) {
|
|
188
|
-
/* used in tests */
|
|
189
185
|
}
|
|
@@ -2,14 +2,13 @@
|
|
|
2
2
|
// es-module interop with Babel and Typescript
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
module.exports.default = {
|
|
5
|
-
"link": "
|
|
6
|
-
"breadcrumb": "
|
|
7
|
-
"icon": "
|
|
8
|
-
"anchor": "
|
|
9
|
-
"last": "
|
|
10
|
-
"compressed": "
|
|
11
|
-
"text": "
|
|
12
|
-
"virtual-item": "awsui_virtual-
|
|
13
|
-
"item-popover": "awsui_item-popover_1kosq_b8bvi_185"
|
|
5
|
+
"link": "awsui_link_1kosq_r0i6w_99",
|
|
6
|
+
"breadcrumb": "awsui_breadcrumb_1kosq_r0i6w_103",
|
|
7
|
+
"icon": "awsui_icon_1kosq_r0i6w_106",
|
|
8
|
+
"anchor": "awsui_anchor_1kosq_r0i6w_111",
|
|
9
|
+
"last": "awsui_last_1kosq_r0i6w_157",
|
|
10
|
+
"compressed": "awsui_compressed_1kosq_r0i6w_167",
|
|
11
|
+
"text": "awsui_text_1kosq_r0i6w_171",
|
|
12
|
+
"virtual-item": "awsui_virtual-item_1kosq_r0i6w_178"
|
|
14
13
|
};
|
|
15
14
|
|
package/i18n/messages/all.all.js
CHANGED
|
@@ -866,6 +866,8 @@ export default {
|
|
|
866
866
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'Schaltfläche für die Größenänderung' }],
|
|
867
867
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Bearbeitung wird gesendet' }],
|
|
868
868
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Bearbeitung erfolgreich' }],
|
|
869
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Erweitern' }],
|
|
870
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Minimieren' }],
|
|
869
871
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Fehler' }],
|
|
870
872
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'bearbeitbar' }],
|
|
871
873
|
},
|
|
@@ -1930,6 +1932,8 @@ export default {
|
|
|
1930
1932
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'resize button' }],
|
|
1931
1933
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Submitting edit' }],
|
|
1932
1934
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Edit successful' }],
|
|
1935
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Expand' }],
|
|
1936
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Collapse' }],
|
|
1933
1937
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Error' }],
|
|
1934
1938
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'editable' }],
|
|
1935
1939
|
},
|
|
@@ -2988,6 +2992,8 @@ export default {
|
|
|
2988
2992
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'resize button' }],
|
|
2989
2993
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Submitting edit' }],
|
|
2990
2994
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Edit successful' }],
|
|
2995
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Expand' }],
|
|
2996
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Collapse' }],
|
|
2991
2997
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Error' }],
|
|
2992
2998
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'editable' }],
|
|
2993
2999
|
},
|
|
@@ -4058,6 +4064,8 @@ export default {
|
|
|
4058
4064
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'botón de redimensionamiento' }],
|
|
4059
4065
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Envío de edición' }],
|
|
4060
4066
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Se ha editado correctamente' }],
|
|
4067
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Ampliar' }],
|
|
4068
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Contraer' }],
|
|
4061
4069
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Error' }],
|
|
4062
4070
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'editable' }],
|
|
4063
4071
|
},
|
|
@@ -5137,6 +5145,8 @@ export default {
|
|
|
5137
5145
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'bouton de redimensionnement' }],
|
|
5138
5146
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Soumission de modification' }],
|
|
5139
5147
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Modification réussie' }],
|
|
5148
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Élargir' }],
|
|
5149
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Réduire' }],
|
|
5140
5150
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Erreur' }],
|
|
5141
5151
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'modifiable' }],
|
|
5142
5152
|
},
|
|
@@ -6199,6 +6209,8 @@ export default {
|
|
|
6199
6209
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'tombol ubah ukuran' }],
|
|
6200
6210
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Mengirimkan pengeditan' }],
|
|
6201
6211
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Edit berhasil' }],
|
|
6212
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Luaskan' }],
|
|
6213
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Ciutkan' }],
|
|
6202
6214
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Kesalahan' }],
|
|
6203
6215
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'dapat diedit' }],
|
|
6204
6216
|
},
|
|
@@ -7233,6 +7245,8 @@ export default {
|
|
|
7233
7245
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'pulsante di ridimensionamento' }],
|
|
7234
7246
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Invio della modifica in corso' }],
|
|
7235
7247
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Modifica eseguita correttamente' }],
|
|
7248
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Espandi' }],
|
|
7249
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Comprimi' }],
|
|
7236
7250
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Errore' }],
|
|
7237
7251
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'modificabile' }],
|
|
7238
7252
|
},
|
|
@@ -8317,6 +8331,8 @@ export default {
|
|
|
8317
8331
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: '[サイズを変更] ボタン' }],
|
|
8318
8332
|
'ariaLabels.submittingEditText': [{ type: 0, value: '編集を送信中' }],
|
|
8319
8333
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: '編集に成功しました' }],
|
|
8334
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: '展開する' }],
|
|
8335
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: '折りたたむ' }],
|
|
8320
8336
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'エラー' }],
|
|
8321
8337
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: '編集可能' }],
|
|
8322
8338
|
},
|
|
@@ -9371,6 +9387,8 @@ export default {
|
|
|
9371
9387
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: '크기 조정 버튼' }],
|
|
9372
9388
|
'ariaLabels.submittingEditText': [{ type: 0, value: '편집 제출 중' }],
|
|
9373
9389
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: '편집 성공' }],
|
|
9390
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: '확장' }],
|
|
9391
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: '축소' }],
|
|
9374
9392
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: '오류' }],
|
|
9375
9393
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: '편집 가능' }],
|
|
9376
9394
|
},
|
|
@@ -10430,6 +10448,8 @@ export default {
|
|
|
10430
10448
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'botão de redimensionamento' }],
|
|
10431
10449
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Envio de edição' }],
|
|
10432
10450
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'A edição foi bem sucedida' }],
|
|
10451
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Expandir' }],
|
|
10452
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Recolher' }],
|
|
10433
10453
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Erro' }],
|
|
10434
10454
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'editável' }],
|
|
10435
10455
|
},
|
|
@@ -12229,6 +12249,8 @@ export default {
|
|
|
12229
12249
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'yeniden boyutlandırma düğmesi' }],
|
|
12230
12250
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Düzenleme gönderiliyor' }],
|
|
12231
12251
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Düzenleme başarılı' }],
|
|
12252
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Genişlet' }],
|
|
12253
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Daralt' }],
|
|
12232
12254
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Hata' }],
|
|
12233
12255
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'düzenlenebilir' }],
|
|
12234
12256
|
},
|
|
@@ -13283,6 +13305,8 @@ export default {
|
|
|
13283
13305
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: '调整按钮大小' }],
|
|
13284
13306
|
'ariaLabels.submittingEditText': [{ type: 0, value: '正在提交编辑' }],
|
|
13285
13307
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: '编辑成功' }],
|
|
13308
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: '展开' }],
|
|
13309
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: '折叠' }],
|
|
13286
13310
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: '错误' }],
|
|
13287
13311
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: '可编辑' }],
|
|
13288
13312
|
},
|
|
@@ -14331,6 +14355,8 @@ export default {
|
|
|
14331
14355
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: '調整按鈕大小' }],
|
|
14332
14356
|
'ariaLabels.submittingEditText': [{ type: 0, value: '提交編輯' }],
|
|
14333
14357
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: '編輯成功' }],
|
|
14358
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: '展開' }],
|
|
14359
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: '摺疊' }],
|
|
14334
14360
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: '錯誤' }],
|
|
14335
14361
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: '可編輯' }],
|
|
14336
14362
|
},
|
|
@@ -874,6 +874,8 @@
|
|
|
874
874
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "Schaltfläche für die Größenänderung" }],
|
|
875
875
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Bearbeitung wird gesendet" }],
|
|
876
876
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Bearbeitung erfolgreich" }],
|
|
877
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Erweitern" }],
|
|
878
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Minimieren" }],
|
|
877
879
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Fehler" }],
|
|
878
880
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "bearbeitbar" }]
|
|
879
881
|
},
|
|
@@ -1943,6 +1945,8 @@
|
|
|
1943
1945
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "resize button" }],
|
|
1944
1946
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Submitting edit" }],
|
|
1945
1947
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Edit successful" }],
|
|
1948
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Expand" }],
|
|
1949
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Collapse" }],
|
|
1946
1950
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Error" }],
|
|
1947
1951
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "editable" }]
|
|
1948
1952
|
},
|
|
@@ -3002,6 +3006,8 @@
|
|
|
3002
3006
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "resize button" }],
|
|
3003
3007
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Submitting edit" }],
|
|
3004
3008
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Edit successful" }],
|
|
3009
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Expand" }],
|
|
3010
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Collapse" }],
|
|
3005
3011
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Error" }],
|
|
3006
3012
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "editable" }]
|
|
3007
3013
|
},
|
|
@@ -4069,6 +4075,8 @@
|
|
|
4069
4075
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "botón de redimensionamiento" }],
|
|
4070
4076
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Envío de edición" }],
|
|
4071
4077
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Se ha editado correctamente" }],
|
|
4078
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Ampliar" }],
|
|
4079
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Contraer" }],
|
|
4072
4080
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Error" }],
|
|
4073
4081
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "editable" }]
|
|
4074
4082
|
},
|
|
@@ -5153,6 +5161,8 @@
|
|
|
5153
5161
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "bouton de redimensionnement" }],
|
|
5154
5162
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Soumission de modification" }],
|
|
5155
5163
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Modification réussie" }],
|
|
5164
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Élargir" }],
|
|
5165
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Réduire" }],
|
|
5156
5166
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Erreur" }],
|
|
5157
5167
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "modifiable" }]
|
|
5158
5168
|
},
|
|
@@ -6227,6 +6237,8 @@
|
|
|
6227
6237
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "tombol ubah ukuran" }],
|
|
6228
6238
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Mengirimkan pengeditan" }],
|
|
6229
6239
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Edit berhasil" }],
|
|
6240
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Luaskan" }],
|
|
6241
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Ciutkan" }],
|
|
6230
6242
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Kesalahan" }],
|
|
6231
6243
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "dapat diedit" }]
|
|
6232
6244
|
},
|
|
@@ -7260,6 +7272,8 @@
|
|
|
7260
7272
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "pulsante di ridimensionamento" }],
|
|
7261
7273
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Invio della modifica in corso" }],
|
|
7262
7274
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Modifica eseguita correttamente" }],
|
|
7275
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Espandi" }],
|
|
7276
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Comprimi" }],
|
|
7263
7277
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Errore" }],
|
|
7264
7278
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "modificabile" }]
|
|
7265
7279
|
},
|
|
@@ -8350,6 +8364,8 @@
|
|
|
8350
8364
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "[サイズを変更] ボタン" }],
|
|
8351
8365
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "編集を送信中" }],
|
|
8352
8366
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "編集に成功しました" }],
|
|
8367
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "展開する" }],
|
|
8368
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "折りたたむ" }],
|
|
8353
8369
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "エラー" }],
|
|
8354
8370
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "編集可能" }]
|
|
8355
8371
|
},
|
|
@@ -9408,6 +9424,8 @@
|
|
|
9408
9424
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "크기 조정 버튼" }],
|
|
9409
9425
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "편집 제출 중" }],
|
|
9410
9426
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "편집 성공" }],
|
|
9427
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "확장" }],
|
|
9428
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "축소" }],
|
|
9411
9429
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "오류" }],
|
|
9412
9430
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "편집 가능" }]
|
|
9413
9431
|
},
|
|
@@ -10479,6 +10497,8 @@
|
|
|
10479
10497
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "botão de redimensionamento" }],
|
|
10480
10498
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Envio de edição" }],
|
|
10481
10499
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "A edição foi bem sucedida" }],
|
|
10500
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Expandir" }],
|
|
10501
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Recolher" }],
|
|
10482
10502
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Erro" }],
|
|
10483
10503
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "editável" }]
|
|
10484
10504
|
},
|
|
@@ -12288,6 +12308,8 @@
|
|
|
12288
12308
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "yeniden boyutlandırma düğmesi" }],
|
|
12289
12309
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Düzenleme gönderiliyor" }],
|
|
12290
12310
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Düzenleme başarılı" }],
|
|
12311
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Genişlet" }],
|
|
12312
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Daralt" }],
|
|
12291
12313
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Hata" }],
|
|
12292
12314
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "düzenlenebilir" }]
|
|
12293
12315
|
},
|
|
@@ -13341,6 +13363,8 @@
|
|
|
13341
13363
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "调整按钮大小" }],
|
|
13342
13364
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "正在提交编辑" }],
|
|
13343
13365
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "编辑成功" }],
|
|
13366
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "展开" }],
|
|
13367
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "折叠" }],
|
|
13344
13368
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "错误" }],
|
|
13345
13369
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "可编辑" }]
|
|
13346
13370
|
},
|
|
@@ -14388,6 +14412,8 @@
|
|
|
14388
14412
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "調整按鈕大小" }],
|
|
14389
14413
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "提交編輯" }],
|
|
14390
14414
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "編輯成功" }],
|
|
14415
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "展開" }],
|
|
14416
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "摺疊" }],
|
|
14391
14417
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "錯誤" }],
|
|
14392
14418
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "可編輯" }]
|
|
14393
14419
|
},
|
package/i18n/messages/all.de.js
CHANGED
|
@@ -866,6 +866,8 @@ export default {
|
|
|
866
866
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'Schaltfläche für die Größenänderung' }],
|
|
867
867
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Bearbeitung wird gesendet' }],
|
|
868
868
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Bearbeitung erfolgreich' }],
|
|
869
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Erweitern' }],
|
|
870
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Minimieren' }],
|
|
869
871
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Fehler' }],
|
|
870
872
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'bearbeitbar' }],
|
|
871
873
|
},
|
|
@@ -874,6 +874,8 @@
|
|
|
874
874
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "Schaltfläche für die Größenänderung" }],
|
|
875
875
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Bearbeitung wird gesendet" }],
|
|
876
876
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Bearbeitung erfolgreich" }],
|
|
877
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Erweitern" }],
|
|
878
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Minimieren" }],
|
|
877
879
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Fehler" }],
|
|
878
880
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "bearbeitbar" }]
|
|
879
881
|
},
|
|
@@ -850,6 +850,8 @@ export default {
|
|
|
850
850
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'resize button' }],
|
|
851
851
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Submitting edit' }],
|
|
852
852
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Edit successful' }],
|
|
853
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Expand' }],
|
|
854
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Collapse' }],
|
|
853
855
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Error' }],
|
|
854
856
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'editable' }],
|
|
855
857
|
},
|
|
@@ -853,6 +853,8 @@
|
|
|
853
853
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "resize button" }],
|
|
854
854
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Submitting edit" }],
|
|
855
855
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Edit successful" }],
|
|
856
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Expand" }],
|
|
857
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Collapse" }],
|
|
856
858
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Error" }],
|
|
857
859
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "editable" }]
|
|
858
860
|
},
|
package/i18n/messages/all.en.js
CHANGED
|
@@ -850,6 +850,8 @@ export default {
|
|
|
850
850
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'resize button' }],
|
|
851
851
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Submitting edit' }],
|
|
852
852
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Edit successful' }],
|
|
853
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Expand' }],
|
|
854
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Collapse' }],
|
|
853
855
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Error' }],
|
|
854
856
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'editable' }],
|
|
855
857
|
},
|
|
@@ -851,6 +851,8 @@
|
|
|
851
851
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "resize button" }],
|
|
852
852
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Submitting edit" }],
|
|
853
853
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Edit successful" }],
|
|
854
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Expand" }],
|
|
855
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Collapse" }],
|
|
854
856
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Error" }],
|
|
855
857
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "editable" }]
|
|
856
858
|
},
|
package/i18n/messages/all.es.js
CHANGED
|
@@ -862,6 +862,8 @@ export default {
|
|
|
862
862
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'botón de redimensionamiento' }],
|
|
863
863
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Envío de edición' }],
|
|
864
864
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Se ha editado correctamente' }],
|
|
865
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Ampliar' }],
|
|
866
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Contraer' }],
|
|
865
867
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Error' }],
|
|
866
868
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'editable' }],
|
|
867
869
|
},
|
|
@@ -861,6 +861,8 @@
|
|
|
861
861
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "botón de redimensionamiento" }],
|
|
862
862
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Envío de edición" }],
|
|
863
863
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Se ha editado correctamente" }],
|
|
864
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Ampliar" }],
|
|
865
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Contraer" }],
|
|
864
866
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Error" }],
|
|
865
867
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "editable" }]
|
|
866
868
|
},
|
package/i18n/messages/all.fr.js
CHANGED
|
@@ -867,6 +867,8 @@ export default {
|
|
|
867
867
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'bouton de redimensionnement' }],
|
|
868
868
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Soumission de modification' }],
|
|
869
869
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Modification réussie' }],
|
|
870
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Élargir' }],
|
|
871
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Réduire' }],
|
|
870
872
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Erreur' }],
|
|
871
873
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'modifiable' }],
|
|
872
874
|
},
|
|
@@ -868,6 +868,8 @@
|
|
|
868
868
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "bouton de redimensionnement" }],
|
|
869
869
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Soumission de modification" }],
|
|
870
870
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Modification réussie" }],
|
|
871
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Élargir" }],
|
|
872
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Réduire" }],
|
|
871
873
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Erreur" }],
|
|
872
874
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "modifiable" }]
|
|
873
875
|
},
|
package/i18n/messages/all.id.js
CHANGED
|
@@ -831,6 +831,8 @@ export default {
|
|
|
831
831
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'tombol ubah ukuran' }],
|
|
832
832
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Mengirimkan pengeditan' }],
|
|
833
833
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Edit berhasil' }],
|
|
834
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Luaskan' }],
|
|
835
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Ciutkan' }],
|
|
834
836
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Kesalahan' }],
|
|
835
837
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'dapat diedit' }],
|
|
836
838
|
},
|
|
@@ -838,6 +838,8 @@
|
|
|
838
838
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "tombol ubah ukuran" }],
|
|
839
839
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Mengirimkan pengeditan" }],
|
|
840
840
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Edit berhasil" }],
|
|
841
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Luaskan" }],
|
|
842
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Ciutkan" }],
|
|
841
843
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Kesalahan" }],
|
|
842
844
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "dapat diedit" }]
|
|
843
845
|
},
|
package/i18n/messages/all.it.js
CHANGED
|
@@ -822,6 +822,8 @@ export default {
|
|
|
822
822
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'pulsante di ridimensionamento' }],
|
|
823
823
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Invio della modifica in corso' }],
|
|
824
824
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Modifica eseguita correttamente' }],
|
|
825
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Espandi' }],
|
|
826
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Comprimi' }],
|
|
825
827
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Errore' }],
|
|
826
828
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'modificabile' }],
|
|
827
829
|
},
|
|
@@ -823,6 +823,8 @@
|
|
|
823
823
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "pulsante di ridimensionamento" }],
|
|
824
824
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Invio della modifica in corso" }],
|
|
825
825
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Modifica eseguita correttamente" }],
|
|
826
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Espandi" }],
|
|
827
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Comprimi" }],
|
|
826
828
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Errore" }],
|
|
827
829
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "modificabile" }]
|
|
828
830
|
},
|
package/i18n/messages/all.ja.js
CHANGED
|
@@ -870,6 +870,8 @@ export default {
|
|
|
870
870
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: '[サイズを変更] ボタン' }],
|
|
871
871
|
'ariaLabels.submittingEditText': [{ type: 0, value: '編集を送信中' }],
|
|
872
872
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: '編集に成功しました' }],
|
|
873
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: '展開する' }],
|
|
874
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: '折りたたむ' }],
|
|
873
875
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'エラー' }],
|
|
874
876
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: '編集可能' }],
|
|
875
877
|
},
|
|
@@ -873,6 +873,8 @@
|
|
|
873
873
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "[サイズを変更] ボタン" }],
|
|
874
874
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "編集を送信中" }],
|
|
875
875
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "編集に成功しました" }],
|
|
876
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "展開する" }],
|
|
877
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "折りたたむ" }],
|
|
876
878
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "エラー" }],
|
|
877
879
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "編集可能" }]
|
|
878
880
|
},
|
package/i18n/messages/all.ko.js
CHANGED
|
@@ -849,6 +849,8 @@ export default {
|
|
|
849
849
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: '크기 조정 버튼' }],
|
|
850
850
|
'ariaLabels.submittingEditText': [{ type: 0, value: '편집 제출 중' }],
|
|
851
851
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: '편집 성공' }],
|
|
852
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: '확장' }],
|
|
853
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: '축소' }],
|
|
852
854
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: '오류' }],
|
|
853
855
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: '편집 가능' }],
|
|
854
856
|
},
|
|
@@ -854,6 +854,8 @@
|
|
|
854
854
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "크기 조정 버튼" }],
|
|
855
855
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "편집 제출 중" }],
|
|
856
856
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "편집 성공" }],
|
|
857
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "확장" }],
|
|
858
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "축소" }],
|
|
857
859
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "오류" }],
|
|
858
860
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "편집 가능" }]
|
|
859
861
|
},
|
|
@@ -860,6 +860,8 @@ export default {
|
|
|
860
860
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'botão de redimensionamento' }],
|
|
861
861
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Envio de edição' }],
|
|
862
862
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'A edição foi bem sucedida' }],
|
|
863
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Expandir' }],
|
|
864
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Recolher' }],
|
|
863
865
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Erro' }],
|
|
864
866
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'editável' }],
|
|
865
867
|
},
|
|
@@ -866,6 +866,8 @@
|
|
|
866
866
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "botão de redimensionamento" }],
|
|
867
867
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Envio de edição" }],
|
|
868
868
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "A edição foi bem sucedida" }],
|
|
869
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Expandir" }],
|
|
870
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Recolher" }],
|
|
869
871
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Erro" }],
|
|
870
872
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "editável" }]
|
|
871
873
|
},
|
package/i18n/messages/all.tr.js
CHANGED
|
@@ -862,6 +862,8 @@ export default {
|
|
|
862
862
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: 'yeniden boyutlandırma düğmesi' }],
|
|
863
863
|
'ariaLabels.submittingEditText': [{ type: 0, value: 'Düzenleme gönderiliyor' }],
|
|
864
864
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: 'Düzenleme başarılı' }],
|
|
865
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: 'Genişlet' }],
|
|
866
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: 'Daralt' }],
|
|
865
867
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: 'Hata' }],
|
|
866
868
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: 'düzenlenebilir' }],
|
|
867
869
|
},
|
|
@@ -869,6 +869,8 @@
|
|
|
869
869
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "yeniden boyutlandırma düğmesi" }],
|
|
870
870
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "Düzenleme gönderiliyor" }],
|
|
871
871
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "Düzenleme başarılı" }],
|
|
872
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "Genişlet" }],
|
|
873
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "Daralt" }],
|
|
872
874
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "Hata" }],
|
|
873
875
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "düzenlenebilir" }]
|
|
874
876
|
},
|
|
@@ -850,6 +850,8 @@ export default {
|
|
|
850
850
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: '调整按钮大小' }],
|
|
851
851
|
'ariaLabels.submittingEditText': [{ type: 0, value: '正在提交编辑' }],
|
|
852
852
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: '编辑成功' }],
|
|
853
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: '展开' }],
|
|
854
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: '折叠' }],
|
|
853
855
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: '错误' }],
|
|
854
856
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: '可编辑' }],
|
|
855
857
|
},
|
|
@@ -849,6 +849,8 @@
|
|
|
849
849
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "调整按钮大小" }],
|
|
850
850
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "正在提交编辑" }],
|
|
851
851
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "编辑成功" }],
|
|
852
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "展开" }],
|
|
853
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "折叠" }],
|
|
852
854
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "错误" }],
|
|
853
855
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "可编辑" }]
|
|
854
856
|
},
|
|
@@ -850,6 +850,8 @@ export default {
|
|
|
850
850
|
'ariaLabels.resizerRoleDescription': [{ type: 0, value: '調整按鈕大小' }],
|
|
851
851
|
'ariaLabels.submittingEditText': [{ type: 0, value: '提交編輯' }],
|
|
852
852
|
'ariaLabels.successfulEditLabel': [{ type: 0, value: '編輯成功' }],
|
|
853
|
+
'ariaLabels.expandButtonLabel': [{ type: 0, value: '展開' }],
|
|
854
|
+
'ariaLabels.collapseButtonLabel': [{ type: 0, value: '摺疊' }],
|
|
853
855
|
'columnDefinitions.editConfig.errorIconAriaLabel': [{ type: 0, value: '錯誤' }],
|
|
854
856
|
'columnDefinitions.editConfig.editIconAriaLabel': [{ type: 0, value: '可編輯' }],
|
|
855
857
|
},
|
|
@@ -849,6 +849,8 @@
|
|
|
849
849
|
"ariaLabels.resizerRoleDescription": [{ "type": 0, "value": "調整按鈕大小" }],
|
|
850
850
|
"ariaLabels.submittingEditText": [{ "type": 0, "value": "提交編輯" }],
|
|
851
851
|
"ariaLabels.successfulEditLabel": [{ "type": 0, "value": "編輯成功" }],
|
|
852
|
+
"ariaLabels.expandButtonLabel": [{ "type": 0, "value": "展開" }],
|
|
853
|
+
"ariaLabels.collapseButtonLabel": [{ "type": 0, "value": "摺疊" }],
|
|
852
854
|
"columnDefinitions.editConfig.errorIconAriaLabel": [{ "type": 0, "value": "錯誤" }],
|
|
853
855
|
"columnDefinitions.editConfig.editIconAriaLabel": [{ "type": 0, "value": "可編輯" }]
|
|
854
856
|
},
|
package/i18n/messages-types.d.ts
CHANGED
|
@@ -339,6 +339,8 @@ export interface I18nFormatArgTypes {
|
|
|
339
339
|
"ariaLabels.resizerRoleDescription": never;
|
|
340
340
|
"ariaLabels.submittingEditText": never;
|
|
341
341
|
"ariaLabels.successfulEditLabel": never;
|
|
342
|
+
"ariaLabels.expandButtonLabel": never;
|
|
343
|
+
"ariaLabels.collapseButtonLabel": never;
|
|
342
344
|
"columnDefinitions.editConfig.errorIconAriaLabel": never;
|
|
343
345
|
"columnDefinitions.editConfig.editIconAriaLabel": never;
|
|
344
346
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messages-types.d.ts","sourceRoot":"","sources":["../../../src/i18n/messages-types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"messages-types.d.ts","sourceRoot":"","sources":["../../../src/i18n/messages-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messages-types.js","sourceRoot":"","sources":["../../../src/i18n/messages-types.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AACtC,sCAAsC","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\n/* eslint-disable prettier/prettier */\n\n/** Auto-generated argument types based on \"en\" i18n strings. Do not edit manually. */\nexport interface I18nFormatArgTypes {\n \"[charts]\": {\n \"loadingText\": never;\n \"errorText\": never;\n \"recoveryText\": never;\n \"i18nStrings.filterLabel\": never;\n \"i18nStrings.filterPlaceholder\": never;\n \"i18nStrings.legendAriaLabel\": never;\n \"i18nStrings.chartAriaRoleDescription\": never;\n \"i18nStrings.xAxisAriaRoleDescription\": never;\n \"i18nStrings.yAxisAriaRoleDescription\": never;\n }\n \"alert\": {\n \"dismissAriaLabel\": never;\n }\n \"annotation-context\": {\n \"i18nStrings.nextButtonText\": never;\n \"i18nStrings.previousButtonText\": never;\n \"i18nStrings.finishButtonText\": never;\n \"i18nStrings.labelDismissAnnotation\": never;\n \"i18nStrings.stepCounterText\": {\n \"stepNumber\": string | number;\n \"totalStepCount\": string | number;\n }\n \"i18nStrings.taskTitle\": {\n \"taskNumber\": string | number;\n \"taskTitle\": string | number;\n }\n \"i18nStrings.labelHotspot\": {\n \"openState\": string;\n \"stepNumber\": string | number;\n \"totalStepCount\": string | number;\n }\n }\n \"app-layout\": {\n \"ariaLabels.drawers\": never;\n \"ariaLabels.drawersOverflow\": never;\n \"ariaLabels.drawersOverflowWithBadge\": never;\n \"ariaLabels.navigation\": never;\n \"ariaLabels.navigationClose\": never;\n \"ariaLabels.navigationToggle\": never;\n \"ariaLabels.notifications\": never;\n \"ariaLabels.tools\": never;\n \"ariaLabels.toolsClose\": never;\n \"ariaLabels.toolsToggle\": never;\n }\n \"area-chart\": {\n \"i18nStrings.detailTotalLabel\": never;\n }\n \"attribute-editor\": {\n \"removeButtonText\": never;\n }\n \"autosuggest\": {\n \"errorIconAriaLabel\": never;\n \"selectedAriaLabel\": never;\n \"enteredTextLabel\": {\n \"value\": string | number;\n }\n \"recoveryText\": never;\n }\n \"breadcrumb-group\": {\n \"expandAriaLabel\": never;\n }\n \"calendar\": {\n \"nextMonthAriaLabel\": never;\n \"previousMonthAriaLabel\": never;\n \"todayAriaLabel\": never;\n \"i18nStrings.nextYearAriaLabel\": never;\n \"i18nStrings.previousYearAriaLabel\": never;\n \"i18nStrings.currentMonthAriaLabel\": never;\n }\n \"cards\": {\n \"ariaLabels.selectionGroupLabel\": never;\n }\n \"code-editor\": {\n \"i18nStrings.loadingState\": never;\n \"i18nStrings.errorState\": never;\n \"i18nStrings.errorStateRecovery\": never;\n \"i18nStrings.editorGroupAriaLabel\": never;\n \"i18nStrings.statusBarGroupAriaLabel\": never;\n \"i18nStrings.cursorPosition\": {\n \"row\": string | number;\n \"column\": string | number;\n }\n \"i18nStrings.errorsTab\": never;\n \"i18nStrings.warningsTab\": never;\n \"i18nStrings.preferencesButtonAriaLabel\": never;\n \"i18nStrings.paneCloseButtonAriaLabel\": never;\n \"i18nStrings.preferencesModalHeader\": never;\n \"i18nStrings.preferencesModalCancel\": never;\n \"i18nStrings.preferencesModalConfirm\": never;\n \"i18nStrings.preferencesModalWrapLines\": never;\n \"i18nStrings.preferencesModalTheme\": never;\n \"i18nStrings.preferencesModalLightThemes\": never;\n \"i18nStrings.preferencesModalDarkThemes\": never;\n }\n \"collection-preferences\": {\n \"title\": never;\n \"confirmLabel\": never;\n \"cancelLabel\": never;\n \"pageSizePreference.title\": never;\n \"wrapLinesPreference.label\": never;\n \"wrapLinesPreference.description\": never;\n \"stripedRowsPreference.label\": never;\n \"stripedRowsPreference.description\": never;\n \"contentDensityPreference.label\": never;\n \"contentDensityPreference.description\": never;\n \"contentDisplayPreference.title\": never;\n \"contentDisplayPreference.description\": never;\n \"contentDisplayPreference.dragHandleAriaLabel\": never;\n \"contentDisplayPreference.dragHandleAriaDescription\": never;\n \"contentDisplayPreference.liveAnnouncementDndStarted\": {\n \"position\": string | number;\n \"total\": string | number;\n }\n \"contentDisplayPreference.liveAnnouncementDndDiscarded\": never;\n \"contentDisplayPreference.liveAnnouncementDndItemReordered\": {\n \"isInitialPosition\": string;\n \"currentPosition\": string | number;\n \"total\": string | number;\n }\n \"contentDisplayPreference.liveAnnouncementDndItemCommitted\": {\n \"isInitialPosition\": string;\n \"initialPosition\": string | number;\n \"total\": string | number;\n \"finalPosition\": string | number;\n }\n }\n \"copy-to-clipboard\": {\n \"i18nStrings.copyButtonText\": never;\n }\n \"date-range-picker\": {\n \"i18nStrings.relativeModeTitle\": never;\n \"i18nStrings.absoluteModeTitle\": never;\n \"i18nStrings.relativeRangeSelectionHeading\": never;\n \"i18nStrings.cancelButtonLabel\": never;\n \"i18nStrings.clearButtonLabel\": never;\n \"i18nStrings.applyButtonLabel\": never;\n \"i18nStrings.customRelativeRangeOptionLabel\": never;\n \"i18nStrings.customRelativeRangeOptionDescription\": never;\n \"i18nStrings.customRelativeRangeUnitLabel\": never;\n \"i18nStrings.customRelativeRangeDurationLabel\": never;\n \"i18nStrings.customRelativeRangeDurationPlaceholder\": never;\n \"i18nStrings.startDateLabel\": never;\n \"i18nStrings.startTimeLabel\": never;\n \"i18nStrings.endDateLabel\": never;\n \"i18nStrings.endTimeLabel\": never;\n \"i18nStrings.dateTimeConstraintText\": never;\n \"i18nStrings.errorIconAriaLabel\": never;\n \"i18nStrings.renderSelectedAbsoluteRangeAriaLive\": {\n \"startDate\": string | number;\n \"endDate\": string | number;\n }\n \"i18nStrings.formatRelativeRange\": {\n \"unit\": string;\n \"amount\": number;\n }\n \"i18nStrings.formatUnit\": {\n \"unit\": string;\n \"amount\": number;\n }\n }\n \"drawer\": {\n \"i18nStrings.loadingText\": never;\n }\n \"flashbar\": {\n \"i18nStrings.ariaLabel\": never;\n \"i18nStrings.errorIconAriaLabel\": never;\n \"i18nStrings.inProgressIconAriaLabel\": never;\n \"i18nStrings.infoIconAriaLabel\": never;\n \"i18nStrings.notificationBarAriaLabel\": never;\n \"i18nStrings.notificationBarText\": never;\n \"i18nStrings.successIconAriaLabel\": never;\n \"i18nStrings.warningIconAriaLabel\": never;\n }\n \"form-field\": {\n \"i18nStrings.errorIconAriaLabel\": never;\n \"i18nStrings.warningIconAriaLabel\": never;\n }\n \"form\": {\n \"errorIconAriaLabel\": never;\n }\n \"help-panel\": {\n \"loadingText\": never;\n }\n \"input\": {\n \"clearAriaLabel\": never;\n }\n \"link\": {\n \"externalIconAriaLabel\": never;\n }\n \"modal\": {\n \"closeAriaLabel\": never;\n }\n \"multiselect\": {\n \"deselectAriaLabel\": {\n \"option__label\": string | number;\n }\n }\n \"pagination\": {\n \"ariaLabels.nextPageLabel\": never;\n \"ariaLabels.pageLabel\": {\n \"pageNumber\": string | number;\n }\n \"ariaLabels.previousPageLabel\": never;\n }\n \"pie-chart\": {\n \"i18nStrings.detailsValue\": never;\n \"i18nStrings.detailsPercentage\": never;\n \"i18nStrings.chartAriaRoleDescription\": never;\n \"i18nStrings.segmentAriaRoleDescription\": never;\n }\n \"popover\": {\n \"dismissAriaLabel\": never;\n }\n \"property-filter\": {\n \"i18nStrings.allPropertiesLabel\": never;\n \"i18nStrings.applyActionText\": never;\n \"i18nStrings.cancelActionText\": never;\n \"i18nStrings.clearFiltersText\": never;\n \"i18nStrings.editTokenHeader\": never;\n \"i18nStrings.groupPropertiesText\": never;\n \"i18nStrings.groupValuesText\": never;\n \"i18nStrings.operationAndText\": never;\n \"i18nStrings.operationOrText\": never;\n \"i18nStrings.operatorContainsText\": never;\n \"i18nStrings.operatorDoesNotContainText\": never;\n \"i18nStrings.operatorDoesNotEqualText\": never;\n \"i18nStrings.operatorEqualsText\": never;\n \"i18nStrings.operatorGreaterOrEqualText\": never;\n \"i18nStrings.operatorGreaterText\": never;\n \"i18nStrings.operatorLessOrEqualText\": never;\n \"i18nStrings.operatorLessText\": never;\n \"i18nStrings.operatorStartsWithText\": never;\n \"i18nStrings.operatorDoesNotStartWithText\": never;\n \"i18nStrings.operatorText\": never;\n \"i18nStrings.operatorsText\": never;\n \"i18nStrings.propertyText\": never;\n \"i18nStrings.tokenLimitShowFewer\": never;\n \"i18nStrings.tokenLimitShowMore\": never;\n \"i18nStrings.valueText\": never;\n \"i18nStrings.removeTokenButtonAriaLabel\": {\n \"token__operator\": string;\n \"token__propertyKey\": string | number;\n \"token__value\": string | number;\n }\n }\n \"s3-resource-selector\": {\n \"i18nStrings.inContextSelectPlaceholder\": never;\n \"i18nStrings.inContextBrowseButton\": never;\n \"i18nStrings.inContextViewButton\": never;\n \"i18nStrings.inContextViewButtonAriaLabel\": never;\n \"i18nStrings.inContextLoadingText\": never;\n \"i18nStrings.inContextUriLabel\": never;\n \"i18nStrings.inContextVersionSelectLabel\": never;\n \"i18nStrings.modalTitle\": never;\n \"i18nStrings.modalCancelButton\": never;\n \"i18nStrings.modalSubmitButton\": never;\n \"i18nStrings.modalBreadcrumbRootItem\": never;\n \"i18nStrings.selectionBuckets\": never;\n \"i18nStrings.selectionObjects\": never;\n \"i18nStrings.selectionVersions\": never;\n \"i18nStrings.selectionBucketsSearchPlaceholder\": never;\n \"i18nStrings.selectionObjectsSearchPlaceholder\": never;\n \"i18nStrings.selectionVersionsSearchPlaceholder\": never;\n \"i18nStrings.selectionBucketsLoading\": never;\n \"i18nStrings.selectionBucketsNoItems\": never;\n \"i18nStrings.selectionObjectsLoading\": never;\n \"i18nStrings.selectionObjectsNoItems\": never;\n \"i18nStrings.selectionVersionsLoading\": never;\n \"i18nStrings.selectionVersionsNoItems\": never;\n \"i18nStrings.filteringNoMatches\": never;\n \"i18nStrings.filteringCantFindMatch\": never;\n \"i18nStrings.clearFilterButtonText\": never;\n \"i18nStrings.columnBucketID\": never;\n \"i18nStrings.columnBucketName\": never;\n \"i18nStrings.columnBucketCreationDate\": never;\n \"i18nStrings.columnBucketRegion\": never;\n \"i18nStrings.columnObjectKey\": never;\n \"i18nStrings.columnObjectLastModified\": never;\n \"i18nStrings.columnObjectSize\": never;\n \"i18nStrings.columnVersionID\": never;\n \"i18nStrings.columnVersionLastModified\": never;\n \"i18nStrings.columnVersionSize\": never;\n \"i18nStrings.validationPathMustBegin\": never;\n \"i18nStrings.validationBucketLowerCase\": never;\n \"i18nStrings.validationBucketMustNotContain\": never;\n \"i18nStrings.validationBucketLength\": never;\n \"i18nStrings.validationBucketMustComplyDns\": never;\n \"i18nStrings.labelSortedDescending\": {\n \"columnName\": string | number;\n }\n \"i18nStrings.labelSortedAscending\": {\n \"columnName\": string | number;\n }\n \"i18nStrings.labelNotSorted\": {\n \"columnName\": string | number;\n }\n \"i18nStrings.labelsBucketsSelection.selectionGroupLabel\": never;\n \"i18nStrings.labelsBucketsSelection.itemSelectionLabel\": {\n \"item__Name\": string | number;\n }\n \"i18nStrings.labelsObjectsSelection.selectionGroupLabel\": never;\n \"i18nStrings.labelsObjectsSelection.itemSelectionLabel\": {\n \"item__Key\": string | number;\n }\n \"i18nStrings.labelsVersionsSelection.selectionGroupLabel\": never;\n \"i18nStrings.labelsVersionsSelection.itemSelectionLabel\": {\n \"item__VersionId\": string | number;\n }\n \"i18nStrings.labelFiltering\": {\n \"itemsType\": string | number;\n }\n \"i18nStrings.labelRefresh\": never;\n \"i18nStrings.labelBreadcrumbs\": never;\n \"i18nStrings.filteringCounterText\": {\n \"count\": number;\n }\n }\n \"select\": {\n \"errorIconAriaLabel\": never;\n \"selectedAriaLabel\": never;\n \"recoveryText\": never;\n }\n \"split-panel\": {\n \"i18nStrings.closeButtonAriaLabel\": never;\n \"i18nStrings.openButtonAriaLabel\": never;\n \"i18nStrings.preferencesTitle\": never;\n \"i18nStrings.preferencesPositionLabel\": never;\n \"i18nStrings.preferencesPositionDescription\": never;\n \"i18nStrings.preferencesPositionSide\": never;\n \"i18nStrings.preferencesPositionBottom\": never;\n \"i18nStrings.preferencesConfirm\": never;\n \"i18nStrings.preferencesCancel\": never;\n \"i18nStrings.resizeHandleAriaLabel\": never;\n }\n \"table\": {\n \"ariaLabels.resizerRoleDescription\": never;\n \"ariaLabels.submittingEditText\": never;\n \"ariaLabels.successfulEditLabel\": never;\n \"columnDefinitions.editConfig.errorIconAriaLabel\": never;\n \"columnDefinitions.editConfig.editIconAriaLabel\": never;\n }\n \"tabs\": {\n \"i18nStrings.scrollLeftAriaLabel\": never;\n \"i18nStrings.scrollRightAriaLabel\": never;\n }\n \"tag-editor\": {\n \"i18nStrings.keyPlaceholder\": never;\n \"i18nStrings.valuePlaceholder\": never;\n \"i18nStrings.addButton\": never;\n \"i18nStrings.removeButton\": never;\n \"i18nStrings.removeButtonAriaLabel\": {\n \"tag__key\": string | number;\n }\n \"i18nStrings.undoButton\": never;\n \"i18nStrings.undoPrompt\": never;\n \"i18nStrings.loading\": never;\n \"i18nStrings.keyHeader\": never;\n \"i18nStrings.valueHeader\": never;\n \"i18nStrings.optional\": never;\n \"i18nStrings.keySuggestion\": never;\n \"i18nStrings.valueSuggestion\": never;\n \"i18nStrings.emptyTags\": never;\n \"i18nStrings.tooManyKeysSuggestion\": never;\n \"i18nStrings.tooManyValuesSuggestion\": never;\n \"i18nStrings.keysSuggestionLoading\": never;\n \"i18nStrings.keysSuggestionError\": never;\n \"i18nStrings.valuesSuggestionLoading\": never;\n \"i18nStrings.valuesSuggestionError\": never;\n \"i18nStrings.emptyKeyError\": never;\n \"i18nStrings.maxKeyCharLengthError\": never;\n \"i18nStrings.maxValueCharLengthError\": never;\n \"i18nStrings.duplicateKeyError\": never;\n \"i18nStrings.invalidKeyError\": never;\n \"i18nStrings.invalidValueError\": never;\n \"i18nStrings.awsPrefixError\": never;\n \"i18nStrings.tagLimitReached\": {\n \"tagLimit\": number;\n }\n \"i18nStrings.tagLimitExceeded\": {\n \"tagLimit\": number;\n }\n \"i18nStrings.tagLimit\": {\n \"tagLimitAvailable\": string;\n \"availableTags\": number;\n \"tagLimit\": string | number;\n }\n }\n \"token-group\": {\n \"i18nStrings.limitShowFewer\": never;\n \"i18nStrings.limitShowMore\": never;\n }\n \"top-navigation\": {\n \"i18nStrings.searchIconAriaLabel\": never;\n \"i18nStrings.searchDismissIconAriaLabel\": never;\n \"i18nStrings.overflowMenuTriggerText\": never;\n \"i18nStrings.overflowMenuDismissIconAriaLabel\": never;\n \"i18nStrings.overflowMenuBackIconAriaLabel\": never;\n \"i18nStrings.overflowMenuTitleText\": never;\n }\n \"tutorial-panel\": {\n \"i18nStrings.loadingText\": never;\n \"i18nStrings.tutorialListTitle\": never;\n \"i18nStrings.tutorialListDownloadLinkText\": never;\n \"i18nStrings.labelTutorialListDownloadLink\": never;\n \"i18nStrings.tutorialCompletedText\": never;\n \"i18nStrings.learnMoreLinkText\": never;\n \"i18nStrings.startTutorialButtonText\": never;\n \"i18nStrings.restartTutorialButtonText\": never;\n \"i18nStrings.completionScreenTitle\": never;\n \"i18nStrings.feedbackLinkText\": never;\n \"i18nStrings.dismissTutorialButtonText\": never;\n \"i18nStrings.taskTitle\": {\n \"taskNumber\": string | number;\n \"taskTitle\": string | number;\n }\n \"i18nStrings.stepTitle\": {\n \"stepNumber\": string | number;\n \"stepTitle\": string | number;\n }\n \"i18nStrings.labelExitTutorial\": never;\n \"i18nStrings.labelTotalSteps\": {\n \"totalStepCount\": string | number;\n }\n \"i18nStrings.labelsTaskStatus.pending\": never;\n \"i18nStrings.labelsTaskStatus.in-progress\": never;\n \"i18nStrings.labelsTaskStatus.success\": never;\n }\n \"wizard\": {\n \"i18nStrings.stepNumberLabel\": {\n \"stepNumber\": string | number;\n }\n \"i18nStrings.collapsedStepsLabel\": {\n \"stepNumber\": string | number;\n \"stepsCount\": string | number;\n }\n \"i18nStrings.skipToButtonLabel\": {\n \"task__title\": string | number;\n }\n \"i18nStrings.navigationAriaLabel\": never;\n \"i18nStrings.cancelButton\": never;\n \"i18nStrings.previousButton\": never;\n \"i18nStrings.nextButton\": never;\n \"i18nStrings.optional\": never;\n \"i18nStrings.nextButtonLoadingAnnouncement\": never;\n \"i18nStrings.submitButtonLoadingAnnouncement\": never;\n }\n}"]}
|
|
1
|
+
{"version":3,"file":"messages-types.js","sourceRoot":"","sources":["../../../src/i18n/messages-types.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AACtC,sCAAsC","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\n/* eslint-disable prettier/prettier */\n\n/** Auto-generated argument types based on \"en\" i18n strings. Do not edit manually. */\nexport interface I18nFormatArgTypes {\n \"[charts]\": {\n \"loadingText\": never;\n \"errorText\": never;\n \"recoveryText\": never;\n \"i18nStrings.filterLabel\": never;\n \"i18nStrings.filterPlaceholder\": never;\n \"i18nStrings.legendAriaLabel\": never;\n \"i18nStrings.chartAriaRoleDescription\": never;\n \"i18nStrings.xAxisAriaRoleDescription\": never;\n \"i18nStrings.yAxisAriaRoleDescription\": never;\n }\n \"alert\": {\n \"dismissAriaLabel\": never;\n }\n \"annotation-context\": {\n \"i18nStrings.nextButtonText\": never;\n \"i18nStrings.previousButtonText\": never;\n \"i18nStrings.finishButtonText\": never;\n \"i18nStrings.labelDismissAnnotation\": never;\n \"i18nStrings.stepCounterText\": {\n \"stepNumber\": string | number;\n \"totalStepCount\": string | number;\n }\n \"i18nStrings.taskTitle\": {\n \"taskNumber\": string | number;\n \"taskTitle\": string | number;\n }\n \"i18nStrings.labelHotspot\": {\n \"openState\": string;\n \"stepNumber\": string | number;\n \"totalStepCount\": string | number;\n }\n }\n \"app-layout\": {\n \"ariaLabels.drawers\": never;\n \"ariaLabels.drawersOverflow\": never;\n \"ariaLabels.drawersOverflowWithBadge\": never;\n \"ariaLabels.navigation\": never;\n \"ariaLabels.navigationClose\": never;\n \"ariaLabels.navigationToggle\": never;\n \"ariaLabels.notifications\": never;\n \"ariaLabels.tools\": never;\n \"ariaLabels.toolsClose\": never;\n \"ariaLabels.toolsToggle\": never;\n }\n \"area-chart\": {\n \"i18nStrings.detailTotalLabel\": never;\n }\n \"attribute-editor\": {\n \"removeButtonText\": never;\n }\n \"autosuggest\": {\n \"errorIconAriaLabel\": never;\n \"selectedAriaLabel\": never;\n \"enteredTextLabel\": {\n \"value\": string | number;\n }\n \"recoveryText\": never;\n }\n \"breadcrumb-group\": {\n \"expandAriaLabel\": never;\n }\n \"calendar\": {\n \"nextMonthAriaLabel\": never;\n \"previousMonthAriaLabel\": never;\n \"todayAriaLabel\": never;\n \"i18nStrings.nextYearAriaLabel\": never;\n \"i18nStrings.previousYearAriaLabel\": never;\n \"i18nStrings.currentMonthAriaLabel\": never;\n }\n \"cards\": {\n \"ariaLabels.selectionGroupLabel\": never;\n }\n \"code-editor\": {\n \"i18nStrings.loadingState\": never;\n \"i18nStrings.errorState\": never;\n \"i18nStrings.errorStateRecovery\": never;\n \"i18nStrings.editorGroupAriaLabel\": never;\n \"i18nStrings.statusBarGroupAriaLabel\": never;\n \"i18nStrings.cursorPosition\": {\n \"row\": string | number;\n \"column\": string | number;\n }\n \"i18nStrings.errorsTab\": never;\n \"i18nStrings.warningsTab\": never;\n \"i18nStrings.preferencesButtonAriaLabel\": never;\n \"i18nStrings.paneCloseButtonAriaLabel\": never;\n \"i18nStrings.preferencesModalHeader\": never;\n \"i18nStrings.preferencesModalCancel\": never;\n \"i18nStrings.preferencesModalConfirm\": never;\n \"i18nStrings.preferencesModalWrapLines\": never;\n \"i18nStrings.preferencesModalTheme\": never;\n \"i18nStrings.preferencesModalLightThemes\": never;\n \"i18nStrings.preferencesModalDarkThemes\": never;\n }\n \"collection-preferences\": {\n \"title\": never;\n \"confirmLabel\": never;\n \"cancelLabel\": never;\n \"pageSizePreference.title\": never;\n \"wrapLinesPreference.label\": never;\n \"wrapLinesPreference.description\": never;\n \"stripedRowsPreference.label\": never;\n \"stripedRowsPreference.description\": never;\n \"contentDensityPreference.label\": never;\n \"contentDensityPreference.description\": never;\n \"contentDisplayPreference.title\": never;\n \"contentDisplayPreference.description\": never;\n \"contentDisplayPreference.dragHandleAriaLabel\": never;\n \"contentDisplayPreference.dragHandleAriaDescription\": never;\n \"contentDisplayPreference.liveAnnouncementDndStarted\": {\n \"position\": string | number;\n \"total\": string | number;\n }\n \"contentDisplayPreference.liveAnnouncementDndDiscarded\": never;\n \"contentDisplayPreference.liveAnnouncementDndItemReordered\": {\n \"isInitialPosition\": string;\n \"currentPosition\": string | number;\n \"total\": string | number;\n }\n \"contentDisplayPreference.liveAnnouncementDndItemCommitted\": {\n \"isInitialPosition\": string;\n \"initialPosition\": string | number;\n \"total\": string | number;\n \"finalPosition\": string | number;\n }\n }\n \"copy-to-clipboard\": {\n \"i18nStrings.copyButtonText\": never;\n }\n \"date-range-picker\": {\n \"i18nStrings.relativeModeTitle\": never;\n \"i18nStrings.absoluteModeTitle\": never;\n \"i18nStrings.relativeRangeSelectionHeading\": never;\n \"i18nStrings.cancelButtonLabel\": never;\n \"i18nStrings.clearButtonLabel\": never;\n \"i18nStrings.applyButtonLabel\": never;\n \"i18nStrings.customRelativeRangeOptionLabel\": never;\n \"i18nStrings.customRelativeRangeOptionDescription\": never;\n \"i18nStrings.customRelativeRangeUnitLabel\": never;\n \"i18nStrings.customRelativeRangeDurationLabel\": never;\n \"i18nStrings.customRelativeRangeDurationPlaceholder\": never;\n \"i18nStrings.startDateLabel\": never;\n \"i18nStrings.startTimeLabel\": never;\n \"i18nStrings.endDateLabel\": never;\n \"i18nStrings.endTimeLabel\": never;\n \"i18nStrings.dateTimeConstraintText\": never;\n \"i18nStrings.errorIconAriaLabel\": never;\n \"i18nStrings.renderSelectedAbsoluteRangeAriaLive\": {\n \"startDate\": string | number;\n \"endDate\": string | number;\n }\n \"i18nStrings.formatRelativeRange\": {\n \"unit\": string;\n \"amount\": number;\n }\n \"i18nStrings.formatUnit\": {\n \"unit\": string;\n \"amount\": number;\n }\n }\n \"drawer\": {\n \"i18nStrings.loadingText\": never;\n }\n \"flashbar\": {\n \"i18nStrings.ariaLabel\": never;\n \"i18nStrings.errorIconAriaLabel\": never;\n \"i18nStrings.inProgressIconAriaLabel\": never;\n \"i18nStrings.infoIconAriaLabel\": never;\n \"i18nStrings.notificationBarAriaLabel\": never;\n \"i18nStrings.notificationBarText\": never;\n \"i18nStrings.successIconAriaLabel\": never;\n \"i18nStrings.warningIconAriaLabel\": never;\n }\n \"form-field\": {\n \"i18nStrings.errorIconAriaLabel\": never;\n \"i18nStrings.warningIconAriaLabel\": never;\n }\n \"form\": {\n \"errorIconAriaLabel\": never;\n }\n \"help-panel\": {\n \"loadingText\": never;\n }\n \"input\": {\n \"clearAriaLabel\": never;\n }\n \"link\": {\n \"externalIconAriaLabel\": never;\n }\n \"modal\": {\n \"closeAriaLabel\": never;\n }\n \"multiselect\": {\n \"deselectAriaLabel\": {\n \"option__label\": string | number;\n }\n }\n \"pagination\": {\n \"ariaLabels.nextPageLabel\": never;\n \"ariaLabels.pageLabel\": {\n \"pageNumber\": string | number;\n }\n \"ariaLabels.previousPageLabel\": never;\n }\n \"pie-chart\": {\n \"i18nStrings.detailsValue\": never;\n \"i18nStrings.detailsPercentage\": never;\n \"i18nStrings.chartAriaRoleDescription\": never;\n \"i18nStrings.segmentAriaRoleDescription\": never;\n }\n \"popover\": {\n \"dismissAriaLabel\": never;\n }\n \"property-filter\": {\n \"i18nStrings.allPropertiesLabel\": never;\n \"i18nStrings.applyActionText\": never;\n \"i18nStrings.cancelActionText\": never;\n \"i18nStrings.clearFiltersText\": never;\n \"i18nStrings.editTokenHeader\": never;\n \"i18nStrings.groupPropertiesText\": never;\n \"i18nStrings.groupValuesText\": never;\n \"i18nStrings.operationAndText\": never;\n \"i18nStrings.operationOrText\": never;\n \"i18nStrings.operatorContainsText\": never;\n \"i18nStrings.operatorDoesNotContainText\": never;\n \"i18nStrings.operatorDoesNotEqualText\": never;\n \"i18nStrings.operatorEqualsText\": never;\n \"i18nStrings.operatorGreaterOrEqualText\": never;\n \"i18nStrings.operatorGreaterText\": never;\n \"i18nStrings.operatorLessOrEqualText\": never;\n \"i18nStrings.operatorLessText\": never;\n \"i18nStrings.operatorStartsWithText\": never;\n \"i18nStrings.operatorDoesNotStartWithText\": never;\n \"i18nStrings.operatorText\": never;\n \"i18nStrings.operatorsText\": never;\n \"i18nStrings.propertyText\": never;\n \"i18nStrings.tokenLimitShowFewer\": never;\n \"i18nStrings.tokenLimitShowMore\": never;\n \"i18nStrings.valueText\": never;\n \"i18nStrings.removeTokenButtonAriaLabel\": {\n \"token__operator\": string;\n \"token__propertyKey\": string | number;\n \"token__value\": string | number;\n }\n }\n \"s3-resource-selector\": {\n \"i18nStrings.inContextSelectPlaceholder\": never;\n \"i18nStrings.inContextBrowseButton\": never;\n \"i18nStrings.inContextViewButton\": never;\n \"i18nStrings.inContextViewButtonAriaLabel\": never;\n \"i18nStrings.inContextLoadingText\": never;\n \"i18nStrings.inContextUriLabel\": never;\n \"i18nStrings.inContextVersionSelectLabel\": never;\n \"i18nStrings.modalTitle\": never;\n \"i18nStrings.modalCancelButton\": never;\n \"i18nStrings.modalSubmitButton\": never;\n \"i18nStrings.modalBreadcrumbRootItem\": never;\n \"i18nStrings.selectionBuckets\": never;\n \"i18nStrings.selectionObjects\": never;\n \"i18nStrings.selectionVersions\": never;\n \"i18nStrings.selectionBucketsSearchPlaceholder\": never;\n \"i18nStrings.selectionObjectsSearchPlaceholder\": never;\n \"i18nStrings.selectionVersionsSearchPlaceholder\": never;\n \"i18nStrings.selectionBucketsLoading\": never;\n \"i18nStrings.selectionBucketsNoItems\": never;\n \"i18nStrings.selectionObjectsLoading\": never;\n \"i18nStrings.selectionObjectsNoItems\": never;\n \"i18nStrings.selectionVersionsLoading\": never;\n \"i18nStrings.selectionVersionsNoItems\": never;\n \"i18nStrings.filteringNoMatches\": never;\n \"i18nStrings.filteringCantFindMatch\": never;\n \"i18nStrings.clearFilterButtonText\": never;\n \"i18nStrings.columnBucketID\": never;\n \"i18nStrings.columnBucketName\": never;\n \"i18nStrings.columnBucketCreationDate\": never;\n \"i18nStrings.columnBucketRegion\": never;\n \"i18nStrings.columnObjectKey\": never;\n \"i18nStrings.columnObjectLastModified\": never;\n \"i18nStrings.columnObjectSize\": never;\n \"i18nStrings.columnVersionID\": never;\n \"i18nStrings.columnVersionLastModified\": never;\n \"i18nStrings.columnVersionSize\": never;\n \"i18nStrings.validationPathMustBegin\": never;\n \"i18nStrings.validationBucketLowerCase\": never;\n \"i18nStrings.validationBucketMustNotContain\": never;\n \"i18nStrings.validationBucketLength\": never;\n \"i18nStrings.validationBucketMustComplyDns\": never;\n \"i18nStrings.labelSortedDescending\": {\n \"columnName\": string | number;\n }\n \"i18nStrings.labelSortedAscending\": {\n \"columnName\": string | number;\n }\n \"i18nStrings.labelNotSorted\": {\n \"columnName\": string | number;\n }\n \"i18nStrings.labelsBucketsSelection.selectionGroupLabel\": never;\n \"i18nStrings.labelsBucketsSelection.itemSelectionLabel\": {\n \"item__Name\": string | number;\n }\n \"i18nStrings.labelsObjectsSelection.selectionGroupLabel\": never;\n \"i18nStrings.labelsObjectsSelection.itemSelectionLabel\": {\n \"item__Key\": string | number;\n }\n \"i18nStrings.labelsVersionsSelection.selectionGroupLabel\": never;\n \"i18nStrings.labelsVersionsSelection.itemSelectionLabel\": {\n \"item__VersionId\": string | number;\n }\n \"i18nStrings.labelFiltering\": {\n \"itemsType\": string | number;\n }\n \"i18nStrings.labelRefresh\": never;\n \"i18nStrings.labelBreadcrumbs\": never;\n \"i18nStrings.filteringCounterText\": {\n \"count\": number;\n }\n }\n \"select\": {\n \"errorIconAriaLabel\": never;\n \"selectedAriaLabel\": never;\n \"recoveryText\": never;\n }\n \"split-panel\": {\n \"i18nStrings.closeButtonAriaLabel\": never;\n \"i18nStrings.openButtonAriaLabel\": never;\n \"i18nStrings.preferencesTitle\": never;\n \"i18nStrings.preferencesPositionLabel\": never;\n \"i18nStrings.preferencesPositionDescription\": never;\n \"i18nStrings.preferencesPositionSide\": never;\n \"i18nStrings.preferencesPositionBottom\": never;\n \"i18nStrings.preferencesConfirm\": never;\n \"i18nStrings.preferencesCancel\": never;\n \"i18nStrings.resizeHandleAriaLabel\": never;\n }\n \"table\": {\n \"ariaLabels.resizerRoleDescription\": never;\n \"ariaLabels.submittingEditText\": never;\n \"ariaLabels.successfulEditLabel\": never;\n \"ariaLabels.expandButtonLabel\": never;\n \"ariaLabels.collapseButtonLabel\": never;\n \"columnDefinitions.editConfig.errorIconAriaLabel\": never;\n \"columnDefinitions.editConfig.editIconAriaLabel\": never;\n }\n \"tabs\": {\n \"i18nStrings.scrollLeftAriaLabel\": never;\n \"i18nStrings.scrollRightAriaLabel\": never;\n }\n \"tag-editor\": {\n \"i18nStrings.keyPlaceholder\": never;\n \"i18nStrings.valuePlaceholder\": never;\n \"i18nStrings.addButton\": never;\n \"i18nStrings.removeButton\": never;\n \"i18nStrings.removeButtonAriaLabel\": {\n \"tag__key\": string | number;\n }\n \"i18nStrings.undoButton\": never;\n \"i18nStrings.undoPrompt\": never;\n \"i18nStrings.loading\": never;\n \"i18nStrings.keyHeader\": never;\n \"i18nStrings.valueHeader\": never;\n \"i18nStrings.optional\": never;\n \"i18nStrings.keySuggestion\": never;\n \"i18nStrings.valueSuggestion\": never;\n \"i18nStrings.emptyTags\": never;\n \"i18nStrings.tooManyKeysSuggestion\": never;\n \"i18nStrings.tooManyValuesSuggestion\": never;\n \"i18nStrings.keysSuggestionLoading\": never;\n \"i18nStrings.keysSuggestionError\": never;\n \"i18nStrings.valuesSuggestionLoading\": never;\n \"i18nStrings.valuesSuggestionError\": never;\n \"i18nStrings.emptyKeyError\": never;\n \"i18nStrings.maxKeyCharLengthError\": never;\n \"i18nStrings.maxValueCharLengthError\": never;\n \"i18nStrings.duplicateKeyError\": never;\n \"i18nStrings.invalidKeyError\": never;\n \"i18nStrings.invalidValueError\": never;\n \"i18nStrings.awsPrefixError\": never;\n \"i18nStrings.tagLimitReached\": {\n \"tagLimit\": number;\n }\n \"i18nStrings.tagLimitExceeded\": {\n \"tagLimit\": number;\n }\n \"i18nStrings.tagLimit\": {\n \"tagLimitAvailable\": string;\n \"availableTags\": number;\n \"tagLimit\": string | number;\n }\n }\n \"token-group\": {\n \"i18nStrings.limitShowFewer\": never;\n \"i18nStrings.limitShowMore\": never;\n }\n \"top-navigation\": {\n \"i18nStrings.searchIconAriaLabel\": never;\n \"i18nStrings.searchDismissIconAriaLabel\": never;\n \"i18nStrings.overflowMenuTriggerText\": never;\n \"i18nStrings.overflowMenuDismissIconAriaLabel\": never;\n \"i18nStrings.overflowMenuBackIconAriaLabel\": never;\n \"i18nStrings.overflowMenuTitleText\": never;\n }\n \"tutorial-panel\": {\n \"i18nStrings.loadingText\": never;\n \"i18nStrings.tutorialListTitle\": never;\n \"i18nStrings.tutorialListDownloadLinkText\": never;\n \"i18nStrings.labelTutorialListDownloadLink\": never;\n \"i18nStrings.tutorialCompletedText\": never;\n \"i18nStrings.learnMoreLinkText\": never;\n \"i18nStrings.startTutorialButtonText\": never;\n \"i18nStrings.restartTutorialButtonText\": never;\n \"i18nStrings.completionScreenTitle\": never;\n \"i18nStrings.feedbackLinkText\": never;\n \"i18nStrings.dismissTutorialButtonText\": never;\n \"i18nStrings.taskTitle\": {\n \"taskNumber\": string | number;\n \"taskTitle\": string | number;\n }\n \"i18nStrings.stepTitle\": {\n \"stepNumber\": string | number;\n \"stepTitle\": string | number;\n }\n \"i18nStrings.labelExitTutorial\": never;\n \"i18nStrings.labelTotalSteps\": {\n \"totalStepCount\": string | number;\n }\n \"i18nStrings.labelsTaskStatus.pending\": never;\n \"i18nStrings.labelsTaskStatus.in-progress\": never;\n \"i18nStrings.labelsTaskStatus.success\": never;\n }\n \"wizard\": {\n \"i18nStrings.stepNumberLabel\": {\n \"stepNumber\": string | number;\n }\n \"i18nStrings.collapsedStepsLabel\": {\n \"stepNumber\": string | number;\n \"stepsCount\": string | number;\n }\n \"i18nStrings.skipToButtonLabel\": {\n \"task__title\": string | number;\n }\n \"i18nStrings.navigationAriaLabel\": never;\n \"i18nStrings.cancelButton\": never;\n \"i18nStrings.previousButton\": never;\n \"i18nStrings.nextButton\": never;\n \"i18nStrings.optional\": never;\n \"i18nStrings.nextButtonLoadingAnnouncement\": never;\n \"i18nStrings.submitButtonLoadingAnnouncement\": never;\n }\n}"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/internal/components/tooltip/index.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAU1B,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;CACpC;AAED,MAAM,CAAC,OAAO,UAAU,OAAO,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,YAAY,eA4BhE"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import clsx from 'clsx';
|
|
5
|
+
import { Transition } from '../transition';
|
|
6
|
+
import PopoverContainer from '../../../popover/container';
|
|
7
|
+
import PopoverBody from '../../../popover/body';
|
|
8
|
+
import Portal from '../portal';
|
|
9
|
+
import popoverStyles from '../../../popover/styles.css.js';
|
|
10
|
+
import styles from './styles.css.js';
|
|
11
|
+
export default function Tooltip({ value, trackRef }) {
|
|
12
|
+
return (React.createElement(Portal, null,
|
|
13
|
+
React.createElement("div", { className: styles.root },
|
|
14
|
+
React.createElement(Transition, { in: true }, () => (React.createElement(PopoverContainer, { trackRef: trackRef, trackKey: value, size: "small", fixedWidth: false, position: "top", arrow: position => (React.createElement("div", { className: clsx(popoverStyles.arrow, popoverStyles[`arrow-position-${position}`]) },
|
|
15
|
+
React.createElement("div", { className: popoverStyles['arrow-outer'] }),
|
|
16
|
+
React.createElement("div", { className: popoverStyles['arrow-inner'] }))) },
|
|
17
|
+
React.createElement(PopoverBody, { dismissButton: false, dismissAriaLabel: undefined, onDismiss: undefined, header: undefined }, value)))))));
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/internal/components/tooltip/index.tsx"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AACtC,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,gBAAgB,MAAM,4BAA4B,CAAC;AAC1D,OAAO,WAAW,MAAM,uBAAuB,CAAC;AAChD,OAAO,MAAM,MAAM,WAAW,CAAC;AAC/B,OAAO,aAAa,MAAM,gCAAgC,CAAC;AAC3D,OAAO,MAAM,MAAM,iBAAiB,CAAC;AAOrC,MAAM,CAAC,OAAO,UAAU,OAAO,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAgB;IAC/D,OAAO,CACL,oBAAC,MAAM;QACL,6BAAK,SAAS,EAAE,MAAM,CAAC,IAAI;YACzB,oBAAC,UAAU,IAAC,EAAE,EAAE,IAAI,IACjB,GAAG,EAAE,CAAC,CACL,oBAAC,gBAAgB,IACf,QAAQ,EAAE,QAAQ,EAClB,QAAQ,EAAE,KAAK,EACf,IAAI,EAAC,OAAO,EACZ,UAAU,EAAE,KAAK,EACjB,QAAQ,EAAC,KAAK,EACd,KAAK,EAAE,QAAQ,CAAC,EAAE,CAAC,CACjB,6BAAK,SAAS,EAAE,IAAI,CAAC,aAAa,CAAC,KAAK,EAAE,aAAa,CAAC,kBAAkB,QAAQ,EAAE,CAAC,CAAC;oBACpF,6BAAK,SAAS,EAAE,aAAa,CAAC,aAAa,CAAC,GAAI;oBAChD,6BAAK,SAAS,EAAE,aAAa,CAAC,aAAa,CAAC,GAAI,CAC5C,CACP;gBAED,oBAAC,WAAW,IAAC,aAAa,EAAE,KAAK,EAAE,gBAAgB,EAAE,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,EAAE,SAAS,IACpG,KAAK,CACM,CACG,CACpB,CACU,CACT,CACC,CACV,CAAC;AACJ,CAAC","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nimport React from 'react';\nimport clsx from 'clsx';\n\nimport { Transition } from '../transition';\nimport PopoverContainer from '../../../popover/container';\nimport PopoverBody from '../../../popover/body';\nimport Portal from '../portal';\nimport popoverStyles from '../../../popover/styles.css.js';\nimport styles from './styles.css.js';\n\nexport interface TooltipProps {\n value: number | string;\n trackRef: React.RefObject<Element>;\n}\n\nexport default function Tooltip({ value, trackRef }: TooltipProps) {\n return (\n <Portal>\n <div className={styles.root}>\n <Transition in={true}>\n {() => (\n <PopoverContainer\n trackRef={trackRef}\n trackKey={value}\n size=\"small\"\n fixedWidth={false}\n position=\"top\"\n arrow={position => (\n <div className={clsx(popoverStyles.arrow, popoverStyles[`arrow-position-${position}`])}>\n <div className={popoverStyles['arrow-outer']} />\n <div className={popoverStyles['arrow-inner']} />\n </div>\n )}\n >\n <PopoverBody dismissButton={false} dismissAriaLabel={undefined} onDismiss={undefined} header={undefined}>\n {value}\n </PopoverBody>\n </PopoverContainer>\n )}\n </Transition>\n </div>\n </Portal>\n );\n}\n"]}
|
package/internal/environment.js
CHANGED
package/internal/manifest.json
CHANGED
package/package.json
CHANGED
package/popover/body.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
export interface PopoverBodyProps {
|
|
3
3
|
dismissButton: boolean;
|
|
4
4
|
dismissAriaLabel: string | undefined;
|
|
5
|
-
onDismiss: () => void;
|
|
5
|
+
onDismiss: (() => void) | undefined;
|
|
6
6
|
header: React.ReactNode | undefined;
|
|
7
7
|
children: React.ReactNode;
|
|
8
8
|
variant?: 'annotation';
|
package/popover/body.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"body.d.ts","sourceRoot":"","sources":["../../../src/popover/body.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAyC,MAAM,OAAO,CAAC;AAY9D,MAAM,WAAW,gBAAgB;IAC/B,aAAa,EAAE,OAAO,CAAC;IACvB,gBAAgB,EAAE,MAAM,GAAG,SAAS,CAAC;IACrC,SAAS,EAAE,MAAM,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"body.d.ts","sourceRoot":"","sources":["../../../src/popover/body.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAyC,MAAM,OAAO,CAAC;AAY9D,MAAM,WAAW,gBAAgB;IAC/B,aAAa,EAAE,OAAO,CAAC;IACvB,gBAAgB,EAAE,MAAM,GAAG,SAAS,CAAC;IACrC,SAAS,EAAE,CAAC,MAAM,IAAI,CAAC,GAAG,SAAS,CAAC;IAEpC,MAAM,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;IACpC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB,eAAe,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC;IAErC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,EAClC,aAAa,EAAE,iBAAiB,EAChC,gBAAgB,EAChB,MAAM,EACN,QAAQ,EACR,SAAS,EACT,OAAO,EACP,eAAe,EACf,SAAS,EACT,cAAc,GACf,EAAE,gBAAgB,eA6ElB"}
|
package/popover/body.js
CHANGED
|
@@ -16,7 +16,7 @@ export default function PopoverBody({ dismissButton: showDismissButton, dismissA
|
|
|
16
16
|
const onKeyDown = useCallback((event) => {
|
|
17
17
|
if (event.keyCode === KeyCode.escape) {
|
|
18
18
|
event.stopPropagation();
|
|
19
|
-
onDismiss();
|
|
19
|
+
onDismiss === null || onDismiss === void 0 ? void 0 : onDismiss();
|
|
20
20
|
}
|
|
21
21
|
}, [onDismiss]);
|
|
22
22
|
// Implement our own auto-focus rather than using FocusLock's,
|
|
@@ -30,7 +30,7 @@ export default function PopoverBody({ dismissButton: showDismissButton, dismissA
|
|
|
30
30
|
dismissButtonFocused.current = showDismissButton;
|
|
31
31
|
}, [showDismissButton]);
|
|
32
32
|
const dismissButton = (showDismissButton !== null && showDismissButton !== void 0 ? showDismissButton : null) && (React.createElement("div", { className: styles.dismiss },
|
|
33
|
-
React.createElement(InternalButton, { variant: "icon", formAction: "none", iconName: "close", className: styles['dismiss-control'], ariaLabel: i18n('dismissAriaLabel', dismissAriaLabel), onClick: () => onDismiss(), ref: dismissButtonRef })));
|
|
33
|
+
React.createElement(InternalButton, { variant: "icon", formAction: "none", iconName: "close", className: styles['dismiss-control'], ariaLabel: i18n('dismissAriaLabel', dismissAriaLabel), onClick: () => onDismiss === null || onDismiss === void 0 ? void 0 : onDismiss(), ref: dismissButtonRef })));
|
|
34
34
|
const isDialog = showDismissButton;
|
|
35
35
|
const shouldTrapFocus = showDismissButton && variant !== 'annotation';
|
|
36
36
|
const dialogProps = isDialog
|
package/popover/body.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"body.js","sourceRoot":"","sources":["../../../src/popover/body.tsx"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AACtC,OAAO,KAAK,EAAE,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAC9D,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAE9D,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,SAAS,MAAM,mCAAmC,CAAC;AAE1D,OAAO,MAAM,MAAM,iBAAiB,CAAC;AACrC,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAgBlD,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,EAClC,aAAa,EAAE,iBAAiB,EAChC,gBAAgB,EAChB,MAAM,EACN,QAAQ,EACR,SAAS,EACT,OAAO,EACP,eAAe,EACf,SAAS,EACT,cAAc,GACG;IACjB,MAAM,IAAI,GAAG,eAAe,CAAC,SAAS,CAAC,CAAC;IACxC,MAAM,YAAY,GAAG,WAAW,CAAC,gBAAgB,CAAC,CAAC;IACnD,MAAM,oBAAoB,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC;IAC3C,MAAM,gBAAgB,GAAG,MAAM,CAAkB,IAAI,CAAC,CAAC;IAEvD,MAAM,SAAS,GAAG,WAAW,CAC3B,CAAC,KAA0B,EAAE,EAAE;QAC7B,IAAI,KAAK,CAAC,OAAO,KAAK,OAAO,CAAC,MAAM,EAAE;YACpC,KAAK,CAAC,eAAe,EAAE,CAAC;YACxB,SAAS,
|
|
1
|
+
{"version":3,"file":"body.js","sourceRoot":"","sources":["../../../src/popover/body.tsx"],"names":[],"mappings":"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","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nimport React, { useCallback, useEffect, useRef } from 'react';\nimport clsx from 'clsx';\n\nimport { KeyCode } from '../internal/keycode';\nimport { useUniqueId } from '../internal/hooks/use-unique-id';\nimport { ButtonProps } from '../button/interfaces';\nimport { InternalButton } from '../button/internal';\nimport FocusLock from '../internal/components/focus-lock';\n\nimport styles from './styles.css.js';\nimport { useInternalI18n } from '../i18n/context';\n\nexport interface PopoverBodyProps {\n dismissButton: boolean;\n dismissAriaLabel: string | undefined;\n onDismiss: (() => void) | undefined;\n\n header: React.ReactNode | undefined;\n children: React.ReactNode;\n variant?: 'annotation';\n overflowVisible?: 'content' | 'both';\n\n className?: string;\n ariaLabelledby?: string;\n}\n\nexport default function PopoverBody({\n dismissButton: showDismissButton,\n dismissAriaLabel,\n header,\n children,\n onDismiss,\n variant,\n overflowVisible,\n className,\n ariaLabelledby,\n}: PopoverBodyProps) {\n const i18n = useInternalI18n('popover');\n const labelledById = useUniqueId('awsui-popover-');\n const dismissButtonFocused = useRef(false);\n const dismissButtonRef = useRef<ButtonProps.Ref>(null);\n\n const onKeyDown = useCallback(\n (event: React.KeyboardEvent) => {\n if (event.keyCode === KeyCode.escape) {\n event.stopPropagation();\n onDismiss?.();\n }\n },\n [onDismiss]\n );\n\n // Implement our own auto-focus rather than using FocusLock's,\n // because we also want to focus the dismiss button when it\n // is added dynamically (e.g. in chart popovers)\n useEffect(() => {\n if (showDismissButton && !dismissButtonFocused.current) {\n dismissButtonRef.current?.focus({ preventScroll: true });\n }\n dismissButtonFocused.current = showDismissButton;\n }, [showDismissButton]);\n\n const dismissButton = (showDismissButton ?? null) && (\n <div className={styles.dismiss}>\n <InternalButton\n variant=\"icon\"\n formAction=\"none\"\n iconName=\"close\"\n className={styles['dismiss-control']}\n ariaLabel={i18n('dismissAriaLabel', dismissAriaLabel)}\n onClick={() => onDismiss?.()}\n ref={dismissButtonRef}\n />\n </div>\n );\n\n const isDialog = showDismissButton;\n const shouldTrapFocus = showDismissButton && variant !== 'annotation';\n\n const dialogProps = isDialog\n ? {\n role: 'dialog',\n 'aria-modal': shouldTrapFocus ? true : undefined,\n 'aria-labelledby': ariaLabelledby ?? (header ? labelledById : undefined),\n }\n : {};\n\n return (\n <div\n className={clsx(styles.body, className, {\n [styles['body-overflow-visible']]: overflowVisible === 'both',\n })}\n onKeyDown={onKeyDown}\n {...dialogProps}\n >\n <FocusLock disabled={!shouldTrapFocus} autoFocus={false}>\n {header && (\n <div className={clsx(styles['header-row'], showDismissButton && styles['has-dismiss'])}>\n {dismissButton}\n <div className={styles.header} id={labelledById}>\n <h2>{header}</h2>\n </div>\n </div>\n )}\n <div className={!header && showDismissButton ? styles['has-dismiss'] : undefined}>\n {!header && dismissButton}\n <div className={clsx(styles.content, { [styles['content-overflow-visible']]: !!overflowVisible })}>\n {children}\n </div>\n </div>\n </FocusLock>\n </div>\n );\n}\n"]}
|