> 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: getDisplayGroupDefinitions()

## Article: getDisplayGroupDefinitions()

## Article Link: https://dev.wix.com/docs/sdk/host-modules/editor/react-elements/component-metadata/get-display-group-definitions.md

## Article Content:

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

Retrieves the [`displayGroups`](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/editor-react-components/manifest-reference/editor-element/display-groups/display-groups.md) declared in the selected component's manifest.

## Syntax

```ts
function getDisplayGroupDefinitions(
  options?: { filter?: { groupType?: string } }
): Promise<DisplayGroupDefinitions>
```

## Parameters

| Name | Type | Description |
| :---- | :---- | :---- |
| `options.filter.groupType` | string | Restricts the result to display groups of a specific type, such as `'cssDataType'` or `'data'`. |

## Returns

`Promise<DisplayGroupDefinitions>`

An object mapping each display group's key to its definition.

## Example

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

const groups = await reactElements.getDisplayGroupDefinitions();

const cssGroups = await reactElements.getDisplayGroupDefinitions({
  filter: { groupType: 'cssDataType' },
});
```

## See also

- [getDisplayName()](https://dev.wix.com/docs/sdk/host-modules/editor/react-elements/component-metadata/get-display-name.md)
- [Display Groups](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/editor-react-components/manifest-reference/editor-element/display-groups/display-groups.md)
- [About the React Elements API](https://dev.wix.com/docs/sdk/host-modules/editor/react-elements/introduction.md)