@sisense/sdk-ui-angular 1.11.0 → 1.13.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.
@@ -0,0 +1,134 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { type ChartType } from '../../sdk-ui-core-exports';
3
+ import { type AreaRangeChartProps } from '@sisense/sdk-ui-preact';
4
+ import { ArgumentsAsObject } from '../../types';
5
+ import * as i0 from "@angular/core";
6
+ /**
7
+ * A component that displays a range of data over a given time period or across multiple categories.
8
+ * It is particularly useful for visualizing the minimum and maximum values in a dataset, along with
9
+ * the area between these values.
10
+ *
11
+ * @example
12
+ * ```html
13
+ * <csdk-area-range-chart
14
+ * [dataSet]="chart.dataSet"
15
+ * [dataOptions]="chart.dataOptions"
16
+ * [highlights]="filters"
17
+ * [beforeRender]="onBeforeRender"
18
+ * (dataPointClick)="logArguments($event)"
19
+ * (dataPointContextMenu)="logArguments($event)"
20
+ * (dataPointsSelect)="logArguments($event)"
21
+ * />
22
+ * ```
23
+ * ```ts
24
+ import { Component } from '@angular/core';
25
+ import { measureFactory, filterFactory, Filter } from '@sisense/sdk-data';
26
+ import * as DM from '../../assets/sample-healthcare-model';
27
+ import type { ChartType, RangeChartDataOptions } from '@sisense/sdk-ui-angular';
28
+
29
+ @Component({
30
+ selector: 'app-analytics',
31
+ templateUrl: './analytics.component.html',
32
+ styleUrls: ['./analytics.component.scss'],
33
+ })
34
+ export class AnalyticsComponent {
35
+ DM = DM;
36
+ filters = [filterFactory.members(DM.Divisions.Divison_name, ['Cardiology', 'Neurology'])];
37
+ chart = {
38
+ chartType: 'arearange' as ChartType,
39
+ dataSet: DM.DataSource,
40
+ dataOptions: {
41
+ category: [DM.Admissions.Admission_Time.Years],
42
+ value: [
43
+ {
44
+ title: 'Admission Cost Range',
45
+ upperBound: measureFactory.multiply(
46
+ measureFactory.sum(DM.Admissions.Cost_of_admission, 'Lower Admission'),
47
+ 0.6,
48
+ ),
49
+ lowerBound: measureFactory.multiply(
50
+ measureFactory.sum(DM.Admissions.Cost_of_admission, 'Upper Admission'),
51
+ 1.4,
52
+ ),
53
+ }
54
+ ],
55
+ breakBy: [],
56
+ } as RangeChartDataOptions,
57
+ };
58
+
59
+ onBeforeRender(options: any) {
60
+ console.log('beforeRender');
61
+ console.log(options);
62
+ return options;
63
+ }
64
+
65
+ logArguments(...args: any[]) {
66
+ console.log(args);
67
+ }
68
+ }
69
+ * ```
70
+ * <img src="media://angular-area-range-chart-example.png" width="800px" />
71
+ *
72
+ * @group Charts
73
+ * @beta
74
+ */
75
+ export declare class AreaRangeChartComponent {
76
+ /**
77
+ * {@inheritDoc @sisense/sdk-ui!AreaRangeChartProps.dataSet}
78
+ *
79
+ * @category Data
80
+ */
81
+ dataSet: AreaRangeChartProps['dataSet'];
82
+ /**
83
+ * {@inheritDoc @sisense/sdk-ui!AreaRangeChartProps.dataOptions}
84
+ *
85
+ * @category Chart
86
+ */
87
+ dataOptions: AreaRangeChartProps['dataOptions'];
88
+ /**
89
+ * {@inheritDoc @sisense/sdk-ui!AreaRangeChartProps.filters}
90
+ *
91
+ * @category Data
92
+ */
93
+ filters: AreaRangeChartProps['filters'];
94
+ /**
95
+ * {@inheritDoc @sisense/sdk-ui!AreaRangeChartProps.highlights}
96
+ *
97
+ * @category Data
98
+ */
99
+ highlights: AreaRangeChartProps['highlights'];
100
+ /**
101
+ * {@inheritDoc @sisense/sdk-ui!AreaRangeChartProps.styleOptions}
102
+ *
103
+ * @category Chart
104
+ */
105
+ styleOptions: AreaRangeChartProps['styleOptions'];
106
+ /**
107
+ * {@inheritDoc @sisense/sdk-ui!AreaRangeChartProps.onBeforeRender}
108
+ *
109
+ * @category Callbacks
110
+ */
111
+ beforeRender: AreaRangeChartProps['onBeforeRender'];
112
+ /**
113
+ * {@inheritDoc @sisense/sdk-ui!AreaRangeChartProps.onDataPointClick}
114
+ *
115
+ * @category Callbacks
116
+ */
117
+ dataPointClick: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
118
+ /**
119
+ * {@inheritDoc @sisense/sdk-ui!AreaRangeChartProps.onDataPointContextMenu}
120
+ *
121
+ * @category Callbacks
122
+ */
123
+ dataPointContextMenu: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
124
+ /**
125
+ * {@inheritDoc @sisense/sdk-ui!AreaRangeChartProps.onDataPointsSelected}
126
+ *
127
+ * @category Callbacks
128
+ */
129
+ dataPointsSelect: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointsEventHandler | undefined, ["points", "nativeEvent"]>>;
130
+ /** @internal */
131
+ chartType: ChartType;
132
+ static ɵfac: i0.ɵɵFactoryDeclaration<AreaRangeChartComponent, never>;
133
+ static ɵcmp: i0.ɵɵComponentDeclaration<AreaRangeChartComponent, "csdk-area-range-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
134
+ }
@@ -15,3 +15,4 @@ export * from './boxplot-chart.component';
15
15
  export * from './scattermap-chart.component';
