v1.28.0
This version contains an overhaul of the API surface to improve its discoverability and its usage in a code editor. The aim was to reduce the number of top-level exports to make it easier to find the ones that matter. It also aligns it with the structure of the documentation.
The previous API surface is still there, only deprecated. All of your existing extensions will continue to work. You will get helpful hints in your code editor to migrate your extension.
import { Clipboard } from "@raycast/api";
// deprecated copyTextToClipboard
await Clipboard.copy("text");
// deprecated clearClipboard
await Clipboard.clear();
// deprecated pasteText
await Clipboard.paste("text");
The methods and interfaces related to the Storage can now be found under the
LocalStorage
namespace.import { LocalStorage } from "@raycast/api";
// deprecated allLocalStorageItems
const items = await LocalStorage.allItems();
// deprecated getLocalStorageItem
const item = await LocalStorage.getItem("key");
// deprecated setLocalStorageItem
await LocalStorage.setItem("key", "value");
// deprecated removeLocalStorageItem
await LocalStorage.removeItem("key");
// deprecated clearLocalStorage
await LocalStorage.clear();
// we didn't expect you to use the Storage interfaces
// but they are now also under LocalStorage
// deprecated LocalStorageValue
LocalStorage.Value;
// deprecated LocalStorageValues
LocalStorage.Values;
showToast
now accepts a Toast.Options
object as an argument and its style will default to Toast.Style.Success
.import { showToast, Toast } from "@raycast/api";
// deprecated new Toast()
const toast = await showToast({ title: "Toast title" }); // Success by default
// deprecated showToast(ToastStyle.Failure, 'Toast title')
await showToast({ title: "Toast title", style: Toast.Style.Failure });
The interfaces and enumerations of both the Toast and Alert can now be found under their respective namespaces.
import { Alert, Toast } from "@raycast/api";
// deprecated ToastOptions
Toast.Options;
// deprecated ToastActionOptions
Toast.ActionOptions;
// deprecated ToastStyle
Toast.Style;
// deprecated AlertOptions
Alert.Options;
// deprecated AlertActionOptions
Alert.ActionOptions;
// deprecated AlertActionStyle
Alert.ActionStyle;
import { Keyboard } from "@raycast/api";
// deprecated KeyboardShortcut
Keyboard.Shortcut;
// deprecated KeyModifier
Keyboard.KeyModifier;
// deprecated KeyEquivalent
Keyboard.KeyEquivalent;
We are deprecating the
preferences
constant because we found it to be error-prone. Instead, you should always use getPreferenceValues()
which allows for a type-safe access with fallback to the defaults.There are two important changes related to the React components:
ActionPanel.Item
has been renamed toAction
. All the specific actions are now nested underAction
. This will make it easier to introduce and teach the concept of Action.- All the props interfaces are now accessible under their respective components
import { Action, List } from '@raycast/api'
// deprecated ActionPanel.Item
<Action title="Action title" onAction={() => {}}>
// deprecated CopyToClipboardAction
<Action.CopyToClipboard content="text">
// deprecated ListProps
List.Props
import { Color } from "@raycast/api";
// deprecated DynamicColor
Color.Dynamic;
// deprecated ColorLike
Color.ColorLike;
The interfaces and enumerations related to the Image can now be found under the
Image
namespace. Icon
is still a top-level export.import { Image } from "@raycast/api";
// deprecated ImageLike
Image.ImageLike;
// deprecated ImageSource
Image.Source;
// deprecated ImageMask
Image.Mask;
- We are deprecating the
randomId
utility. It wasn't related to Raycast. Instead, you can use thenanoid
dependency. - We are deprecating the
useId
hook. It was used internally but there shouldn't be a use-case for it in your extensions. - We are deprecating the
useActionPanel
hook. Use theActionPanel
component instead. - We are deprecating the
render
method. You shouldexport default
your root component instead.
Last modified 1yr ago