Skip to content

Commit f5ad046

Browse files
committed
use Title Case for headings
1 parent 97e716a commit f5ad046

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/knowledge-base/FAQ.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ import { Badge } from "@sb/components/Badge.js";
2626
<br />
2727
<br />
2828

29-
## Where can I find all compatible versions of `@ui5/webcomponents` and `@ui5/webcomponents-react`?
29+
## Where Can I Find All Compatible Versions of `@ui5/webcomponents` and `@ui5/webcomponents-react`?
3030

3131
All necessary `@ui5/webcomponents` packages are `peerDependencies` of `@ui5/webcomponents-react`, so if you're using npm v7 or later, then these dependencies should be auto installed when running `npm install`.
3232
If you want to check which versions are compatible you can find a compatibility table [here](?path=/docs/getting-started--docs#add-ui5webcomponents-react-to-an-existing-app).
3333

34-
## What are "abstract" UI5 Web Components?
34+
## What Are "abstract" UI5 Web Components?
3535

3636
Abstract UI5 Web Components are mainly there to pass props to the actual component inside the shadow root. Therefore, all attributes passed to the element, will have no effect on the actual component.
3737

@@ -60,17 +60,17 @@ Rendering a `ComboBoxItem` with some custom HTML attributes...
6060

6161
As you can see, both `title` and `style` are correctly applied, but since the item doesn't have children, nor a shadow root the attributes don't have an effect on the component.
6262

63-
## How can I style elements inside the shadow root of a web component?
63+
## How Can I Style Elements Inside the Shadow Root of a Web Component?
6464

6565
Styling elements inside the shadow root is only supported by leveraging the [`::part` pseudo-element](https://developer.mozilla.org/en-US/docs/Web/CSS/::part). You can find out more about this [here](?path=/docs/knowledge-base-styling--docs#css-shadow-parts).
6666

67-
## How can I reuse or change colors, fonts, etc. of UI5 Web Components for React?
67+
## How Can I Reuse or Change Colors, Fonts, etc. of UI5 Web Components for React?
6868

6969
UI5 Web Components for React comes with a [publicly available](https://github.com/SAP/theming-base-content) set of CSS variables that ensure the same look and feel across applications. Changing these values is not recommended, if you still need to customize them, you can find out more about this [here](?path=/docs/knowledge-base-styling--docs#styling-ui5-web-components-for-react-components).
7070

7171
To reuse these styles, you can either use the CSS variable, or use our [Theming Parameters](?path=/docs/knowledge-base-public-utils--docs#theming-parameters).
7272

73-
## Why is changing the theme not working?
73+
## Why Is Changing the Theme Not Working?
7474

7575
You have to ensure to import the `Assets` with the different themes, otherwise only the default theme will be used.
7676

@@ -80,7 +80,7 @@ import '@ui5/webcomponents-react/dist/Assets';
8080

8181
Further information about theming can be found in our and the UI5 Web Components [Theming documentation](?path=/docs/getting-started--docs#theming).
8282

83-
## How can I distinguish if a component is developed in the `ui5-webcomponents` or `ui5-webcomponents-react` repo?
83+
## How Can I Distinguish If a Component Is Developed in the `ui5-webcomponents` or `ui5-webcomponents-react` Repo?
8484

8585
Each component developed by the UI5 Web Components team ([`ui5-webcomponents`](https://github.com/SAP/ui5-webcomponents)) that is wrapped by the UI5 Web Components for React ([`ui5-webcomponents-react`](https://github.com/SAP/ui5-webcomponents-react)) wrapper includes the following note in its component description:
8686

@@ -92,13 +92,13 @@ Additionally, Storybook supports filtering by tags, allowing you to filter by di
9292

9393
<img src={SbTagFilter} alt="Storybook Tag Filter" height={420} />
9494

95-
## What do the Badges in the Side Navigation mean?
95+
## What Do the Badges in the Side Navigation Mean?
9696

9797
- <Badge type="custom" />: There are no global design or UX specifications for this component, or it deviates from them partially or fully. More details can be found in the component’s description.
9898
- <Badge type="experimental" />: The component or pattern is in an experimental state, meaning changes to its public API may occur without a major version update (`v3.0.0`).
9999
- <Badge type="deprecated" />: The component is deprecated and will be removed in the next major version update (`v3.0.0`). More details can be found the component's description.
100100

101-
## Why isn't scoping working?
101+
## Why Isn't Scoping working?
102102

103103
Starting from UI5 Web Components (for React) 2.0.0, the order of imports with regard to scoping and components matters.
104104
Setting the scoping suffix must be done before importing any components, as they use the suffix at the top-level of the module - meaning when a component is imported, the suffix has to be known.

0 commit comments

Comments
 (0)