16
16
  export * from './areamap-chart.component';
17
17
  export * from './pivot-table.component';
18
+ export * from './area-range-chart.component';
@@ -1,2 +1,2 @@
1
1
  export { boxWhiskerProcessResult } from '@sisense/sdk-ui-preact';
2
- export type { ChartType, CartesianChartType, CategoricalChartType, ScatterChartType, IndicatorChartType, BoxplotChartType, ScattermapChartType, AreamapChartType, TableType, AreaSubtype, LineSubtype, PieSubtype, PolarSubtype, StackableSubtype, BoxplotSubtype, WidgetType, CartesianWidgetType, CategoricalWidgetType, TabularWidgetType, ChartDataOptions, CartesianChartDataOptions, CategoricalChartDataOptions, ScatterChartDataOptions, IndicatorChartDataOptions, BoxplotChartDataOptions, BoxplotChartCustomDataOptions, ScattermapChartDataOptions, AreamapChartDataOptions, TableDataOptions, PivotTableDataOptions, WidgetDataOptions, NumberFormatConfig, DecimalScale, DataColorCondition, ConditionalDataColorOptions, DataColorOptions, RangeDataColorOptions, UniformDataColorOptions, ValueToColorMap, MultiColumnValueToColorMap, SortDirection, BoxWhiskerType, ScattermapLocationLevel, StyledColumn, StyledMeasureColumn, PivotRowsSort, ChartStyleOptions, LineStyleOptions, AreaStyleOptions, StackableStyleOptions, PieStyleOptions, FunnelStyleOptions, PolarStyleOptions, IndicatorStyleOptions, NumericSimpleIndicatorStyleOptions, NumericBarIndicatorStyleOptions, GaugeIndicatorStyleOptions, ScatterStyleOptions, TreemapStyleOptions, SunburstStyleOptions, BoxplotStyleOptions, ScattermapStyleOptions, AreamapStyleOptions, ChartWidgetStyleOptions, WidgetStyleOptions, DashboardWidgetStyleOptions, TableStyleOptions, PivotTableStyleOptions, DataLimits, Legend, Markers, Labels, IndicatorComponents, ScatterMarkerSize, LineWidth, AxisLabel, Convolution, SeriesLabels, X2Title, ScattermapMarkers, WidgetModel, DashboardModel, BeforeRenderHandler, DataPoint, ScatterDataPoint, HighchartsOptions, BoxplotDataPoint, AppConfig, DateConfig, ContextMenuProps, MenuItemSection, MonthOfYear, DayOfWeek, DateLevel, ThemeOid, GetDashboardModelOptions, GetDashboardModelsOptions, SeriesChartType, MenuPosition, ThemeSettings, Color, ColorPaletteTheme, Navigator, DrilldownOptions, DrilldownSelection, CriteriaFilterType, Member, FilterVariant, } from '@sisense/sdk-ui-preact';
2
+ export type { ChartType, CartesianChartType, CategoricalChartType, ScatterChartType, IndicatorChartType, BoxplotChartType, ScattermapChartType, AreamapChartType, RangeChartType, TableType, AreaSubtype, LineSubtype, PieSubtype, PolarSubtype, StackableSubtype, BoxplotSubtype, WidgetType, CartesianWidgetType, CategoricalWidgetType, TabularWidgetType, ChartDataOptions, CartesianChartDataOptions, CategoricalChartDataOptions, ScatterChartDataOptions, IndicatorChartDataOptions, BoxplotChartDataOptions, BoxplotChartCustomDataOptions, ScattermapChartDataOptions, AreamapChartDataOptions, TableDataOptions, PivotTableDataOptions, WidgetDataOptions, RangeChartDataOptions, NumberFormatConfig, DecimalScale, DataColorCondition, ConditionalDataColorOptions, DataColorOptions, RangeDataColorOptions, UniformDataColorOptions, ValueToColorMap, MultiColumnValueToColorMap, SortDirection, BoxWhiskerType, ScattermapLocationLevel, StyledColumn, StyledMeasureColumn, PivotRowsSort, ChartStyleOptions, LineStyleOptions, AreaStyleOptions, StackableStyleOptions, PieStyleOptions, FunnelStyleOptions, PolarStyleOptions, IndicatorStyleOptions, NumericSimpleIndicatorStyleOptions, NumericBarIndicatorStyleOptions, GaugeIndicatorStyleOptions, ScatterStyleOptions, TreemapStyleOptions, SunburstStyleOptions, BoxplotStyleOptions, ScattermapStyleOptions, AreamapStyleOptions, ChartWidgetStyleOptions, WidgetStyleOptions, DashboardWidgetStyleOptions, TableStyleOptions, PivotTableStyleOptions, AreaRangeStyleOptions, DataLimits, Legend, Markers, Labels, IndicatorComponents, ScatterMarkerSize, LineWidth, AxisLabel, Convolution, SeriesLabels, X2Title, ScattermapMarkers, WidgetModel, DashboardModel, BeforeRenderHandler, DataPoint, ScatterDataPoint, HighchartsOptions, BoxplotDataPoint, AppConfig, DateConfig, ContextMenuProps, MenuItemSection, MonthOfYear, DayOfWeek, DateLevel, ThemeOid, GetDashboardModelOptions, GetDashboardModelsOptions, SeriesChartType, MenuPosition, ThemeSettings, Color, ColorPaletteTheme, Navigator, DrilldownOptions, DrilldownSelection, CriteriaFilterType, Member, FilterVariant, } from '@sisense/sdk-ui-preact';
@@ -6,27 +6,28 @@ import * as i4 from "./components/widgets/chart-widget.component";
6
6
  import * as i5 from "./components/charts/column-chart.component";
