> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

## Resource: getPresetDefinitions()

## Article: getPresetDefinitions()

## Article Link: https://dev.wix.com/docs/sdk/host-modules/editor/react-elements/presets/get-preset-definitions.md

## Article Content:

<!-- Source: packages/public-editor-platform-sdk/src/element/index.ts in wix-private/editor-platform -->
# getPresetDefinitions()

Retrieves the [`presets`](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/editor-react-components/manifest-reference/editor-element/presets.md) declared in the selected component's manifest. A preset is a named, predefined visual variation of the component, such as "Card" or "Minimal", each with its own display name, thumbnail, and default styles and data.

## Syntax

```ts
function getPresetDefinitions(): Promise<ElementPresetDefinitions>
```

## Returns

`Promise<ElementPresetDefinitions>`

An object mapping each preset's key to its definition. Each definition can include:

| Property | Type | Description |
| :---- | :---- | :---- |
| `displayName` | string | The label for the preset in the **Explore Designs** auto panel. |
| `thumbnailUrl` | string | URL of the preset's preview thumbnail. |
| `initialSize` | object | The preset's declared `width` and `height` settings. Each is a `sizingType` of `'content'`, `'stretched'`, or `'pixels'`, with a `pixels` value present only when `sizingType` is `'pixels'`. |

## Example

```js
import { reactElements } from '@wix/editor';

const presets = await reactElements.getPresetDefinitions();
```

## See also

- [getAppliedPreset()](https://dev.wix.com/docs/sdk/host-modules/editor/react-elements/presets/get-applied-preset.md)
- [applyPreset()](https://dev.wix.com/docs/sdk/host-modules/editor/react-elements/presets/apply-preset.md)
- [About the React Elements API](https://dev.wix.com/docs/sdk/host-modules/editor/react-elements/introduction.md)