@sisense/sdk-ui-angular 0.15.0 → 1.0.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/boxplot-chart.component.mjs +86 -0
- package/dist/esm2020/lib/components/chart-widget.component.mjs +2 -5
- package/dist/esm2020/lib/components/chart.component.mjs +2 -2
- package/dist/esm2020/lib/components/dashboard-widget.component.mjs +2 -5
- package/dist/esm2020/lib/components/drilldown-widget.component.mjs +2 -2
- package/dist/esm2020/lib/components/index.mjs +3 -1
- package/dist/esm2020/lib/components/scattermap-chart.component.mjs +51 -0
- package/dist/esm2020/lib/components/table-widget.component.mjs +2 -5
- package/dist/esm2020/lib/sdk-ui.module.mjs +12 -5
- package/dist/esm2020/lib/services/query.service.mjs +13 -2
- package/dist/esm2020/lib/services/theme.service.mjs +1 -1
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +161 -20
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +161 -20
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/boxplot-chart.component.d.ts +69 -0
- package/dist/lib/components/chart-widget.component.d.ts +2 -8
- package/dist/lib/components/chart.component.d.ts +1 -1
- package/dist/lib/components/dashboard-widget.component.d.ts +3 -4
- package/dist/lib/components/drilldown-widget.component.d.ts +1 -1
- package/dist/lib/components/index.d.ts +2 -0
- package/dist/lib/components/scattermap-chart.component.d.ts +42 -0
- package/dist/lib/components/table-widget.component.d.ts +1 -7
- package/dist/lib/sdk-ui.module.d.ts +5 -3
- package/dist/lib/services/query.service.d.ts +3 -1
- package/dist/package.json +13 -1
- package/dist/version.d.ts +1 -1
- package/package.json +22 -7
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { type ChartType, type BoxplotChartProps } from '@sisense/sdk-ui-preact';
|
|
3
|
+
import { type ArgumentsAsObject } from '../utility-types';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* An Angular component representing data in a way that visually describes the distribution, variability,
|
|
7
|
+
* and center of a data set along an axis.
|
|
8
|
+
* See [Boxplot Chart](https://docs.sisense.com/main/SisenseLinux/box-and-whisker-plot.htm) for more information.
|
|
9
|
+
*/
|
|
10
|
+
export declare class BoxplotChartComponent {
|
|
11
|
+
/**
|
|
12
|
+
* {@inheritDoc @sisense/sdk-ui!BoxplotChartProps.dataSet}
|
|
13
|
+
*
|
|
14
|
+
* @category Data
|
|
15
|
+
*/
|
|
16
|
+
dataSet: BoxplotChartProps['dataSet'];
|
|
17
|
+
/**
|
|
18
|
+
* {@inheritDoc @sisense/sdk-ui!BoxplotChartProps.dataOptions}
|
|
19
|
+
*
|
|
20
|
+
* @category Chart
|
|
21
|
+
*/
|
|
22
|
+
dataOptions: BoxplotChartProps['dataOptions'];
|
|
23
|
+
/**
|
|
24
|
+
* {@inheritDoc @sisense/sdk-ui!BoxplotChartProps.filters}
|
|
25
|
+
*
|
|
26
|
+
* @category Data
|
|
27
|
+
*/
|
|
28
|
+
filters: BoxplotChartProps['filters'];
|
|
29
|
+
/**
|
|
30
|
+
* {@inheritDoc @sisense/sdk-ui!BoxplotChartProps.highlights}
|
|
31
|
+
*
|
|
32
|
+
* @category Data
|
|
33
|
+
*/
|
|
34
|
+
highlights: BoxplotChartProps['highlights'];
|
|
35
|
+
/**
|
|
36
|
+
* {@inheritDoc @sisense/sdk-ui!BoxplotChartProps.styleOptions}
|
|
37
|
+
*
|
|
38
|
+
* @category Chart
|
|
39
|
+
*/
|
|
40
|
+
styleOptions: BoxplotChartProps['styleOptions'];
|
|
41
|
+
/**
|
|
42
|
+
* {@inheritDoc @sisense/sdk-ui!BoxplotChartProps.onBeforeRender}
|
|
43
|
+
*
|
|
44
|
+
* @category Callbacks
|
|
45
|
+
*/
|
|
46
|
+
beforeRender: BoxplotChartProps['onBeforeRender'];
|
|
47
|
+
/**
|
|
48
|
+
* {@inheritDoc @sisense/sdk-ui!BoxplotChartProps.onDataPointClick}
|
|
49
|
+
*
|
|
50
|
+
* @category Callbacks
|
|
51
|
+
*/
|
|
52
|
+
dataPointClick: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
53
|
+
/**
|
|
54
|
+
* {@inheritDoc @sisense/sdk-ui!BoxplotChartProps.onDataPointContextMenu}
|
|
55
|
+
*
|
|
56
|
+
* @category Callbacks
|
|
57
|
+
*/
|
|
58
|
+
dataPointContextMenu: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointEventHandler | undefined, ["point", "nativeEvent"]>>;
|
|
59
|
+
/**
|
|
60
|
+
* {@inheritDoc @sisense/sdk-ui!BoxplotChartProps.onDataPointsSelected}
|
|
61
|
+
*
|
|
62
|
+
* @category Callbacks
|
|
63
|
+
*/
|
|
64
|
+
dataPointsSelect: EventEmitter<ArgumentsAsObject<import("@sisense/sdk-ui-preact").DataPointsEventHandler | undefined, ["points", "nativeEvent"]>>;
|
|
65
|
+
/** @internal */
|
|
66
|
+
chartType: ChartType;
|
|
67
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BoxplotChartComponent, never>;
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BoxplotChartComponent, "csdk-boxplot-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
|
|
69
|
+
}
|
|
@@ -45,15 +45,9 @@ export declare class ChartWidgetComponent implements AfterViewInit, OnChanges, O
|
|
|
45
45
|
/**
|
|
46
46
|
* {@inheritDoc @sisense/sdk-ui!ChartWidgetProps.styleOptions}
|
|
47
47
|
*
|
|
48
|
-
* @category Chart
|
|
49
|
-
*/
|
|
50
|
-
styleOptions: ChartWidgetProps['styleOptions'];
|
|
51
|
-
/**
|
|
52
|
-
* {@inheritDoc @sisense/sdk-ui!ChartWidgetProps.widgetStyleOptions}
|
|
53
|
-
*
|
|
54
48
|
* @category Widget
|
|
55
49
|
*/
|
|
56
|
-
|
|
50
|
+
styleOptions: ChartWidgetProps['styleOptions'];
|
|
57
51
|
/**
|
|
58
52
|
* {@inheritDoc @sisense/sdk-ui!ChartWidgetProps.drilldownOptions}
|
|
59
53
|
*
|
|
@@ -113,5 +107,5 @@ export declare class ChartWidgetComponent implements AfterViewInit, OnChanges, O
|
|
|
113
107
|
/** @internal */
|
|
114
108
|
ngOnDestroy(): void;
|
|
115
109
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChartWidgetComponent, never>;
|
|
116
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChartWidgetComponent, "csdk-chart-widget", never, { "chartType": "chartType"; "dataSource": "dataSource"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "
|
|
110
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChartWidgetComponent, "csdk-chart-widget", never, { "chartType": "chartType"; "dataSource": "dataSource"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "drilldownOptions": "drilldownOptions"; "title": "title"; "description": "description"; "highlightSelectionDisabled": "highlightSelectionDisabled"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
|
|
117
111
|
}
|
|
@@ -17,7 +17,7 @@ import * as i0 from "@angular/core";
|
|
|
17
17
|
* dataSet: DM.DataSource,
|
|
18
18
|
* dataOptions: {
|
|
19
19
|
* category: [DM.Admissions.Admission_Time.Months],
|
|
20
|
-
* value: [
|
|
20
|
+
* value: [measureFactory.count(DM.Admissions.Patient_ID, 'Total Patients')],
|
|
21
21
|
* breakBy: [],
|
|
22
22
|
* },
|
|
23
23
|
* filters: [filterFactory.members(DM.Doctors.Specialty, ['Oncology', 'Cardiology'])],
|
|
@@ -26,12 +26,11 @@ export declare class DashboardWidgetComponent implements AfterViewInit, OnChange
|
|
|
26
26
|
title: DashboardWidgetProps['title'];
|
|
27
27
|
description: DashboardWidgetProps['description'];
|
|
28
28
|
/**
|
|
29
|
-
* {@inheritDoc @sisense/sdk-ui!
|
|
29
|
+
* {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.styleOptions}
|
|
30
30
|
*
|
|
31
|
-
* @category
|
|
31
|
+
* @category Widget
|
|
32
32
|
*/
|
|
33
33
|
styleOptions: DashboardWidgetProps['styleOptions'];
|
|
34
|
-
widgetStyleOptions: DashboardWidgetProps['widgetStyleOptions'];
|
|
35
34
|
highlightSelectionDisabled: DashboardWidgetProps['highlightSelectionDisabled'];
|
|
36
35
|
/** @internal */
|
|
37
36
|
drilldownOptions: DashboardWidgetProps['drilldownOptions'];
|
|
@@ -46,5 +45,5 @@ export declare class DashboardWidgetComponent implements AfterViewInit, OnChange
|
|
|
46
45
|
/** @internal */
|
|
47
46
|
ngOnDestroy(): void;
|
|
48
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<DashboardWidgetComponent, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DashboardWidgetComponent, "csdk-dashboard-widget", never, { "widgetOid": "widgetOid"; "dashboardOid": "dashboardOid"; "filters": "filters"; "highlights": "highlights"; "filtersMergeStrategy": "filtersMergeStrategy"; "includeDashboardFilters": "includeDashboardFilters"; "title": "title"; "description": "description"; "styleOptions": "styleOptions"; "
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DashboardWidgetComponent, "csdk-dashboard-widget", 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>;
|
|
50
49
|
}
|
|
@@ -32,7 +32,7 @@ export type CustomDrilldownResult = CustomDrilldownResultBase & {
|
|
|
32
32
|
* chart = {
|
|
33
33
|
* dataOptions: {
|
|
34
34
|
* category: [DM.Divisions.Divison_name],
|
|
35
|
-
* value: [
|
|
35
|
+
* value: [measureFactory.sum(DM.Admissions.Cost_of_admission)],
|
|
36
36
|
* breakBy: [],
|
|
37
37
|
* },
|
|
38
38
|
* dataPointContextMenu: ({ point, nativeEvent }: { point: any; nativeEvent: MouseEvent }) => {
|
|
@@ -20,3 +20,5 @@ export * from './drilldown-widget.component';
|
|
|
20
20
|
export * from './date-range-filter-tile.component';
|
|
21
21
|
export * from './drilldown-breadcrumbs.component';
|
|
22
22
|
export * from './context-menu.component';
|
|
23
|
+
export * from './boxplot-chart.component';
|
|
24
|
+
export * from './scattermap-chart.component';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { type ChartType, type ScattermapChartProps } from '@sisense/sdk-ui-preact';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* An Angular component that allows to visualize geographical data as data points on a map.
|
|
5
|
+
* See [Scattermap Chart](https://docs.sisense.com/main/SisenseLinux/scatter-map.htm) for more information.
|
|
6
|
+
*/
|
|
7
|
+
export declare class ScattermapChartComponent {
|
|
8
|
+
/**
|
|
9
|
+
* {@inheritDoc @sisense/sdk-ui!ScattermapChartProps.dataSet}
|
|
10
|
+
*
|
|
11
|
+
* @category Data
|
|
12
|
+
*/
|
|
13
|
+
dataSet: ScattermapChartProps['dataSet'];
|
|
14
|
+
/**
|
|
15
|
+
* {@inheritDoc @sisense/sdk-ui!ScattermapChartProps.dataOptions}
|
|
16
|
+
*
|
|
17
|
+
* @category Chart
|
|
18
|
+
*/
|
|
19
|
+
dataOptions: ScattermapChartProps['dataOptions'];
|
|
20
|
+
/**
|
|
21
|
+
* {@inheritDoc @sisense/sdk-ui!ScattermapChartProps.filters}
|
|
22
|
+
*
|
|
23
|
+
* @category Data
|
|
24
|
+
*/
|
|
25
|
+
filters: ScattermapChartProps['filters'];
|
|
26
|
+
/**
|
|
27
|
+
* {@inheritDoc @sisense/sdk-ui!ScattermapChartProps.highlights}
|
|
28
|
+
*
|
|
29
|
+
* @category Data
|
|
30
|
+
*/
|
|
31
|
+
highlights: ScattermapChartProps['highlights'];
|
|
32
|
+
/**
|
|
33
|
+
* {@inheritDoc @sisense/sdk-ui!ScattermapChartProps.styleOptions}
|
|
34
|
+
*
|
|
35
|
+
* @category Chart
|
|
36
|
+
*/
|
|
37
|
+
styleOptions: ScattermapChartProps['styleOptions'];
|
|
38
|
+
/** @internal */
|
|
39
|
+
chartType: ChartType;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScattermapChartComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScattermapChartComponent, "csdk-scattermap-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; }, {}, never, never, false, never>;
|
|
42
|
+
}
|
|
@@ -37,12 +37,6 @@ export declare class TableWidgetComponent implements AfterViewInit, OnChanges, O
|
|
|
37
37
|
* @category Representation
|
|
38
38
|
*/
|
|
39
39
|
styleOptions: TableWidgetProps['styleOptions'];
|
|
40
|
-
/**
|
|
41
|
-
* {@inheritDoc @sisense/sdk-ui!TableWidgetProps.widgetStyleOptions}
|
|
42
|
-
*
|
|
43
|
-
* @category Representation
|
|
44
|
-
*/
|
|
45
|
-
widgetStyleOptions: TableWidgetProps['widgetStyleOptions'];
|
|
46
40
|
/**
|
|
47
41
|
* {@inheritDoc @sisense/sdk-ui!TableWidgetProps.title}
|
|
48
42
|
*
|
|
@@ -62,5 +56,5 @@ export declare class TableWidgetComponent implements AfterViewInit, OnChanges, O
|
|
|
62
56
|
private createPreactComponent;
|
|
63
57
|
ngOnDestroy(): void;
|
|
64
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableWidgetComponent, never>;
|
|
65
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableWidgetComponent, "csdk-table-widget", never, { "dataSource": "dataSource"; "dataOptions": "dataOptions"; "filters": "filters"; "styleOptions": "styleOptions"; "
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableWidgetComponent, "csdk-table-widget", never, { "dataSource": "dataSource"; "dataOptions": "dataOptions"; "filters": "filters"; "styleOptions": "styleOptions"; "title": "title"; "description": "description"; }, {}, never, never, false, never>;
|
|
66
60
|
}
|
|
@@ -21,8 +21,10 @@ import * as i19 from "./components/drilldown-widget.component";
|
|
|
21
21
|
import * as i20 from "./components/date-range-filter-tile.component";
|
|
22
22
|
import * as i21 from "./components/drilldown-breadcrumbs.component";
|
|
23
23
|
import * as i22 from "./components/context-menu.component";
|
|
24
|
-
import * as i23 from "
|
|
25
|
-
import * as i24 from "./
|
|
24
|
+
import * as i23 from "./components/boxplot-chart.component";
|
|
25
|
+
import * as i24 from "./components/scattermap-chart.component";
|
|
26
|
+
import * as i25 from "@angular/common";
|
|
27
|
+
import * as i26 from "./decorators/decorators.module";
|
|
26
28
|
/**
|
|
27
29
|
* SDK UI Module, which is a container for components.
|
|
28
30
|
*
|
|
@@ -51,6 +53,6 @@ import * as i24 from "./decorators/decorators.module";
|
|
|
51
53
|
*/
|
|
52
54
|
export declare class SdkUiModule {
|
|
53
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<SdkUiModule, never>;
|
|
54
|
-
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
|
|
56
|
+
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.CommonModule, typeof i26.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]>;
|
|
55
57
|
static ɵinj: i0.ɵɵInjectorDeclaration<SdkUiModule>;
|
|
56
58
|
}
|
|
@@ -21,7 +21,9 @@ export declare class QueryService {
|
|
|
21
21
|
*/
|
|
22
22
|
executeQueryByWidgetId(params: ExecuteQueryByWidgetIdParams): Promise<{
|
|
23
23
|
data: import("@sisense/sdk-data").QueryResultData;
|
|
24
|
-
query: ExecuteQueryParams
|
|
24
|
+
query: Omit<ExecuteQueryParams, "filters"> & {
|
|
25
|
+
filters?: import("@sisense/sdk-data").Filter[] | undefined;
|
|
26
|
+
};
|
|
25
27
|
}>;
|
|
26
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueryService, never>;
|
|
27
29
|
static ɵprov: i0.ɵɵInjectableDeclaration<QueryService>;
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sisense/sdk-ui-angular",
|
|
3
|
-
"
|
|
3
|
+
"homepage": "https://sisense.dev/guides/sdk/",
|
|
4
|
+
"description": "Compose SDK package containing general UI elements and related logic tailored for Angular development",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/sisense/compose-sdk-monorepo",
|
|
8
|
+
"directory": "packages/sdk-ui-angular"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"Sisense",
|
|
12
|
+
"Compose SDK"
|
|
13
|
+
],
|
|
14
|
+
"version": "1.0.0",
|
|
4
15
|
"author": "Sisense",
|
|
5
16
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
17
|
"main": "dist",
|
|
@@ -19,6 +30,7 @@
|
|
|
19
30
|
"@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
20
31
|
},
|
|
21
32
|
"dependencies": {
|
|
33
|
+
"@sisense/sdk-data": "workspace:^",
|
|
22
34
|
"@sisense/sdk-tracking": "workspace:^",
|
|
23
35
|
"@sisense/sdk-ui-preact": "workspace:^",
|
|
24
36
|
"rxjs": "^7.8.1",
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "0.
|
|
1
|
+
declare const _default: "1.0.0";
|
|
2
2
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sisense/sdk-ui-angular",
|
|
3
|
-
"
|
|
3
|
+
"homepage": "https://sisense.dev/guides/sdk/",
|
|
4
|
+
"description": "Compose SDK package containing general UI elements and related logic tailored for Angular development",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/sisense/compose-sdk-monorepo",
|
|
8
|
+
"directory": "packages/sdk-ui-angular"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"Sisense",
|
|
12
|
+
"Compose SDK"
|
|
13
|
+
],
|
|
14
|
+
"version": "1.0.0",
|
|
4
15
|
"author": "Sisense",
|
|
5
16
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
17
|
"main": "dist",
|
|
@@ -22,8 +33,10 @@
|
|
|
22
33
|
"lint:fix": "eslint . --fix",
|
|
23
34
|
"format": "prettier --write .",
|
|
24
35
|
"format:check": "prettier --check .",
|
|
25
|
-
"test": "
|
|
26
|
-
"test:
|
|
36
|
+
"test": "TZ=utc run vitest run",
|
|
37
|
+
"test:update": "TZ=utc run vitest -u",
|
|
38
|
+
"test:watch": "TZ=utc run vitest watch",
|
|
39
|
+
"test:coverage": "TZ=utc run vitest run --coverage",
|
|
27
40
|
"sync-version": "node ./scripts/sync-version.cjs"
|
|
28
41
|
},
|
|
29
42
|
"peerDependencies": {
|
|
@@ -32,8 +45,9 @@
|
|
|
32
45
|
"@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
33
46
|
},
|
|
34
47
|
"dependencies": {
|
|
35
|
-
"@sisense/sdk-
|
|
36
|
-
"@sisense/sdk-
|
|
48
|
+
"@sisense/sdk-data": "^1.0.0",
|
|
49
|
+
"@sisense/sdk-tracking": "^1.0.0",
|
|
50
|
+
"@sisense/sdk-ui-preact": "^1.0.0",
|
|
37
51
|
"rxjs": "^7.8.1",
|
|
38
52
|
"ts-deepmerge": "^6.2.0",
|
|
39
53
|
"tslib": "^2.3.0"
|
|
@@ -45,11 +59,12 @@
|
|
|
45
59
|
"@angular/compiler": "^15.2.0",
|
|
46
60
|
"@angular/compiler-cli": "^15.2.0",
|
|
47
61
|
"@angular/core": "^15.2.0",
|
|
48
|
-
"@
|
|
62
|
+
"@testing-library/angular": "^15.0.0",
|
|
49
63
|
"eslint": "^8.40.0",
|
|
50
64
|
"ng-packagr": "^15.2.2",
|
|
51
65
|
"prettier": "2.8.4",
|
|
52
|
-
"typescript": "~4.9.4"
|
|
66
|
+
"typescript": "~4.9.4",
|
|
67
|
+
"vitest": "^0.34.6"
|
|
53
68
|
},
|
|
54
69
|
"volta": {
|
|
55
70
|
"extends": "../../package.json"
|