7
7
  import * as i6 from "./components/charts/bar-chart.component";
8
8
  import * as i7 from "./components/charts/area-chart.component";
9
- import * as i8 from "./components/charts/line-chart.component";
10
- import * as i9 from "./components/charts/indicator-chart.component";
11
- import * as i10 from "./components/charts/scatter-chart.component";
12
- import * as i11 from "./components/charts/pie-chart.component";
13
- import * as i12 from "./components/charts/funnel-chart.component";
14
- import * as i13 from "./components/charts/polar-chart.component";
15
- import * as i14 from "./components/charts/treemap-chart.component";
16
- import * as i15 from "./components/charts/sunburst-chart.component";
17
- import * as i16 from "./components/widgets/table-widget.component";
18
- import * as i17 from "./components/widgets/dashboard-widget.component";
19
- import * as i18 from "./components/filters/member-filter-tile.component";
20
- import * as i19 from "./components/widgets/drilldown-widget.component";
21
- import * as i20 from "./components/filters/date-range-filter-tile.component";
22
- import * as i21 from "./components/drilldown-breadcrumbs.component";
23
- import * as i22 from "./components/context-menu.component";
24
- import * as i23 from "./components/charts/boxplot-chart.component";
25
- import * as i24 from "./components/charts/scattermap-chart.component";
26
- import * as i25 from "./components/charts/areamap-chart.component";
27
- import * as i26 from "./components/charts/pivot-table.component";
28
- import * as i27 from "@angular/common";
29
- import * as i28 from "./decorators/decorators.module";
9
+ import * as i8 from "./components/charts/area-range-chart.component";
10
+ import * as i9 from "./components/charts/line-chart.component";
11
+ import * as i10 from "./components/charts/indicator-chart.component";
12
+ import * as i11 from "./components/charts/scatter-chart.component";
13
+ import * as i12 from "./components/charts/pie-chart.component";
14
+ import * as i13 from "./components/charts/funnel-chart.component";
15
+ import * as i14 from "./components/charts/polar-chart.component";
16
+ import * as i15 from "./components/charts/treemap-chart.component";
17
+ import * as i16 from "./components/charts/sunburst-chart.component";
18
+ import * as i17 from "./components/widgets/table-widget.component";
19
+ import * as i18 from "./components/widgets/dashboard-widget.component";
20
+ import * as i19 from "./components/filters/member-filter-tile.component";
21
+ import * as i20 from "./components/widgets/drilldown-widget.component";
22
+ import * as i21 from "./components/filters/date-range-filter-tile.component";
23
+ import * as i22 from "./components/drilldown-breadcrumbs.component";
24
+ import * as i23 from "./components/context-menu.component";
25
+ import * as i24 from "./components/charts/boxplot-chart.component";
26
+ import * as i25 from "./components/charts/scattermap-chart.component";
27
+ import * as i26 from "./components/charts/areamap-chart.component";
28
+ import * as i27 from "./components/charts/pivot-table.component";
29
+ import * as i28 from "@angular/common";
30
+ import * as i29 from "./decorators/decorators.module";
30
31
  /**
31
32
  * SDK UI Module, which is a container for components.
32
33
  *
@@ -57,6 +58,6 @@ import * as i28 from "./decorators/decorators.module";
57
58
  */
