@sisense/sdk-ui-angular 1.2.0 → 1.3.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.
@@ -270,7 +270,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
270
270
  }]
271
271
  }], ctorParameters: function () { return [{ type: SisenseContextService }]; } });
272
272
 
273
- var packageVersion = '1.2.0';
273
+ var packageVersion = '1.3.0';
274
274
 
275
275
  function Trackable(target, propertyKey, descriptor) {
276
276
  const originalMethod = descriptor.value;
@@ -2407,12 +2407,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2407
2407
  */
2408
2408
  class AreamapChartComponent {
2409
2409
  constructor() {
2410
+ /**
2411
+ * {@inheritDoc @sisense/sdk-ui!AreamapChartProps.onDataPointClick}
2412
+ *
2413
+ * @category Callbacks
2414
+ */
2415
+ this.dataPointClick = new EventEmitter();
2410
2416
  /** @internal */
2411
2417
  this.chartType = 'areamap';
2412
2418
  }
2413
2419
  }
2414
2420
  AreamapChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreamapChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2415
- AreamapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: AreamapChartComponent, selector: "csdk-areamap-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions" }, ngImport: i0, template: `
2421
+ AreamapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: AreamapChartComponent, selector: "csdk-areamap-chart", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", styleOptions: "styleOptions" }, outputs: { dataPointClick: "dataPointClick" }, ngImport: i0, template: `
2416
2422
  <csdk-chart
2417
2423
  [chartType]="chartType"
2418
2424
  [dataSet]="dataSet"
@@ -2420,6 +2426,7 @@ AreamapChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
2420
2426
  [filters]="filters"
2421
2427
  [highlights]="highlights"
2422
2428
  [styleOptions]="styleOptions"
2429
+ (dataPointClick)="dataPointClick.emit($event)"
2423
2430
  />
2424
2431
  `, isInline: true, dependencies: [{ kind: "component", type: ChartComponent, selector: "csdk-chart", inputs: ["chartType", "dataSet", "dataOptions", "filters", "highlights", "styleOptions", "beforeRender"], outputs: ["dataPointClick", "dataPointContextMenu", "dataPointsSelect"] }] });
2425
2432
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AreamapChartComponent, decorators: [{
@@ -2434,6 +2441,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2434
2441
  [filters]="filters"
2435
2442
  [highlights]="highlights"
2436
2443
  [styleOptions]="styleOptions"
2444
+ (dataPointClick)="dataPointClick.emit($event)"
2437
2445
  />
2438
2446
  `,
2439
2447
  }]
@@ -2447,6 +2455,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2447
2455
  type: Input
2448
2456
  }], styleOptions: [{
2449
2457
  type: Input
2458
+ }], dataPointClick: [{
2459
+ type: Output
2450
2460
  }] } });
2451
2461
 
2452
2462
  /**