Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: harmonize prop/enum names #6040

Merged
merged 15 commits into from
Jul 8, 2024
Merged
Prev Previous commit
a11y -> accessibility
  • Loading branch information
Lukas742 committed Jul 8, 2024
commit 90d9c0650cffc120ac24def97f42b8888cd6119d
2 changes: 1 addition & 1 deletion packages/main/src/components/ActionSheet/index.tsx
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ export interface ActionSheetPropTypes extends Omit<ResponsivePopoverPropTypes, '
*/
hideCancelButton?: boolean;
/**
* Defines internally used a11y properties/attributes.
* Defines internally used accessibility properties/attributes.
*/
accessibilityAttributes?: {
actionSheetMobileContent?: {
2 changes: 1 addition & 1 deletion packages/main/src/components/MessageBox/index.tsx
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ export interface MessageBoxPropTypes
/**
* Defines the content of the `MessageBox`.
*
* **Note:** Although this prop accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design and a11y capabilities.
* **Note:** Although this prop accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design and accessibility capabilities.
*/
children: ReactNode | ReactNode[];
/**
2 changes: 1 addition & 1 deletion packages/main/src/components/ObjectPage/index.tsx
Original file line number Diff line number Diff line change
@@ -147,7 +147,7 @@ export interface ObjectPagePropTypes extends Omit<CommonProps, 'placeholder'> {
*/
headerContentPinnable?: boolean;
/**
* Defines internally used a11y properties/attributes.
* Defines internally used accessibility properties/attributes.
*/
accessibilityAttributes?: {
objectPageTopHeader?: {
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ interface ObjectPageAnchorBarPropTypes extends CommonProps {
*/
onHoverToggleButton?: (e: any) => void;
/**
* Defines internally used a11y properties/attributes.
* Defines internally used accessibility properties/attributes.
*/
accessibilityAttributes?: {
objectPageAnchorBar?: {
Loading