@sisense/sdk-ui-angular 1.2.0 → 1.4.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/esm2020/lib/components/areamap-chart.component.mjs +13 -3
- package/dist/esm2020/lib/components/index.mjs +2 -1
- package/dist/esm2020/lib/components/pivot-table.component.mjs +65 -0
- package/dist/esm2020/lib/components/scattermap-chart.component.mjs +13 -3
- package/dist/esm2020/lib/sdk-ui-core-exports.mjs +1 -1
- package/dist/esm2020/lib/sdk-ui.module.mjs +8 -4
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +90 -7
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +90 -7
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/areamap-chart.component.d.ts +9 -1
- package/dist/lib/components/boxplot-chart.component.d.ts +2 -2
- package/dist/lib/components/chart-widget.component.d.ts +2 -2
- package/dist/lib/components/chart.component.d.ts +2 -2
- package/dist/lib/components/index.d.ts +1 -0
- package/dist/lib/components/pivot-table.component.d.ts +51 -0
- package/dist/lib/components/scattermap-chart.component.d.ts +9 -1
- package/dist/lib/sdk-ui-core-exports.d.ts +1 -1
- package/dist/lib/sdk-ui.module.d.ts +4 -3
- package/dist/lib/services/query.service.d.ts +1 -3
- package/dist/package.json +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
1
2
|
import { type ChartType, type AreamapChartProps } from '@sisense/sdk-ui-preact';
|
|
3
|
+
import { ArgumentsAsObject } from '../types/utility-types';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
/**
|
|
4
6
|
* An Angular component that allows to visualize geographical data as polygons on a map.
|
|
@@ -35,8 +37,14 @@ export declare class AreamapChartComponent {
|
|
|
35
37
|
* @category Chart
|
|
36
38
|
*/
|
|
37
39
|
styleOptions: AreamapChartProps['styleOptions'];
|
|
40
|
+
/**
|
|
41
|
+
* {@inheritDoc @sisense/sdk-ui!AreamapChartProps.onDataPointClick}
|
|
42
|
+
*
|
|
43
|
+
* @category Callbacks
|
|
44
|
+
*/
|
|
45
|
+
dataPointClick: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").AreamapDataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
38
46
|
/** @internal */
|
|
39
47
|
chartType: ChartType;
|
|
40
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<AreamapChartComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AreamapChartComponent, "csdk-areamap-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; }, {}, never, never, false, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AreamapChartComponent, "csdk-areamap-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; }, { "dataPointClick": "dataPointClick"; }, never, never, false, never>;
|
|
42
50
|
}
|
|
@@ -50,13 +50,13 @@ export declare class BoxplotChartComponent {
|
|
|
50
50
|
*
|
|
51
51
|
* @category Callbacks
|
|
52
52
|
*/
|
|
53
|
-
dataPointClick: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").
|
|
53
|
+
dataPointClick: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").BoxplotDataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
54
54
|
/**
|
|
55
55
|
* {@inheritDoc @sisense/sdk-ui!BoxplotChartProps.onDataPointContextMenu}
|
|
56
56
|
*
|
|
57
57
|
* @category Callbacks
|
|
58
58
|
*/
|
|
59
|
-
dataPointContextMenu: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").
|
|
59
|
+
dataPointContextMenu: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").BoxplotDataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
60
60
|
/**
|
|
61
61
|
* {@inheritDoc @sisense/sdk-ui!BoxplotChartProps.onDataPointsSelected}
|
|
62
62
|
*
|
|
@@ -84,13 +84,13 @@ export declare class ChartWidgetComponent implements AfterViewInit, OnChanges, O
|
|
|
84
84
|
*
|
|
85
85
|
* @category Callbacks
|
|
86
86
|
*/
|
|
87
|
-
dataPointClick: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
87
|
+
dataPointClick: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointEventHandler | import("@sisense/sdk-ui-preact").AreamapDataPointEventHandler | import("@sisense/sdk-ui-preact").BoxplotDataPointEventHandler | import("@sisense/sdk-ui-preact").ScattermapDataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
88
88
|
/**
|
|
89
89
|
* {@inheritDoc @sisense/sdk-ui!ChartProps.onDataPointContextMenu}
|
|
90
90
|
*
|
|
91
91
|
* @category Callbacks
|
|
92
92
|
*/
|
|
93
|
-
dataPointContextMenu: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
93
|
+
dataPointContextMenu: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointEventHandler | import("@sisense/sdk-ui-preact").BoxplotDataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
94
94
|
/**
|
|
95
95
|
* {@inheritDoc @sisense/sdk-ui!ChartProps.onDataPointsSelected}
|
|
96
96
|
*
|
|
@@ -116,13 +116,13 @@ export declare class ChartComponent implements AfterViewInit, OnChanges, OnDestr
|
|
|
116
116
|
*
|
|
117
117
|
* @category Callbacks
|
|
118
118
|
*/
|
|
119
|
-
dataPointClick: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
119
|
+
dataPointClick: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointEventHandler | import("@sisense/sdk-ui-preact").AreamapDataPointEventHandler | import("@sisense/sdk-ui-preact").BoxplotDataPointEventHandler | import("@sisense/sdk-ui-preact").ScattermapDataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
120
120
|
/**
|
|
121
121
|
* {@inheritDoc @sisense/sdk-ui!ChartProps.onDataPointContextMenu}
|
|
122
122
|
*
|
|
123
123
|
* @category Callbacks
|
|
124
124
|
*/
|
|
125
|
-
dataPointContextMenu: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
125
|
+
dataPointContextMenu: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointEventHandler | import("@sisense/sdk-ui-preact").BoxplotDataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
126
126
|
/**
|
|
127
127
|
* {@inheritDoc @sisense/sdk-ui!ChartProps.onDataPointsSelected}
|
|
128
128
|
*
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, OnChanges, OnDestroy } from '@angular/core';
|
|
2
|
+
import { type PivotTableProps } from '@sisense/sdk-ui-preact';
|
|
3
|
+
import { SisenseContextService } from '../services';
|
|
4
|
+
import { ThemeService } from '../services';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* Pivot Table with and pagination.
|
|
8
|
+
*
|
|
9
|
+
* @alpha
|
|
10
|
+
*/
|
|
11
|
+
export declare class PivotTableComponent implements AfterViewInit, OnChanges, OnDestroy {
|
|
12
|
+
private sisenseContextService;
|
|
13
|
+
private themeService;
|
|
14
|
+
/** @internal */
|
|
15
|
+
preactRef: ElementRef<HTMLDivElement>;
|
|
16
|
+
/**
|
|
17
|
+
* {@inheritDoc @sisense/sdk-ui!PivotTableProps.dataSet}
|
|
18
|
+
*
|
|
19
|
+
* @category Data
|
|
20
|
+
*/
|
|
21
|
+
dataSet: PivotTableProps['dataSet'];
|
|
22
|
+
/**
|
|
23
|
+
* {@inheritDoc @sisense/sdk-ui!PivotTableProps.dataOptions}
|
|
24
|
+
*
|
|
25
|
+
* @category Data
|
|
26
|
+
*/
|
|
27
|
+
dataOptions: PivotTableProps['dataOptions'];
|
|
28
|
+
/**
|
|
29
|
+
* {@inheritDoc @sisense/sdk-ui!PivotTableProps.filters}
|
|
30
|
+
*
|
|
31
|
+
* @category Data
|
|
32
|
+
*/
|
|
33
|
+
filters: PivotTableProps['filters'];
|
|
34
|
+
/**
|
|
35
|
+
* {@inheritDoc @sisense/sdk-ui!PivotTableProps.styleOptions}
|
|
36
|
+
*
|
|
37
|
+
* @category Representation
|
|
38
|
+
*/
|
|
39
|
+
styleOptions: PivotTableProps['styleOptions'];
|
|
40
|
+
private componentAdapter;
|
|
41
|
+
constructor(sisenseContextService: SisenseContextService, themeService: ThemeService);
|
|
42
|
+
/** @internal */
|
|
43
|
+
ngAfterViewInit(): void;
|
|
44
|
+
/** @internal */
|
|
45
|
+
ngOnChanges(): void;
|
|
46
|
+
private createPreactComponent;
|
|
47
|
+
/** @internal */
|
|
48
|
+
ngOnDestroy(): void;
|
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PivotTableComponent, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PivotTableComponent, "csdk-pivot-table", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "styleOptions": "styleOptions"; }, {}, never, never, false, never>;
|
|
51
|
+
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
1
2
|
import { type ChartType } from '../sdk-ui-core-exports';
|
|
2
3
|
import { type ScattermapChartProps } from '@sisense/sdk-ui-preact';
|
|
4
|
+
import { ArgumentsAsObject } from '../types';
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
6
|
/**
|
|
5
7
|
* An Angular component that allows to visualize geographical data as data points on a map.
|
|
@@ -36,8 +38,14 @@ export declare class ScattermapChartComponent {
|
|
|
36
38
|
* @category Chart
|
|
37
39
|
*/
|
|
38
40
|
styleOptions: ScattermapChartProps['styleOptions'];
|
|
41
|
+
/**
|
|
42
|
+
* {@inheritDoc @sisense/sdk-ui!ScattermapChartProps.onDataPointClick}
|
|
43
|
+
*
|
|
44
|
+
* @category Callbacks
|
|
45
|
+
*/
|
|
46
|
+
dataPointClick: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").ScattermapDataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
39
47
|
/** @internal */
|
|
40
48
|
chartType: ChartType;
|
|
41
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScattermapChartComponent, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScattermapChartComponent, "csdk-scattermap-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; }, {}, never, never, false, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScattermapChartComponent, "csdk-scattermap-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; }, { "dataPointClick": "dataPointClick"; }, never, never, false, never>;
|
|
43
51
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { boxWhiskerProcessResult } from '@sisense/sdk-ui-preact';
|
|
2
|
-
export type { ChartType, CartesianChartType, CategoricalChartType, ScatterChartType, IndicatorChartType, BoxplotChartType, ScattermapChartType, TableType, AreaSubtype, LineSubtype, PieSubtype, PolarSubtype, StackableSubtype, BoxplotSubtype, WidgetType, CartesianWidgetType, CategoricalWidgetType, TabularWidgetType, ChartDataOptions, CartesianChartDataOptions, CategoricalChartDataOptions, ScatterChartDataOptions, IndicatorChartDataOptions, BoxplotChartDataOptions, BoxplotChartCustomDataOptions, ScattermapChartDataOptions, TableDataOptions, WidgetDataOptions, NumberFormatConfig, DecimalScale, DataColorCondition, ConditionalDataColorOptions, DataColorOptions, RangeDataColorOptions, UniformDataColorOptions, ValueToColorMap, MultiColumnValueToColorMap, SortDirection, BoxWhiskerType,
|
|
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, 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, MenuItemSection, MonthOfYear, DayOfWeek, DateLevel, ThemeOid, GetDashboardModelOptions, GetDashboardModelsOptions, SeriesChartType, MenuPosition, ThemeSettings, Color, ColorPaletteTheme, Navigator, DrilldownOptions, DrilldownSelection, CriteriaFilterType, Member, FilterVariant, } from '@sisense/sdk-ui-preact';
|
|
@@ -24,8 +24,9 @@ import * as i22 from "./components/context-menu.component";
|
|
|
24
24
|
import * as i23 from "./components/boxplot-chart.component";
|
|
25
25
|
import * as i24 from "./components/scattermap-chart.component";
|
|
26
26
|
import * as i25 from "./components/areamap-chart.component";
|
|
27
|
-
import * as i26 from "
|
|
28
|
-
import * as i27 from "
|
|
27
|
+
import * as i26 from "./components/pivot-table.component";
|
|
28
|
+
import * as i27 from "@angular/common";
|
|
29
|
+
import * as i28 from "./decorators/decorators.module";
|
|
29
30
|
/**
|
|
30
31
|
* SDK UI Module, which is a container for components.
|
|
31
32
|
*
|
|
@@ -54,6 +55,6 @@ import * as i27 from "./decorators/decorators.module";
|
|
|
54
55
|
*/
|
|
55
56
|
export declare class SdkUiModule {
|
|
56
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<SdkUiModule, never>;
|
|
57
|
-
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
|
|
58
|
+
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]>;
|
|
58
59
|
static ɵinj: i0.ɵɵInjectorDeclaration<SdkUiModule>;
|
|
59
60
|
}
|
|
@@ -31,9 +31,7 @@ export declare class QueryService {
|
|
|
31
31
|
*/
|
|
32
32
|
executeQueryByWidgetId(params: ExecuteQueryByWidgetIdParams): Promise<{
|
|
33
33
|
data: import("@sisense/sdk-data").QueryResultData;
|
|
34
|
-
query:
|
|
35
|
-
filters?: import("@sisense/sdk-data").Filter[] | undefined;
|
|
36
|
-
};
|
|
34
|
+
query: import("@sisense/sdk-ui/dist/query/execute-query").QueryDescription;
|
|
37
35
|
}>;
|
|
38
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueryService, never>;
|
|
39
37
|
static ɵprov: i0.ɵɵInjectableDeclaration<QueryService>;
|
package/dist/package.json
CHANGED
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "1.
|
|
1
|
+
declare const _default: "1.4.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.
|
|
14
|
+
"version": "1.4.0",
|
|
15
15
|
"author": "Sisense",
|
|
16
16
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
17
17
|
"main": "dist",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@sisense/sdk-data": "^1.
|
|
49
|
-
"@sisense/sdk-tracking": "^1.
|
|
50
|
-
"@sisense/sdk-ui-preact": "^1.
|
|
48
|
+
"@sisense/sdk-data": "^1.4.0",
|
|
49
|
+
"@sisense/sdk-tracking": "^1.4.0",
|
|
50
|
+
"@sisense/sdk-ui-preact": "^1.4.0",
|
|
51
51
|
"rxjs": "^7.8.1",
|
|
52
52
|
"ts-deepmerge": "^6.2.0",
|
|
53
53
|
"tslib": "^2.3.0"
|