forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
730 B
24 lines
730 B
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
// NOTE: This file will be auto generated from models.cue
|
|
// It is currenty hand written but will serve as the target for cuetsy
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
import { CanvasGroupOptions, DEFAULT_CANVAS_ELEMENT_CONFIG } from 'app/features/canvas';
|
|
|
|
export const modelVersion = Object.freeze([1, 0]);
|
|
|
|
export interface PanelOptions {
|
|
inlineEditing: boolean;
|
|
root: CanvasGroupOptions;
|
|
}
|
|
|
|
export const defaultPanelOptions: PanelOptions = {
|
|
inlineEditing: true,
|
|
root: ({
|
|
elements: [
|
|
{
|
|
...DEFAULT_CANVAS_ELEMENT_CONFIG,
|
|
},
|
|
],
|
|
} as unknown) as CanvasGroupOptions,
|
|
};
|
|
|