58
59
  export declare class SdkUiModule {
59
60
  static ɵfac: i0.ɵɵFactoryDeclaration<SdkUiModule, never>;
60
- static ɵmod: i0.ɵɵNgModuleDeclaration<SdkUiModule, [typeof i1.BasicMemberFilterTileComponent, typeof i2.ChartComponent, typeof i3.TableComponent, typeof i4.ChartWidgetComponent, typeof i5.ColumnChartComponent, typeof i6.BarChartComponent, typeof i7.AreaChartComponent, typeof i8.LineChartComponent, typeof i9.IndicatorChartComponent, typeof i10.ScatterChartComponent, typeof i11.PieChartComponent, typeof i12.FunnelChartComponent, typeof i13.PolarChartComponent, typeof i14.TreemapChartComponent, typeof i15.SunburstChartComponent, typeof i16.TableWidgetComponent, typeof i17.DashboardWidgetComponent, typeof i18.MemberFilterTileComponent, typeof i19.DrilldownWidgetComponent, typeof i20.DateRangeFilterTileComponent, typeof i21.DrilldownBreadcrumbsComponent, typeof i22.ContextMenuComponent, typeof i23.BoxplotChartComponent, typeof i24.ScattermapChartComponent, typeof i25.AreamapChartComponent, typeof i26.PivotTableComponent], [typeof i27.CommonModule, typeof i28.DecoratorsModule], [typeof i1.BasicMemberFilterTileComponent, typeof i2.ChartComponent, typeof i3.TableComponent, typeof i4.ChartWidgetComponent, typeof i5.ColumnChartComponent, typeof i6.BarChartComponent, typeof i7.AreaChartComponent, typeof i8.LineChartComponent, typeof i9.IndicatorChartComponent, typeof i10.ScatterChartComponent, typeof i11.PieChartComponent, typeof i12.FunnelChartComponent, typeof i13.PolarChartComponent, typeof i14.TreemapChartComponent, typeof i15.SunburstChartComponent, typeof i16.TableWidgetComponent, typeof i17.DashboardWidgetComponent, typeof i18.MemberFilterTileComponent, typeof i19.DrilldownWidgetComponent, typeof i20.DateRangeFilterTileComponent, typeof i21.DrilldownBreadcrumbsComponent, typeof i22.ContextMenuComponent, typeof i23.BoxplotChartComponent, typeof i24.ScattermapChartComponent, typeof i25.AreamapChartComponent, typeof i26.PivotTableComponent]>;
61
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SdkUiModule, [typeof i1.BasicMemberFilterTileComponent, typeof i2.ChartComponent, typeof i3.TableComponent, typeof i4.ChartWidgetComponent, typeof i5.ColumnChartComponent, typeof i6.BarChartComponent, typeof i7.AreaChartComponent, typeof i8.AreaRangeChartComponent, typeof i9.LineChartComponent, typeof i10.IndicatorChartComponent, typeof i11.ScatterChartComponent, typeof i12.PieChartComponent, typeof i13.FunnelChartComponent, typeof i14.PolarChartComponent, typeof i15.TreemapChartComponent, typeof i16.SunburstChartComponent, typeof i17.TableWidgetComponent, typeof i18.DashboardWidgetComponent, typeof i19.MemberFilterTileComponent, typeof i20.DrilldownWidgetComponent, typeof i21.DateRangeFilterTileComponent, typeof i22.DrilldownBreadcrumbsComponent, typeof i23.ContextMenuComponent, typeof i24.BoxplotChartComponent, typeof i25.ScattermapChartComponent, typeof i26.AreamapChartComponent, typeof i27.PivotTableComponent], [typeof i28.CommonModule, typeof i29.DecoratorsModule], [typeof i1.BasicMemberFilterTileComponent, typeof i2.ChartComponent, typeof i3.TableComponent, typeof i4.ChartWidgetComponent, typeof i5.ColumnChartComponent, typeof i6.BarChartComponent, typeof i7.AreaChartComponent, typeof i8.AreaRangeChartComponent, typeof i9.LineChartComponent, typeof i10.IndicatorChartComponent, typeof i11.ScatterChartComponent, typeof i12.PieChartComponent, typeof i13.FunnelChartComponent, typeof i14.PolarChartComponent, typeof i15.TreemapChartComponent, typeof i16.SunburstChartComponent, typeof i17.TableWidgetComponent, typeof i18.DashboardWidgetComponent, typeof i19.MemberFilterTileComponent, typeof i20.DrilldownWidgetComponent, typeof i21.DateRangeFilterTileComponent, typeof i22.DrilldownBreadcrumbsComponent, typeof i23.ContextMenuComponent, typeof i24.BoxplotChartComponent, typeof i25.ScattermapChartComponent, typeof i26.AreamapChartComponent, typeof i27.PivotTableComponent]>;
61
62
  static ɵinj: i0.ɵɵInjectorDeclaration<SdkUiModule>;
62
63
  }
