diff --git a/common/changes/@uifabric/utilities/keco-space-delimit-aria-attrs_2019-02-25-22-13.json b/common/changes/@uifabric/utilities/keco-space-delimit-aria-attrs_2019-02-25-22-13.json new file mode 100644 index 0000000000000..4df788278135f --- /dev/null +++ b/common/changes/@uifabric/utilities/keco-space-delimit-aria-attrs_2019-02-25-22-13.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "packageName": "@uifabric/utilities", + "comment": "ARIA: mergeAriaAttributeValues should produce space-delimited output by default", + "type": "patch" + } + ], + "packageName": "@uifabric/utilities", + "email": "keco@microsoft.com" +} \ No newline at end of file diff --git a/common/changes/office-ui-fabric-react/keco-space-delimit-aria-attrs_2019-02-25-22-13.json b/common/changes/office-ui-fabric-react/keco-space-delimit-aria-attrs_2019-02-25-22-13.json new file mode 100644 index 0000000000000..ad3ead8d6ef37 --- /dev/null +++ b/common/changes/office-ui-fabric-react/keco-space-delimit-aria-attrs_2019-02-25-22-13.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "packageName": "office-ui-fabric-react", + "comment": "ARIA: Update calls to mergeAriaAttributeValues to no longer explicitly supply output element id padding.", + "type": "patch" + } + ], + "packageName": "office-ui-fabric-react", + "email": "keco@microsoft.com" +} \ No newline at end of file diff --git a/packages/office-ui-fabric-react/src/components/ComboBox/ComboBox.tsx b/packages/office-ui-fabric-react/src/components/ComboBox/ComboBox.tsx index 4d4200923a40d..afaf02ed15f74 100644 --- a/packages/office-ui-fabric-react/src/components/ComboBox/ComboBox.tsx +++ b/packages/office-ui-fabric-react/src/components/ComboBox/ComboBox.tsx @@ -385,7 +385,7 @@ export class ComboBox extends BaseComponent { readOnly={disabled || !allowFreeform} aria-labelledby={label && id + '-label'} aria-label={ariaLabel && !label ? ariaLabel : undefined} - aria-describedby={mergeAriaAttributeValues(ariaDescribedBy, ' ', keytipAttributes['aria-describedby'])} + aria-describedby={mergeAriaAttributeValues(ariaDescribedBy, keytipAttributes['aria-describedby'])} aria-activedescendant={this._getAriaActiveDescentValue()} aria-disabled={disabled} aria-owns={isOpen ? id + '-list' : undefined} diff --git a/packages/office-ui-fabric-react/src/components/SpinButton/SpinButton.tsx b/packages/office-ui-fabric-react/src/components/SpinButton/SpinButton.tsx index baeefcdbd0223..93a5439ce51a1 100644 --- a/packages/office-ui-fabric-react/src/components/SpinButton/SpinButton.tsx +++ b/packages/office-ui-fabric-react/src/components/SpinButton/SpinButton.tsx @@ -186,7 +186,7 @@ export class SpinButton extends BaseComponent