@sisense/sdk-ui-angular 1.22.0 → 1.23.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/component-wrapper-helpers/context-connectors.mjs +4 -2
- package/dist/esm2020/lib/components/widgets/drilldown-widget.component.mjs +7 -4
- package/dist/esm2020/lib/components/widgets/index.mjs +2 -1
- package/dist/esm2020/lib/components/widgets/widget-by-id.component.mjs +114 -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 +123 -7
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +123 -7
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/widgets/drilldown-widget.component.d.ts +12 -4
- package/dist/lib/components/widgets/index.d.ts +1 -0
- package/dist/lib/components/widgets/widget-by-id.component.d.ts +116 -0
- package/dist/lib/sdk-ui-core-exports.d.ts +1 -1
- package/dist/lib/sdk-ui.module.d.ts +16 -15
- package/dist/package.json +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +5 -5
|
@@ -47,7 +47,7 @@ export type CustomDrilldownResult = CustomDrilldownResultBase & {
|
|
|
47
47
|
* drilldownResult?: CustomDrilldownResult;
|
|
48
48
|
*
|
|
49
49
|
* drilldown = {
|
|
50
|
-
*
|
|
50
|
+
* drilldownPaths: [DM.Patients.Gender, DM.Admissions.Surgical_Procedure],
|
|
51
51
|
* initialDimension: DM.Divisions.Divison_name,
|
|
52
52
|
* drilldownChange: (drilldownResult: CustomDrilldownResult) => {
|
|
53
53
|
* this.drilldownResult = drilldownResult;
|
|
@@ -61,7 +61,7 @@ export type CustomDrilldownResult = CustomDrilldownResultBase & {
|
|
|
61
61
|
* ```html
|
|
62
62
|
* <!--Component HTML template in .component.html-->
|
|
63
63
|
* <csdk-drilldown-widget
|
|
64
|
-
* [
|
|
64
|
+
* [drilldownPaths]="drilldown.drilldownPaths"
|
|
65
65
|
* [initialDimension]="drilldown.initialDimension"
|
|
66
66
|
* (drilldownResultChange)="drilldown.drilldownChange($event)"
|
|
67
67
|
* >
|
|
@@ -102,9 +102,17 @@ export declare class DrilldownWidgetComponent implements AfterViewInit, OnChange
|
|
|
102
102
|
* {@inheritDoc @sisense/sdk-ui!DrilldownWidgetProps.drilldownDimensions}
|
|
103
103
|
*
|
|
104
104
|
* @category Widget
|
|
105
|
+
* @deprecated Use {@link drilldownPaths} instead
|
|
105
106
|
*
|
|
106
107
|
*/
|
|
107
|
-
drilldownDimensions:
|
|
108
|
+
drilldownDimensions: DrilldownWidgetProps['drilldownDimensions'];
|
|
109
|
+
/**
|
|
110
|
+
* {@inheritDoc @sisense/sdk-ui!DrilldownWidgetProps.drilldownPaths}
|
|
111
|
+
*
|
|
112
|
+
* @category Widget
|
|
113
|
+
*
|
|
114
|
+
*/
|
|
115
|
+
drilldownPaths: DrilldownWidgetProps['drilldownPaths'];
|
|
108
116
|
/**
|
|
109
117
|
* {@inheritDoc @sisense/sdk-ui!DrilldownWidgetProps.initialDimension}
|
|
110
118
|
*
|
|
@@ -160,5 +168,5 @@ export declare class DrilldownWidgetComponent implements AfterViewInit, OnChange
|
|
|
160
168
|
*/
|
|
161
169
|
ngOnDestroy(): void;
|
|
162
170
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrilldownWidgetComponent, never>;
|
|
163
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DrilldownWidgetComponent, "csdk-drilldown-widget", never, { "drilldownDimensions": "drilldownDimensions"; "initialDimension": "initialDimension"; "config": "config"; }, { "drilldownResultChange": "drilldownResultChange"; }, never, ["*"], false, never>;
|
|
171
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrilldownWidgetComponent, "csdk-drilldown-widget", never, { "drilldownDimensions": "drilldownDimensions"; "drilldownPaths": "drilldownPaths"; "initialDimension": "initialDimension"; "config": "config"; }, { "drilldownResultChange": "drilldownResultChange"; }, never, ["*"], false, never>;
|
|
164
172
|
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, OnChanges, OnDestroy } from '@angular/core';
|
|
2
|
+
import { type WidgetByIdProps } from '@sisense/sdk-ui-preact';
|
|
3
|
+
import { SisenseContextService } from '../../services/sisense-context.service';
|
|
4
|
+
import { ThemeService } from '../../services/theme.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
/**
|
|
7
|
+
* The `WidgetById` component, which is a thin wrapper on {@link ChartWidgetComponent},
|
|
8
|
+
* is used to render a widget created in a Sisense Fusion instance.
|
|
9
|
+
*
|
|
10
|
+
* To learn more about using Sisense Fusion Widgets in Compose SDK, see
|
|
11
|
+
* [Sisense Fusion Widgets](https://sisense.dev/guides/sdk/guides/charts/guide-fusion-widgets.html).
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```html
|
|
15
|
+
* <csdk-widget-by-id
|
|
16
|
+
* [widgetOid]="widgetOid"
|
|
17
|
+
* [dashboardOid]="dashboardOid"
|
|
18
|
+
* [includeDashboardFilters]="true"
|
|
19
|
+
* />
|
|
20
|
+
* ```
|
|
21
|
+
* ```ts
|
|
22
|
+
* import { Component } from '@angular/core';
|
|
23
|
+
*
|
|
24
|
+
* @Component({
|
|
25
|
+
* selector: 'app-widgets',
|
|
26
|
+
* templateUrl: './widgets.component.html',
|
|
27
|
+
* styleUrls: ['./widgets.component.scss'],
|
|
28
|
+
* })
|
|
29
|
+
* export class WidgetsComponent {
|
|
30
|
+
* widgetOid: string = '60f3e3e3e4b0e3e3e4b0e3e3';
|
|
31
|
+
* dashboardOid: string = '60f3e3e3e4b0e3e3e4b0e3e3';
|
|
32
|
+
* }
|
|
33
|
+
* ```
|
|
34
|
+
* @group Fusion Assets
|
|
35
|
+
* @fusionEmbed
|
|
36
|
+
*/
|
|
37
|
+
export declare class WidgetByIdComponent implements AfterViewInit, OnChanges, OnDestroy {
|
|
38
|
+
private sisenseContextService;
|
|
39
|
+
private themeService;
|
|
40
|
+
/** @internal */
|
|
41
|
+
preactRef: ElementRef<HTMLDivElement>;
|
|
42
|
+
/**
|
|
43
|
+
* {@inheritDoc @sisense/sdk-ui!WidgetByIdProps.widgetOid}
|
|
44
|
+
*
|
|
45
|
+
* @category Widget
|
|
46
|
+
*/
|
|
47
|
+
widgetOid: WidgetByIdProps['widgetOid'];
|
|
48
|
+
/**
|
|
49
|
+
* {@inheritDoc @sisense/sdk-ui!WidgetByIdProps.dashboardOid}
|
|
50
|
+
*
|
|
51
|
+
* @category Widget
|
|
52
|
+
*/
|
|
53
|
+
dashboardOid: WidgetByIdProps['dashboardOid'];
|
|
54
|
+
/**
|
|
55
|
+
* {@inheritDoc @sisense/sdk-ui!WidgetByIdProps.filters}
|
|
56
|
+
*
|
|
57
|
+
* @category Data
|
|
58
|
+
*/
|
|
59
|
+
filters: WidgetByIdProps['filters'];
|
|
60
|
+
/**
|
|
61
|
+
* {@inheritDoc @sisense/sdk-ui!WidgetByIdProps.highlights}
|
|
62
|
+
*
|
|
63
|
+
* @category Data
|
|
64
|
+
*/
|
|
65
|
+
highlights: WidgetByIdProps['highlights'];
|
|
66
|
+
/**
|
|
67
|
+
* {@inheritDoc @sisense/sdk-ui!WidgetByIdProps.filtersMergeStrategy}
|
|
68
|
+
*
|
|
69
|
+
* @category Data
|
|
70
|
+
*/
|
|
71
|
+
filtersMergeStrategy: WidgetByIdProps['filtersMergeStrategy'];
|
|
72
|
+
/**
|
|
73
|
+
* {@inheritDoc @sisense/sdk-ui!WidgetByIdProps.includeDashboardFilters}
|
|
74
|
+
*
|
|
75
|
+
* @category Data
|
|
76
|
+
*/
|
|
77
|
+
includeDashboardFilters: WidgetByIdProps['includeDashboardFilters'];
|
|
78
|
+
/**
|
|
79
|
+
* {@inheritDoc @sisense/sdk-ui!WidgetByIdProps.title}
|
|
80
|
+
*
|
|
81
|
+
* @category Widget
|
|
82
|
+
*/
|
|
83
|
+
title: WidgetByIdProps['title'];
|
|
84
|
+
/**
|
|
85
|
+
* {@inheritDoc @sisense/sdk-ui!WidgetByIdProps.description}
|
|
86
|
+
*
|
|
87
|
+
* @category Widget
|
|
88
|
+
*/
|
|
89
|
+
description: WidgetByIdProps['description'];
|
|
90
|
+
/**
|
|
91
|
+
* {@inheritDoc @sisense/sdk-ui!WidgetByIdProps.styleOptions}
|
|
92
|
+
*
|
|
93
|
+
* @category Widget
|
|
94
|
+
*/
|
|
95
|
+
styleOptions: WidgetByIdProps['styleOptions'];
|
|
96
|
+
/**
|
|
97
|
+
* {@inheritDoc @sisense/sdk-ui!WidgetByIdProps.highlightSelectionDisabled}
|
|
98
|
+
*
|
|
99
|
+
* @category Widget
|
|
100
|
+
*/
|
|
101
|
+
highlightSelectionDisabled: WidgetByIdProps['highlightSelectionDisabled'];
|
|
102
|
+
/** @internal */
|
|
103
|
+
drilldownOptions: WidgetByIdProps['drilldownOptions'];
|
|
104
|
+
private componentAdapter;
|
|
105
|
+
constructor(sisenseContextService: SisenseContextService, themeService: ThemeService);
|
|
106
|
+
/** @internal */
|
|
107
|
+
ngAfterViewInit(): void;
|
|
108
|
+
/** @internal */
|
|
109
|
+
ngOnChanges(): void;
|
|
110
|
+
/** @internal */
|
|
111
|
+
private createPreactComponent;
|
|
112
|
+
/** @internal */
|
|
113
|
+
ngOnDestroy(): void;
|
|
114
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetByIdComponent, never>;
|
|
115
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetByIdComponent, "csdk-widget-by-id", never, { "widgetOid": "widgetOid"; "dashboardOid": "dashboardOid"; "filters": "filters"; "highlights": "highlights"; "filtersMergeStrategy": "filtersMergeStrategy"; "includeDashboardFilters": "includeDashboardFilters"; "title": "title"; "description": "description"; "styleOptions": "styleOptions"; "highlightSelectionDisabled": "highlightSelectionDisabled"; "drilldownOptions": "drilldownOptions"; }, {}, never, never, false, never>;
|
|
116
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { boxWhiskerProcessResult, widgetModelTranslator, dashboardModelTranslator, dashboardHelpers, } 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, PivotTableWidgetStyleOptions, AreaRangeStyleOptions, DataLimits, Legend, Markers, Labels, IndicatorComponents, ScatterMarkerSize, LineWidth, AxisLabel, Convolution, SeriesLabels, X2Title, ScattermapMarkers, WidgetModel, DashboardModel, BeforeRenderHandler, DataPoint, ScatterDataPoint, HighchartsOptions, BoxplotDataPoint, DashboardProps, DashboardLayoutOptions, DashboardConfig, WidgetsPanelLayout, WidgetsPanelColumnLayout, WidgetId, WidgetsOptions, WidgetProps, 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, WidgetByIdStyleOptions, TableStyleOptions, PivotTableStyleOptions, PivotTableWidgetStyleOptions, AreaRangeStyleOptions, DataLimits, Legend, Markers, Labels, IndicatorComponents, ScatterMarkerSize, LineWidth, AxisLabel, Convolution, SeriesLabels, X2Title, ScattermapMarkers, WidgetModel, DashboardModel, BeforeRenderHandler, DataPoint, ScatterDataPoint, HighchartsOptions, BoxplotDataPoint, DashboardProps, DashboardLayoutOptions, DashboardConfig, WidgetsPanelLayout, WidgetsPanelColumnLayout, WidgetId, WidgetsOptions, WidgetProps, 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';
|
|
@@ -17,20 +17,21 @@ import * as i15 from "./components/charts/treemap-chart.component";
|
|
|
17
17
|
import * as i16 from "./components/charts/sunburst-chart.component";
|
|
18
18
|
import * as i17 from "./components/widgets/table-widget.component";
|
|
19
19
|
import * as i18 from "./components/widgets/dashboard-widget.component";
|
|
20
|
-
import * as i19 from "./components/
|
|
21
|
-
import * as i20 from "./components/
|
|
22
|
-
import * as i21 from "./components/
|
|
23
|
-
import * as i22 from "./components/filters/
|
|
24
|
-
import * as i23 from "./components/
|
|
25
|
-
import * as i24 from "./components/
|
|
26
|
-
import * as i25 from "./components/
|
|
27
|
-
import * as i26 from "./components/charts/
|
|
28
|
-
import * as i27 from "./components/charts/
|
|
29
|
-
import * as i28 from "./components/charts/
|
|
30
|
-
import * as i29 from "./components/
|
|
31
|
-
import * as i30 from "./components/dashboard/dashboard.component";
|
|
32
|
-
import * as i31 from "
|
|
33
|
-
import * as i32 from "
|
|
20
|
+
import * as i19 from "./components/widgets/widget-by-id.component";
|
|
21
|
+
import * as i20 from "./components/filters/member-filter-tile.component";
|
|
22
|
+
import * as i21 from "./components/widgets/drilldown-widget.component";
|
|
23
|
+
import * as i22 from "./components/filters/date-range-filter-tile.component";
|
|
24
|
+
import * as i23 from "./components/filters/criteria-filter-tile.component";
|
|
25
|
+
import * as i24 from "./components/drilldown-breadcrumbs.component";
|
|
26
|
+
import * as i25 from "./components/context-menu.component";
|
|
27
|
+
import * as i26 from "./components/charts/boxplot-chart.component";
|
|
28
|
+
import * as i27 from "./components/charts/scattermap-chart.component";
|
|
29
|
+
import * as i28 from "./components/charts/areamap-chart.component";
|
|
30
|
+
import * as i29 from "./components/charts/pivot-table.component";
|
|
31
|
+
import * as i30 from "./components/dashboard/dashboard-by-id.component";
|
|
32
|
+
import * as i31 from "./components/dashboard/dashboard.component";
|
|
33
|
+
import * as i32 from "@angular/common";
|
|
34
|
+
import * as i33 from "./decorators/decorators.module";
|
|
34
35
|
/**
|
|
35
36
|
* SDK UI Module, which is a container for components.
|
|
36
37
|
*
|
|
@@ -61,6 +62,6 @@ import * as i32 from "./decorators/decorators.module";
|
|
|
61
62
|
*/
|
|
62
63
|
export declare class SdkUiModule {
|
|
63
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<SdkUiModule, never>;
|
|
64
|
-
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.
|
|
65
|
+
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.WidgetByIdComponent, typeof i20.MemberFilterTileComponent, typeof i21.DrilldownWidgetComponent, typeof i22.DateRangeFilterTileComponent, typeof i23.CriteriaFilterTileComponent, typeof i24.DrilldownBreadcrumbsComponent, typeof i25.ContextMenuComponent, typeof i26.BoxplotChartComponent, typeof i27.ScattermapChartComponent, typeof i28.AreamapChartComponent, typeof i29.PivotTableComponent, typeof i30.DashboardByIdComponent, typeof i31.DashboardComponent], [typeof i32.CommonModule, typeof i33.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.WidgetByIdComponent, typeof i20.MemberFilterTileComponent, typeof i21.DrilldownWidgetComponent, typeof i22.DateRangeFilterTileComponent, typeof i23.CriteriaFilterTileComponent, typeof i24.DrilldownBreadcrumbsComponent, typeof i25.ContextMenuComponent, typeof i26.BoxplotChartComponent, typeof i27.ScattermapChartComponent, typeof i28.AreamapChartComponent, typeof i29.PivotTableComponent, typeof i30.DashboardByIdComponent, typeof i31.DashboardComponent]>;
|
|
65
66
|
static ɵinj: i0.ɵɵInjectorDeclaration<SdkUiModule>;
|
|
66
67
|
}
|
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.23.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.23.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 || ^18.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.23.0",
|
|
49
|
+
"@sisense/sdk-tracking": "^1.23.0",
|
|
50
|
+
"@sisense/sdk-ui-preact": "^1.23.0",
|
|
51
51
|
"rxjs": "^7.8.1",
|
|
52
52
|
"ts-deepmerge": "^6.2.0",
|
|
53
53
|
"tslib": "^2.3.0"
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"ng-packagr": "^15.2.2",
|
|
65
65
|
"prettier": "2.8.4",
|
|
66
66
|
"typescript": "~4.9.4",
|
|
67
|
-
"vitest": "^1.
|
|
67
|
+
"vitest": "^2.1.4"
|
|
68
68
|
},
|
|
69
69
|
"volta": {
|
|
70
70
|
"extends": "../../package.json"
|