@@ -132,27 +132,40 @@ export declare class ThemeService {
132
132
  borderGradient: [string, string] | null;
133
133
  borderRadius: string;
134
134
  hover: {
135
- backgroundColor: string;
136
135
  textColor: string;
136
+ backgroundColor: string;
137
137
  };
138
138
  loadingGradient: [string, string];
139
139
  gap: string;
140
140
  };
141
141
  clickableMessages: {
142
- backgroundColor: string;
143
142
  textColor: string;
143
+ backgroundColor: string;
144
144
  border: string | false;
145
+ borderGradient: [string, string] | null;
145
146
  hover: {
146
147
  textColor: string;
147
148
  backgroundColor: string;
148
149
  };
149
150
  };
151
+ dataTopics: {
152
+ backgroundColor: string;
153
+ items: {
154
+ textColor: string;
155
+ backgroundColor: string;
156
+ };
157
+ };
150
158
  icons: {
151
159
  color: string;
152
- hover: {
153
- color: string;
160
+ feedbackIcons: {
161
+ hoverColor: string;
154
162
  };
155
163
  };
164
+ tooltips: {
165
+ backgroundColor: string;
166
+ textColor: string;
167
+ boxShadow: string;
168
+ };
156
169
  };
157
170
  }>;
158
171
  updateThemeSettings(theme: string | ThemeSettings): Promise<void>;
