@lumx/react 4.11.0-alpha.1 → 4.11.0-alpha.2
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/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +3 -3
package/index.js
CHANGED
|
@@ -2434,7 +2434,7 @@ const SelectionChipGroup$1 = (props, {
|
|
|
2434
2434
|
const customProps = getChipProps?.(v) || {};
|
|
2435
2435
|
const chipIsDisabled = customProps.isDisabled || isDisabled;
|
|
2436
2436
|
const chipName = typeof customProps.children === 'string' ? customProps.children : name;
|
|
2437
|
-
const ariaLabel = chipRemoveLabel ? `${chipName}
|
|
2437
|
+
const ariaLabel = chipRemoveLabel ? `${chipName} - ${chipRemoveLabel}` : chipName;
|
|
2438
2438
|
return /*#__PURE__*/jsx(Tooltip, {
|
|
2439
2439
|
label: !chipIsDisabled ? ariaLabel : undefined,
|
|
2440
2440
|
children: /*#__PURE__*/jsx(Chip, {
|