@sisense/sdk-ui-angular 2.15.0 → 2.16.1
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/esm2020/lib/components/charts/index.mjs +2 -1
- package/dist/esm2020/lib/components/charts/streamgraph-chart.component.mjs +147 -0
- package/dist/esm2020/lib/sdk-ui-core-exports.mjs +1 -1
- package/dist/esm2020/lib/sdk-ui.module.mjs +6 -2
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +150 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +150 -2
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/charts/index.d.ts +1 -0
- package/dist/lib/components/charts/streamgraph-chart.component.d.ts +139 -0
- package/dist/lib/sdk-ui-core-exports.d.ts +1 -1
- package/dist/lib/sdk-ui.module.d.ts +12 -11
- package/dist/package.json +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -14,6 +14,7 @@ export * from './pivot-table.component';
|
|
|
14
14
|
export * from './polar-chart.component';
|
|
15
15
|
export * from './scatter-chart.component';
|
|
16
16
|
export * from './scattermap-chart.component';
|
|
17
|
+
export * from './streamgraph-chart.component';
|
|
17
18
|
export * from './sunburst-chart.component';
|
|
18
19
|
export * from './table.component';
|
|
19
20
|
export * from './treemap-chart.component';
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { type StreamgraphChartProps as StreamgraphChartPropsPreact } from '@sisense/sdk-ui-preact';
|
|
3
|
+
import { type ChartType } from '../../sdk-ui-core-exports';
|
|
4
|
+
import { RegularChartEventProps, WithoutPreactChartEventProps } from '../../types/chart-event-props';
|
|
5
|
+
import { DataPointEvent, DataPointsEvent } from '../../types/data-point';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Props of the {@link StreamgraphChartComponent} component.
|
|
9
|
+
*/
|
|
10
|
+
export interface StreamgraphChartProps extends WithoutPreactChartEventProps<StreamgraphChartPropsPreact>, RegularChartEventProps {
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* A component that displays a streamgraph chart.
|
|
14
|
+
*
|
|
15
|
+
* A streamgraph is a type of stacked area chart where areas are displaced around
|
|
16
|
+
* a central axis. It is particularly effective for displaying volume across
|
|
17
|
+
* different categories or over time with a relative scale that emphasizes
|
|
18
|
+
* overall patterns and trends.
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* ```html
|
|
22
|
+
* <csdk-streamgraph-chart
|
|
23
|
+
* [dataSet]="chart.dataSet"
|
|
24
|
+
* [dataOptions]="chart.dataOptions"
|
|
25
|
+
* [styleOptions]="chart.styleOptions"
|
|
26
|
+
* [highlights]="filters"
|
|
27
|
+
* [beforeRender]="onBeforeRender"
|
|
28
|
+
* (dataPointClick)="logArguments($event)"
|
|
29
|
+
* (dataPointContextMenu)="logArguments($event)"
|
|
30
|
+
* (dataPointsSelect)="logArguments($event)"
|
|
31
|
+
* />
|
|
32
|
+
* ```
|
|
33
|
+
* ```ts
|
|
34
|
+
import { Component } from '@angular/core';
|
|
35
|
+
import { measureFactory, filterFactory } from '@sisense/sdk-data';
|
|
36
|
+
import * as DM from '../../assets/sample-ecommerce';
|
|
37
|
+
import type { ChartType } from '@sisense/sdk-ui-angular';
|
|
38
|
+
|
|
39
|
+
@Component({
|
|
40
|
+
selector: 'app-analytics',
|
|
41
|
+
templateUrl: './analytics.component.html',
|
|
42
|
+
styleUrls: ['./analytics.component.scss'],
|
|
43
|
+
})
|
|
44
|
+
export class AnalyticsComponent {
|
|
45
|
+
DM = DM;
|
|
46
|
+
filters = [filterFactory.members(DM.Category.Category, ['Electronics', 'Clothing'])];
|
|
47
|
+
chart = {
|
|
48
|
+
chartType: 'streamgraph' as ChartType,
|
|
49
|
+
dataSet: DM.DataSource,
|
|
50
|
+
dataOptions: {
|
|
51
|
+
category: [DM.Commerce.Date.Quarters],
|
|
52
|
+
value: [measureFactory.sum(DM.Commerce.Revenue, 'Revenue')],
|
|
53
|
+
breakBy: [DM.Category.Category],
|
|
54
|
+
},
|
|
55
|
+
styleOptions: {
|
|
56
|
+
width: 1200,
|
|
57
|
+
height: 500,
|
|
58
|
+
},
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
onBeforeRender(options: any) {
|
|
62
|
+
console.log('beforeRender');
|
|
63
|
+
console.log(options);
|
|
64
|
+
return options;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
logArguments(...args: any[]) {
|
|
68
|
+
console.log(args);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
* ```
|
|
72
|
+
* @group Charts
|
|
73
|
+
*/
|
|
74
|
+
export declare class StreamgraphChartComponent {
|
|
75
|
+
/**
|
|
76
|
+
* {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.dataSet}
|
|
77
|
+
*
|
|
78
|
+
* @category Data
|
|
79
|
+
*/
|
|
80
|
+
dataSet: StreamgraphChartProps['dataSet'];
|
|
81
|
+
/**
|
|
82
|
+
* {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.dataOptions}
|
|
83
|
+
*
|
|
84
|
+
* @category Chart
|
|
85
|
+
*/
|
|
86
|
+
dataOptions: StreamgraphChartProps['dataOptions'];
|
|
87
|
+
/**
|
|
88
|
+
* {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.filters}
|
|
89
|
+
*
|
|
90
|
+
* @category Data
|
|
91
|
+
*/
|
|
92
|
+
filters: StreamgraphChartProps['filters'];
|
|
93
|
+
/**
|
|
94
|
+
* {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.highlights}
|
|
95
|
+
*
|
|
96
|
+
* @category Data
|
|
97
|
+
*/
|
|
98
|
+
highlights: StreamgraphChartProps['highlights'];
|
|
99
|
+
/**
|
|
100
|
+
* {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.styleOptions}
|
|
101
|
+
*
|
|
102
|
+
* @category Chart
|
|
103
|
+
*/
|
|
104
|
+
styleOptions: StreamgraphChartProps['styleOptions'];
|
|
105
|
+
/**
|
|
106
|
+
* {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onBeforeRender}
|
|
107
|
+
*
|
|
108
|
+
* @category Callbacks
|
|
109
|
+
*/
|
|
110
|
+
beforeRender: StreamgraphChartProps['beforeRender'];
|
|
111
|
+
/**
|
|
112
|
+
* {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onDataReady}
|
|
113
|
+
*
|
|
114
|
+
* @category Callbacks
|
|
115
|
+
*/
|
|
116
|
+
dataReady: StreamgraphChartProps['dataReady'];
|
|
117
|
+
/**
|
|
118
|
+
* {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onDataPointClick}
|
|
119
|
+
*
|
|
120
|
+
* @category Callbacks
|
|
121
|
+
*/
|
|
122
|
+
dataPointClick: EventEmitter<DataPointEvent>;
|
|
123
|
+
/**
|
|
124
|
+
* {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onDataPointContextMenu}
|
|
125
|
+
*
|
|
126
|
+
* @category Callbacks
|
|
127
|
+
*/
|
|
128
|
+
dataPointContextMenu: EventEmitter<DataPointEvent>;
|
|
129
|
+
/**
|
|
130
|
+
* {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onDataPointsSelected}
|
|
131
|
+
*
|
|
132
|
+
* @category Callbacks
|
|
133
|
+
*/
|
|
134
|
+
dataPointsSelect: EventEmitter<DataPointsEvent>;
|
|
135
|
+
/** @internal */
|
|
136
|
+
chartType: ChartType;
|
|
137
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StreamgraphChartComponent, never>;
|
|
138
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StreamgraphChartComponent, "csdk-streamgraph-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
|
|
139
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { boxWhiskerProcessResult, extractDimensionsAndMeasures } from '@sisense/sdk-ui-preact';
|
|
2
|
-
export type { AppConfig, AreamapChartDataOptions, AreamapChartType, AreamapStyleOptions, AreaRangeStyleOptions, AreaStyleOptions, AreaSubtype, AxisLabel, BeforeRenderHandler, BoxplotChartCustomDataOptions, BoxplotChartDataOptions, BoxplotChartType, BoxplotDataPoint, BoxplotStyleOptions, BoxplotSubtype, BoxWhiskerType, CalendarDayOfWeek, CalendarHeatmapChartDataOptions, CalendarHeatmapChartType, CalendarHeatmapDataPoint, CalendarHeatmapStyleOptions, CalendarHeatmapSubtype, CalendarHeatmapViewType, CartesianChartDataOptions, CartesianChartType, CartesianWidgetType, CategoricalChartDataOptions, CategoricalChartType, CategoricalWidgetType, ChartDataOptions, ChartStyleOptions, ChartType, ChartWidgetStyleOptions, Color, ColorPaletteTheme, CommonWidgetProps, ConditionalDataColorOptions, Convolution, DashboardLayoutOptions, DashboardModel, DashStyle, DataColorCondition, DataColorOptions, DataLimits, DataPoint, DateConfig, DateLevel, DayOfWeek, DecimalScale, DrilldownOptions, DrilldownSelection, EndCapType, FilterVariant, FunnelStyleOptions, GaugeIndicatorStyleOptions, GetDashboardModelOptions, GetDashboardModelsOptions, Hierarchy, HierarchyModel, HighchartsOptions, IndicatorBeforeRenderHandler, IndicatorChartDataOptions, IndicatorChartType, IndicatorComponents, IndicatorDataPoint, IndicatorRenderOptions, IndicatorStyleOptions, Labels, Legend, LineOptions, LineStyleOptions, LineSubtype, LineWidth, Markers, Member, MenuItemSection, MenuPosition, MonthOfYear, MultiColumnValueToColorMap, Navigator, NumberFormatConfig, NumericBarIndicatorStyleOptions, NumericSimpleIndicatorStyleOptions, PieStyleOptions, PieSubtype, PivotRowsSort, PivotTableDataOptions, PivotTableStyleOptions, PivotTableWidgetStyleOptions, PolarStyleOptions, PolarSubtype, RangeChartDataOptions, RangeChartType, RangeDataColorOptions, ScatterChartDataOptions, ScatterChartType, ScatterDataPoint, ScattermapChartDataOptions, ScattermapChartType, ScattermapLocationLevel, ScattermapMarkers, ScattermapStyleOptions, ScatterMarkerSize, ScatterStyleOptions, SeriesChartType, SeriesLabels, SortDirection, StackableStyleOptions, StackableSubtype, StyledColumn, StyledMeasureColumn, SunburstStyleOptions, TableDataOptions, TableStyleOptions, TableType, TabularWidgetType, ThemeOid, ThemeSettings, TranslationConfig, TreemapStyleOptions, UniformDataColorOptions, ValueToColorMap, WidgetByIdStyleOptions, WidgetDataOptions, WidgetId, WidgetModel, WidgetsOptions, WidgetsPanelColumnLayout, WidgetsPanelLayout, WidgetStyleOptions, WidgetType, X2Title, } from '@sisense/sdk-ui-preact';
|
|
2
|
+
export type { AppConfig, AreamapChartDataOptions, AreamapChartType, AreamapStyleOptions, AreaRangeStyleOptions, AreaStyleOptions, AreaSubtype, AxisLabel, BeforeRenderHandler, BoxplotChartCustomDataOptions, BoxplotChartDataOptions, BoxplotChartType, BoxplotDataPoint, BoxplotStyleOptions, BoxplotSubtype, BoxWhiskerType, CalendarDayOfWeek, CalendarHeatmapChartDataOptions, CalendarHeatmapChartType, CalendarHeatmapDataPoint, CalendarHeatmapStyleOptions, CalendarHeatmapSubtype, CalendarHeatmapViewType, CartesianChartDataOptions, CartesianChartType, CartesianWidgetType, CategoricalChartDataOptions, CategoricalChartType, CategoricalWidgetType, ChartDataOptions, ChartStyleOptions, ChartType, ChartWidgetStyleOptions, Color, ColorPaletteTheme, CommonWidgetProps, ConditionalDataColorOptions, Convolution, DashboardLayoutOptions, DashboardModel, DashStyle, DataColorCondition, DataColorOptions, DataLimits, DataPoint, DateConfig, DateLevel, DayOfWeek, DecimalScale, DrilldownOptions, DrilldownSelection, EndCapType, FilterVariant, FunnelStyleOptions, GaugeIndicatorStyleOptions, GetDashboardModelOptions, GetDashboardModelsOptions, Hierarchy, HierarchyModel, HighchartsOptions, IndicatorBeforeRenderHandler, IndicatorChartDataOptions, IndicatorChartType, IndicatorComponents, IndicatorDataPoint, IndicatorRenderOptions, IndicatorStyleOptions, Labels, Legend, LineOptions, LineStyleOptions, LineSubtype, LineWidth, Markers, Member, MenuItemSection, MenuPosition, MonthOfYear, MultiColumnValueToColorMap, Navigator, NumberFormatConfig, NumericBarIndicatorStyleOptions, NumericSimpleIndicatorStyleOptions, PieStyleOptions, PieSubtype, PivotRowsSort, PivotTableDataOptions, PivotTableStyleOptions, PivotTableWidgetStyleOptions, PolarStyleOptions, PolarSubtype, RangeChartDataOptions, RangeChartType, RangeDataColorOptions, ScatterChartDataOptions, ScatterChartType, ScatterDataPoint, ScattermapChartDataOptions, ScattermapChartType, ScattermapLocationLevel, ScattermapMarkers, ScattermapStyleOptions, ScatterMarkerSize, ScatterStyleOptions, SeriesChartType, SeriesLabels, SortDirection, StackableStyleOptions, StackableSubtype, StyledColumn, StyledMeasureColumn, StreamgraphStyleOptions, SunburstStyleOptions, TableDataOptions, TableStyleOptions, TableType, TabularWidgetType, ThemeOid, ThemeSettings, TranslationConfig, TreemapStyleOptions, UniformDataColorOptions, ValueToColorMap, WidgetByIdStyleOptions, WidgetDataOptions, WidgetId, WidgetModel, WidgetsOptions, WidgetsPanelColumnLayout, WidgetsPanelLayout, WidgetStyleOptions, WidgetType, X2Title, } from '@sisense/sdk-ui-preact';
|
|
@@ -26,16 +26,17 @@ import * as i24 from "./components/drilldown-breadcrumbs.component";
|
|
|
26
26
|
import * as i25 from "./components/context-menu.component";
|
|
27
27
|
import * as i26 from "./components/charts/boxplot-chart.component";
|
|
28
28
|
import * as i27 from "./components/charts/scattermap-chart.component";
|
|
29
|
-
import * as i28 from "./components/charts/
|
|
30
|
-
import * as i29 from "./components/charts/
|
|
31
|
-
import * as i30 from "./components/
|
|
32
|
-
import * as i31 from "./components/dashboard/dashboard.component";
|
|
33
|
-
import * as i32 from "./components/
|
|
34
|
-
import * as i33 from "./components/
|
|
35
|
-
import * as i34 from "./components/filters/
|
|
36
|
-
import * as i35 from "./components/
|
|
37
|
-
import * as i36 from "
|
|
38
|
-
import * as i37 from "
|
|
29
|
+
import * as i28 from "./components/charts/streamgraph-chart.component";
|
|
30
|
+
import * as i29 from "./components/charts/areamap-chart.component";
|
|
31
|
+
import * as i30 from "./components/charts/pivot-table.component";
|
|
32
|
+
import * as i31 from "./components/dashboard/dashboard-by-id.component";
|
|
33
|
+
import * as i32 from "./components/dashboard/dashboard.component";
|
|
34
|
+
import * as i33 from "./components/widgets/pivot-table-widget.component";
|
|
35
|
+
import * as i34 from "./components/filters/filter-tile.component";
|
|
36
|
+
import * as i35 from "./components/filters/filters-panel.component";
|
|
37
|
+
import * as i36 from "./components/widgets/widget.component";
|
|
38
|
+
import * as i37 from "@angular/common";
|
|
39
|
+
import * as i38 from "./decorators/decorators.module";
|
|
39
40
|
/**
|
|
40
41
|
* SDK UI Module, which is a container for components.
|
|
41
42
|
*
|
|
@@ -65,6 +66,6 @@ import * as i37 from "./decorators/decorators.module";
|
|
|
65
66
|
*/
|
|
66
67
|
export declare class SdkUiModule {
|
|
67
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<SdkUiModule, never>;
|
|
68
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SdkUiModule, [typeof i1.ChartComponent, typeof i2.TableComponent, typeof i3.ChartWidgetComponent, typeof i4.ColumnChartComponent, typeof i5.BarChartComponent, typeof i6.AreaChartComponent, typeof i7.CalendarHeatmapChartComponent, 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.WidgetByIdComponent, typeof i19.MemberFilterTileComponent, typeof i20.DrilldownWidgetComponent, typeof i21.DateRangeFilterTileComponent, typeof i22.RelativeDateFilterTileComponent, typeof i23.CriteriaFilterTileComponent, typeof i24.DrilldownBreadcrumbsComponent, typeof i25.ContextMenuComponent, typeof i26.BoxplotChartComponent, typeof i27.ScattermapChartComponent, typeof i28.
|
|
69
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SdkUiModule, [typeof i1.ChartComponent, typeof i2.TableComponent, typeof i3.ChartWidgetComponent, typeof i4.ColumnChartComponent, typeof i5.BarChartComponent, typeof i6.AreaChartComponent, typeof i7.CalendarHeatmapChartComponent, 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.WidgetByIdComponent, typeof i19.MemberFilterTileComponent, typeof i20.DrilldownWidgetComponent, typeof i21.DateRangeFilterTileComponent, typeof i22.RelativeDateFilterTileComponent, typeof i23.CriteriaFilterTileComponent, typeof i24.DrilldownBreadcrumbsComponent, typeof i25.ContextMenuComponent, typeof i26.BoxplotChartComponent, typeof i27.ScattermapChartComponent, typeof i28.StreamgraphChartComponent, typeof i29.AreamapChartComponent, typeof i30.PivotTableComponent, typeof i31.DashboardByIdComponent, typeof i32.DashboardComponent, typeof i33.PivotTableWidgetComponent, typeof i34.FilterTileComponent, typeof i35.FiltersPanelComponent, typeof i36.WidgetComponent], [typeof i37.CommonModule, typeof i38.DecoratorsModule], [typeof i1.ChartComponent, typeof i2.TableComponent, typeof i3.ChartWidgetComponent, typeof i4.ColumnChartComponent, typeof i5.BarChartComponent, typeof i6.AreaChartComponent, typeof i7.CalendarHeatmapChartComponent, 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.WidgetByIdComponent, typeof i19.MemberFilterTileComponent, typeof i20.DrilldownWidgetComponent, typeof i21.DateRangeFilterTileComponent, typeof i22.RelativeDateFilterTileComponent, typeof i23.CriteriaFilterTileComponent, typeof i24.DrilldownBreadcrumbsComponent, typeof i25.ContextMenuComponent, typeof i26.BoxplotChartComponent, typeof i27.ScattermapChartComponent, typeof i28.StreamgraphChartComponent, typeof i29.AreamapChartComponent, typeof i30.PivotTableComponent, typeof i31.DashboardByIdComponent, typeof i32.DashboardComponent, typeof i33.PivotTableWidgetComponent, typeof i34.FilterTileComponent, typeof i35.FiltersPanelComponent, typeof i36.WidgetComponent]>;
|
|
69
70
|
static ɵinj: i0.ɵɵInjectorDeclaration<SdkUiModule>;
|
|
70
71
|
}
|
package/dist/package.json
CHANGED
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "2.
|
|
1
|
+
declare const _default: "2.16.1";
|
|
2
2
|
export default _default;
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"Sisense",
|
|
12
12
|
"Compose SDK"
|
|
13
13
|
],
|
|
14
|
-
"version": "2.
|
|
14
|
+
"version": "2.16.1",
|
|
15
15
|
"author": "Sisense",
|
|
16
16
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
17
17
|
"main": "dist",
|
|
@@ -76,9 +76,9 @@
|
|
|
76
76
|
"@angular/core": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0"
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@sisense/sdk-data": "2.
|
|
80
|
-
"@sisense/sdk-tracking": "2.
|
|
81
|
-
"@sisense/sdk-ui-preact": "2.
|
|
79
|
+
"@sisense/sdk-data": "2.16.1",
|
|
80
|
+
"@sisense/sdk-tracking": "2.16.1",
|
|
81
|
+
"@sisense/sdk-ui-preact": "2.16.1",
|
|
82
82
|
"rxjs": "^7.8.1",
|
|
83
83
|
"ts-deepmerge": "^6.2.0",
|
|
84
84
|
"tslib": "^2.3.0"
|