v23

Orbit Migration Guide v23

Breaking changes

Required node version

Removal of ariaLabel prop in NavigationBar

Removal of Tooltip prop in Checkbox and Radio

Title prop for Skeleton component

import Skeleton from "@kiwicom/orbit-components/lib/Skeleton";
<Skeleton />;
import Skeleton from "@kiwicom/orbit-components/lib/Skeleton";
<Skeleton title="Loading" />;
intl.formatMessage({
id: "common.loading",
defaultMessage: "Loading",
});

Prop name change in Stepper and StepperStateless

<Stepper ariaLabelledBy="label-id" />
<StepperStateless ariaLabelledBy="label-id" />
<Stepper ariaLabelledby="label-id" />
<StepperStateless ariaLabelledby="label-id" />

Codemod

npx jscodeshift -t https://raw.githubusercontent.com/kiwicom/orbit/master/packages/orbit-components/transforms/transforms-v23.js --parser=tsx --extensions=ts,tsx <pathToYourCode>