@sisense/sdk-ui-angular 1.2.0 → 1.3.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/sdk-ui-core-exports.mjs +1 -1
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +12 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +12 -2
- 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/sdk-ui-core-exports.d.ts +1 -1
- 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 | 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 | 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
|
*
|
|
@@ -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, ScattermapColumn, ScattermapLocationLevel, StyledColumn, StyledMeasureColumn, ChartStyleOptions, LineStyleOptions, AreaStyleOptions, StackableStyleOptions, PieStyleOptions, FunnelStyleOptions, PolarStyleOptions, IndicatorStyleOptions, NumericSimpleIndicatorStyleOptions, NumericBarIndicatorStyleOptions, GaugeIndicatorStyleOptions, ScatterStyleOptions, TreemapStyleOptions, SunburstStyleOptions, BoxplotStyleOptions, ScattermapStyleOptions, ChartWidgetStyleOptions, WidgetStyleOptions, DashboardWidgetStyleOptions, TableStyleOptions, DataLimits, Legend, Markers, Labels, IndicatorComponents, ScatterMarkerSize, LineWidth, AxisLabel, Convolution, SeriesLabels, X2Title, ScattermapMarkers, WidgetModel, DashboardModel, BeforeRenderHandler, DataPoint, ScatterDataPoint, HighchartsOptions, BoxplotDataPoint,
|
|
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, WidgetDataOptions, NumberFormatConfig, DecimalScale, DataColorCondition, ConditionalDataColorOptions, DataColorOptions, RangeDataColorOptions, UniformDataColorOptions, ValueToColorMap, MultiColumnValueToColorMap, SortDirection, BoxWhiskerType, ScattermapColumn, ScattermapLocationLevel, StyledColumn, StyledMeasureColumn, ChartStyleOptions, LineStyleOptions, AreaStyleOptions, StackableStyleOptions, PieStyleOptions, FunnelStyleOptions, PolarStyleOptions, IndicatorStyleOptions, NumericSimpleIndicatorStyleOptions, NumericBarIndicatorStyleOptions, GaugeIndicatorStyleOptions, ScatterStyleOptions, TreemapStyleOptions, SunburstStyleOptions, BoxplotStyleOptions, ScattermapStyleOptions, AreamapStyleOptions, ChartWidgetStyleOptions, WidgetStyleOptions, DashboardWidgetStyleOptions, TableStyleOptions, 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';
|
|
@@ -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.3.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.3.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.3.0",
|
|
49
|
+
"@sisense/sdk-tracking": "^1.3.0",
|
|
50
|
+
"@sisense/sdk-ui-preact": "^1.3.0",
|
|
51
51
|
"rxjs": "^7.8.1",
|
|
52
52
|
"ts-deepmerge": "^6.2.0",
|
|
53
53
|
"tslib": "^2.3.0"
|