+++ # ----------------------------------------------------------------------- # Do not edit this file. It is automatically generated by API Documenter. # ----------------------------------------------------------------------- title = "CompletionItemGroup" keywords = ["grafana","documentation","sdk","@grafana/ui"] type = "docs" +++ ## CompletionItemGroup interface Signature ```typescript export interface CompletionItemGroup ``` Import ```typescript import { CompletionItemGroup } from '@grafana/ui'; ``` Properties | Property | Type | Description | | --- | --- | --- | | [items](#items-property) | CompletionItem[] | List of suggestions of this group. | | [label](#label-property) | string | Label that will be displayed for all entries of this group. | | [prefixMatch](#prefixmatch-property) | boolean | If true, match only by prefix (and not mid-word). | | [skipFilter](#skipfilter-property) | boolean | If true, do not filter items in this group based on the search. | | [skipSort](#skipsort-property) | boolean | If true, do not sort items. | ### items property List of suggestions of this group. Signature ```typescript items: CompletionItem[]; ``` ### label property Label that will be displayed for all entries of this group. Signature ```typescript label: string; ``` ### prefixMatch property If true, match only by prefix (and not mid-word). Signature ```typescript prefixMatch?: boolean; ``` ### skipFilter property If true, do not filter items in this group based on the search. Signature ```typescript skipFilter?: boolean; ``` ### skipSort property If true, do not sort items. Signature ```typescript skipSort?: boolean; ```