package/dist/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "Sisense",
12
12
  "Compose SDK"
13
13
  ],
14
- "version": "1.11.0",
14
+ "version": "1.13.0",
15
15
  "author": "Sisense",
16
16
  "license": "SEE LICENSE IN LICENSE.md",
17
17
  "main": "dist",
@@ -25,9 +25,9 @@
25
25
  "dist/**/*"
26
26
  ],
27
27
  "peerDependencies": {
28
- "@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0",
29
- "@angular/compiler": "^15.0.0 || ^16.0.0 || ^17.0.0",
30
- "@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0"
28
+ "@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
29
+ "@angular/compiler": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
30
+ "@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
31
31
  },
32
32
  "dependencies": {
33
33
  "@sisense/sdk-data": "workspace:^",
@@ -2,8 +2,20 @@
2
2
  * @packageDocumentation
3
3
  * @groupDescription Charts
4
4
  * Angular components for charts
5
+ * @groupDescription Chart Utilities
6
+ * Utilities to be used with charts
7
+ * @groupDescription Data Grids
8
+ * Angular components for data grids
9
+ * @groupDescription Drilldown
10
+ * Angular components for creating drilldown experiences
11
+ * @groupDescription Filter Tiles
12
+ * Angular filter tile components
13
+ * @groupDescription Contexts
14
+ * Angular context modules, services, and variables
15
+ * @groupDescription Queries
16
+ * Angular query service
5
17
  * @groupDescription Fusion Embed
6
- * Fusion Dashboards, Widgets, Queries, and Formulas
18
+ * Angular modules, services, and components for working with Fusion Embed dashboards, widgets, queries, and formulas
7
19
  * @groupDescription Interfaces
8
20
  * TypeScript interfaces for components and services listed above
9
21
  * @groupDescription Type Aliases
package/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "1.11.0";
1
+ declare const _default: "1.13.0";
2
2
  export default _default;
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "Sisense",
12
12
  "Compose SDK"
13
13
  ],
14
- "version": "1.11.0",
14
+ "version": "1.13.0",
15
15
  "author": "Sisense",
16
16
  "license": "SEE LICENSE IN LICENSE.md",
17
17
  "main": "dist",
@@ -40,14 +40,14 @@
40
40
  "sync-version": "node ./scripts/sync-version.cjs"
41
41
  },
42
42
  "peerDependencies": {
43
- "@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0",
44
- "@angular/compiler": "^15.0.0 || ^16.0.0 || ^17.0.0",
45
- "@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0"
43
+ "@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
44
+ "@angular/compiler": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
45
+ "@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
46
46
  },
47
47
  "dependencies": {
48
- "@sisense/sdk-data": "^1.11.0",
49
- "@sisense/sdk-tracking": "^1.11.0",
50
- "@sisense/sdk-ui-preact": "^1.11.0",
48
+ "@sisense/sdk-data": "^1.13.0",
49
+ "@sisense/sdk-tracking": "^1.13.0",
50
+ "@sisense/sdk-ui-preact": "^1.13.0",
51
51
  "rxjs": "^7.8.1",
52
52
  "ts-deepmerge": "^6.2.0",
53
53
  "tslib": "^2.3.0"