Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/MigrationGuide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ As the new `Toolbar` is a completely different component, we can't offer a prope
### ActionSheet

The prop `portalContainer` has been removed as it is no longer needed due to the [popover API](https://developer.mozilla.org/en-US/docs/Web/API/Popover_API) which is now used in the UI5 Web Components.
For a better aligned API, the `showCancelButton` prop has been replaced wih the `hideCancelButton` prop and the logic has been inverted. Also, the `a11yConfig` prop has been renamed to `accessibilityAttributes`.
For a better aligned API, the `showCancelButton` prop has been replaced with the `hideCancelButton` prop and the logic has been inverted. Also, the `a11yConfig` prop has been renamed to `accessibilityAttributes`.

```tsx
// v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ You can set a reference line to any value by using the `referenceLine` `chartCon
description={<>When multiple columns per dimension are present (e.g. stacked + standalone), the built-in tooltip total is not available. You can provide a custom tooltip via the <code>tooltipConfig.content</code> prop to display a total for specific measures.</>}
/>

<TooltipStory of={ComponentStories.WithCustomTooltipConfig} />;
<TooltipStory of={ComponentStories.WithCustomTooltipConfig} />

<LegendStory of={ComponentStories.WithCustomLegendConfig} />

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ chart can be made to contain only custom annotations that utilize the other feat
interaction with the mouse is needed for the custom annotation, the annotation should have the
`pointerEvents` set to _auto_ in its own style.

The example below shows the timeline for the some of the most momentuous inventions in the
The example below shows the timeline for the some of the most momentous inventions in the
last 6000 years from the year 2022. These annotations have been made using SVG just to
demonstrate that any valid element can be used for making the annotations.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const meta = {
<FlexBox wrap={FlexBoxWrap.Wrap}>
<FlexBox direction={FlexBoxDirection.Column}>
<Label>Location: Warehouse A</Label>
<Label>Halway: 23L</Label>
<Label>Hallway: 23L</Label>
<Label>Rack: 34</Label>
</FlexBox>
<span style={{ width: '1rem' }} />
Expand Down
2 changes: 1 addition & 1 deletion packages/main/src/webComponents/Table/Table.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ The `invisible` prop of row actions allows you to hide specific row actions whil

<Canvas of={ComponentStories.withRowActions} />

## Drag and rop table rows
## Drag and drop table rows

Enable drag-and-drop by using the `onMoveOver` and `onMove` event in combination with the `movable` prop on the `TableRow`.

Expand Down
2 changes: 1 addition & 1 deletion packages/main/src/webComponents/Toast/Toast.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import * as ComponentStories from './Toast.stories';

## Show a toast

You can open and close the `Toaast` component in a declarative way using the `open` prop.
You can open and close the `Toast` component in a declarative way using the `open` prop.

**Example**

Expand Down
2 changes: 1 addition & 1 deletion packages/main/src/webComponents/Toolbar/Toolbar.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function ToolbarWithPopover() {

## ToolbarItem

<Description of={ToolbarItem} />"
<Description of={ToolbarItem} />
<ArgTypesWithNote metaOf={ComponentStories} of={ToolbarItem} />

## ToolbarButton
Expand Down
Loading