@crowdstrike/logscale-dashboard 1.144.0--build-1494--sha-69dc06ac8267f79be7be7f155fcf4448f2ea9b27 → 1.146.0--build-1557--sha-b25ef862e5966848eff94276c94d791202722993
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/index.d.ts +13 -1
- package/index.js +547 -618
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -102,11 +102,13 @@ export declare class Dashboard extends WebcomponentBase<Options> {
|
|
102
102
|
/**
|
103
103
|
* Set the state of a dashboard.
|
104
104
|
*
|
105
|
+
* todo [kfrank] extend this to take repoOrViewName and timezone
|
106
|
+
*
|
105
107
|
* @param dashboardParams - the new dashboard state
|
106
108
|
*
|
107
109
|
* @public
|
108
110
|
*/
|
109
|
-
setState(dashboardParams:
|
111
|
+
setState(dashboardParams: SetStateParams): void;
|
110
112
|
/**
|
111
113
|
* Set parameter values on dashboard.
|
112
114
|
*
|
@@ -567,6 +569,16 @@ export declare type SetParametersOptions = {
|
|
567
569
|
apply?: boolean;
|
568
570
|
};
|
569
571
|
|
572
|
+
/**
|
573
|
+
* Params to use when calling Dashboard.setState.
|
574
|
+
*
|
575
|
+
* @public
|
576
|
+
*/
|
577
|
+
export declare type SetStateParams = DashboardParams & {
|
578
|
+
repoOrViewName?: string;
|
579
|
+
timezone?: string;
|
580
|
+
};
|
581
|
+
|
570
582
|
/**
|
571
583
|
* The shared properties of all interaction types.
|
572
584
|
*
|