mirror of
https://github.com/grafana/grafana.git
synced 2025-01-02 12:17:01 -06:00
3d33de1751
Lead all top-level properties that we do not intend to export with an underscore. In 2.2.0, only definitions starting with a capital letter were exported. As well, properties with a leading underscore were not visible to an entire package - just within the same file. 3.0.0 still considers them hidden, however, they are now visible to an entire package.
15 lines
198 B
CUE
15 lines
198 B
CUE
package panels
|
|
|
|
_link: {
|
|
// Link title.
|
|
title?: string
|
|
// Whether to open link in new browser tab.
|
|
targetBlank: bool | *true
|
|
// URL of link.
|
|
url: string
|
|
}
|
|
|
|
_panelLink: _link
|
|
|
|
_dataLink: _link
|