Chore: Update Cuetsy to v0.1.8 version (#66456)

* Update cuetsy version

* Fix defaults

* Update cuetsy

* Update cuelang version in bingo

* Remove TODO comments
This commit is contained in:
Selene
2023-04-14 16:45:54 +02:00
committed by GitHub
parent 8567ec92b0
commit 9665b3afe7
25 changed files with 92 additions and 118 deletions
@@ -664,7 +664,7 @@ export interface TableFooterOptions {
countRows?: boolean;
enablePagination?: boolean;
fields?: Array<string>;
reducer: Array<string>;
reducer: Array<string>; // actually 1 value
show: boolean;
}
@@ -846,7 +846,7 @@ export interface TableFieldOptions {
*/
displayMode?: TableCellDisplayMode;
filterable?: boolean;
hidden?: boolean;
hidden?: boolean; // ?? default is missing or false ??
inspect: boolean;
minWidth?: number;
width?: number;
+1 -1
View File
@@ -79,7 +79,7 @@ TableCellOptions: TableAutoCellOptions | TableSparklineCellOptions | TableBarGau
TableFieldOptions: {
width?: number
minWidth?: number
align: FieldTextAlignment | *"auto"
align: FieldTextAlignment & (*"auto" | _)
// This field is deprecated in favor of using cellOptions
displayMode?: TableCellDisplayMode
cellOptions: TableCellOptions
@@ -27,7 +27,7 @@ export const defaultAnnotationTarget: Partial<AnnotationTarget> = {
* FROM: AnnotationQuery in grafana-data/src/types/annotations.ts
*/
export interface AnnotationQuery {
builtIn: number;
builtIn: number; // TODO should this be persisted at all?
/**
* Datasource to use for annotation.
*/
@@ -193,7 +193,7 @@ export interface FieldColor {
/**
* The main color scheme mode
*/
mode: FieldColorModeId;
mode: (FieldColorModeId | string);
/**
* Some visualizations need to know how to assign a series color from by value color schemes
*/
@@ -13,7 +13,7 @@ export interface QueryHistoryPreference {
* one of: '' | 'query' | 'starred';
*/
homeTab?: string;
}
} // 0.0
export interface Preferences {
/**