@sentio/api 1.0.5-rc.6 → 1.0.5-rc.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/types.gen.d.ts +11 -0
- package/package.json +1 -1
- package/src/types.gen.ts +11 -0
package/dist/src/types.gen.d.ts
CHANGED
|
@@ -3327,7 +3327,18 @@ export declare namespace web_service {
|
|
|
3327
3327
|
title?: string;
|
|
3328
3328
|
collapsed?: boolean;
|
|
3329
3329
|
childLayouts?: DashboardResponsiveLayouts;
|
|
3330
|
+
style?: GroupStyle;
|
|
3331
|
+
/**
|
|
3332
|
+
* Palette key (e.g. "green", "purple") used to derive the header
|
|
3333
|
+
* background. Empty string keeps the theme default.
|
|
3334
|
+
*/
|
|
3335
|
+
highlightColor?: string;
|
|
3330
3336
|
};
|
|
3337
|
+
/**
|
|
3338
|
+
* Visual treatment for the Group's header card. Default = plain border;
|
|
3339
|
+
* Emphasis = solid highlight_color tint behind the title row.
|
|
3340
|
+
*/
|
|
3341
|
+
type GroupStyle = 'DEFAULT' | 'EMPHASIS';
|
|
3331
3342
|
type ImportDashboardRequest = {
|
|
3332
3343
|
/**
|
|
3333
3344
|
* The id of the target dashboard to import into.
|
package/package.json
CHANGED
package/src/types.gen.ts
CHANGED
|
@@ -3341,7 +3341,18 @@ export namespace web_service {
|
|
|
3341
3341
|
title?: string;
|
|
3342
3342
|
collapsed?: boolean;
|
|
3343
3343
|
childLayouts?: DashboardResponsiveLayouts;
|
|
3344
|
+
style?: GroupStyle;
|
|
3345
|
+
/**
|
|
3346
|
+
* Palette key (e.g. "green", "purple") used to derive the header
|
|
3347
|
+
* background. Empty string keeps the theme default.
|
|
3348
|
+
*/
|
|
3349
|
+
highlightColor?: string;
|
|
3344
3350
|
};
|
|
3351
|
+
/**
|
|
3352
|
+
* Visual treatment for the Group's header card. Default = plain border;
|
|
3353
|
+
* Emphasis = solid highlight_color tint behind the title row.
|
|
3354
|
+
*/
|
|
3355
|
+
export type GroupStyle = 'DEFAULT' | 'EMPHASIS';
|
|
3345
3356
|
export type ImportDashboardRequest = {
|
|
3346
3357
|
/**
|
|
3347
3358
|
* The id of the target dashboard to import into.
|