@sisense/sdk-ui-angular 1.4.1 → 1.5.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.
@@ -99,8 +99,11 @@ const createSisenseContextConnector = (sisenseContextService) => {
99
99
  return {
100
100
  app,
101
101
  isInitialized: true,
102
- enableTracking,
103
102
  showRuntimeErrors,
103
+ tracking: {
104
+ enabled: enableTracking,
105
+ packageName: 'sdk-ui-angular',
106
+ },
104
107
  };
105
108
  },
106
109
  renderContextProvider: createContextProviderRenderer(CustomSisenseContextProvider),
@@ -169,7 +172,11 @@ let QueryService = class QueryService {
169
172
  this.sisenseContextService = sisenseContextService;
170
173
  }
171
174
  /**
172
- * Executes a data query.
175
+ * Executes a data query. If you want to display the query results, you can use
176
+ * them to populate Compose SDK UI elements or third party UI elements.
177
+ *
178
+ * To learn how to populate third party UI elements with query results, see the
179
+ * [External Charts Guide](/guides/sdk/guides/charts/guide-external-charts.html#query)
173
180
  *
174
181
  * @param params - Query parameters
175
182
  * return Query result
@@ -270,7 +277,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
270
277
  }]
271
278
  }], ctorParameters: function () { return [{ type: SisenseContextService }]; } });
272
279
 
273
- var packageVersion = '1.4.1';
280
+ var packageVersion = '1.5.0';
274
281
 
275
282
  function Trackable(target, propertyKey, descriptor) {
276
283
  const originalMethod = descriptor.value;
@@ -1668,7 +1675,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1668
1675
 
1669
1676
  /**
1670
1677
  * The Dashboard Widget component, which is a thin wrapper on {@link ChartWidgetComponent},
1671
- * used to render a widget created in the Sisense instance.
1678
+ * is used to render a widget created in a Sisense Fusion instance.
1679
+ *
1680
+ * To learn more about using Sisense Fusion Widgets in Compose SDK, see
1681
+ * [Sisense Fusion Widgets](https://sisense.dev/guides/sdk/guides/charts/guide-fusion-widgets.html).
1682
+ *
1672
1683
  */
1673
1684
  class DashboardWidgetComponent {
1674
1685
  constructor(sisenseContextService, themeService) {