@grafana/scenes 6.29.7 → 6.30.0--canary.1215.16930907423.0

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/index.js CHANGED
@@ -5801,9 +5801,17 @@ const OPERATORS = [
5801
5801
  value: "<",
5802
5802
  description: "Less than"
5803
5803
  },
5804
+ {
5805
+ value: "<=",
5806
+ description: "Less than or equal to"
5807
+ },
5804
5808
  {
5805
5809
  value: ">",
5806
5810
  description: "Greater than"
5811
+ },
5812
+ {
5813
+ value: ">=",
5814
+ description: "Greater than or equal to"
5807
5815
  }
5808
5816
  ];
5809
5817
  class AdHocFiltersVariable extends SceneObjectBase {
@@ -8774,9 +8782,9 @@ class SceneDataTransformer extends SceneObjectBase {
8774
8782
  this._transformSub.unsubscribe();
8775
8783
  }
8776
8784
  const ctx = {
8777
- interpolate: (value) => {
8785
+ interpolate: (value, scopedVars) => {
8778
8786
  var _a2;
8779
- return sceneGraph.interpolate(this, value, (_a2 = data$1.request) == null ? void 0 : _a2.scopedVars);
8787
+ return sceneGraph.interpolate(this, value, { ...(_a2 = data$1.request) == null ? void 0 : _a2.scopedVars, ...scopedVars });
8780
8788
  }
8781
8789
  };
8782
8790
  let streams = [data.transformDataFrame(seriesTransformations, data$1.series, ctx)];