@sisense/sdk-ui-angular 1.0.0 → 1.2.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/area-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/areamap-chart.component.mjs +51 -0
- package/dist/esm2020/lib/components/bar-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/basic-member-filter-tile.component.mjs +1 -1
- package/dist/esm2020/lib/components/boxplot-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/chart-widget.component.mjs +1 -1
- package/dist/esm2020/lib/components/chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/column-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/context-menu.component.mjs +1 -1
- package/dist/esm2020/lib/components/date-range-filter-tile.component.mjs +1 -1
- package/dist/esm2020/lib/components/drilldown-breadcrumbs.component.mjs +1 -1
- package/dist/esm2020/lib/components/drilldown-widget.component.mjs +1 -1
- package/dist/esm2020/lib/components/funnel-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/index.mjs +2 -1
- package/dist/esm2020/lib/components/indicator-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/line-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/member-filter-tile.component.mjs +1 -1
- package/dist/esm2020/lib/components/pie-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/polar-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/scatter-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/scattermap-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/sunburst-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/treemap-chart.component.mjs +1 -1
- package/dist/esm2020/lib/sdk-ui-core-exports.mjs +4 -0
- package/dist/esm2020/lib/sdk-ui.module.mjs +8 -4
- package/dist/esm2020/lib/services/query.service.mjs +1 -1
- package/dist/esm2020/lib/services/sisense-context.service.mjs +2 -1
- package/dist/esm2020/lib/services/theme.service.mjs +2 -1
- package/dist/esm2020/lib/types/index.mjs +2 -0
- package/dist/esm2020/lib/types/utility-types.mjs +2 -0
- package/dist/esm2020/public-api.mjs +6 -1
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +66 -4
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +66 -4
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/area-chart.component.d.ts +3 -2
- package/dist/lib/components/areamap-chart.component.d.ts +42 -0
- package/dist/lib/components/bar-chart.component.d.ts +3 -2
- package/dist/lib/components/boxplot-chart.component.d.ts +3 -2
- package/dist/lib/components/chart-widget.component.d.ts +1 -1
- package/dist/lib/components/chart.component.d.ts +1 -1
- package/dist/lib/components/column-chart.component.d.ts +3 -2
- package/dist/lib/components/context-menu.component.d.ts +1 -1
- package/dist/lib/components/date-range-filter-tile.component.d.ts +1 -1
- package/dist/lib/components/drilldown-breadcrumbs.component.d.ts +1 -1
- package/dist/lib/components/funnel-chart.component.d.ts +3 -2
- package/dist/lib/components/index.d.ts +1 -0
- package/dist/lib/components/indicator-chart.component.d.ts +2 -1
- package/dist/lib/components/line-chart.component.d.ts +3 -2
- package/dist/lib/components/member-filter-tile.component.d.ts +1 -1
- package/dist/lib/components/pie-chart.component.d.ts +3 -2
- package/dist/lib/components/polar-chart.component.d.ts +3 -2
- package/dist/lib/components/scatter-chart.component.d.ts +3 -2
- package/dist/lib/components/scattermap-chart.component.d.ts +2 -1
- package/dist/lib/components/sunburst-chart.component.d.ts +3 -2
- package/dist/lib/components/treemap-chart.component.d.ts +3 -2
- package/dist/lib/sdk-ui-core-exports.d.ts +2 -0
- package/dist/lib/sdk-ui.module.d.ts +4 -3
- package/dist/lib/services/query.service.d.ts +12 -2
- package/dist/lib/services/sisense-context.service.d.ts +1 -0
- package/dist/lib/services/theme.service.d.ts +3 -1
- package/dist/lib/types/index.d.ts +1 -0
- package/dist/package.json +1 -1
- package/dist/public-api.d.ts +5 -0
- package/dist/version.d.ts +1 -1
- package/package.json +4 -4
- package/dist/esm2020/lib/utility-types.mjs +0 -2
- /package/dist/lib/{utility-types.d.ts → types/utility-types.d.ts} +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { type ChartType
|
|
3
|
-
import { type
|
|
2
|
+
import { type ChartType } from '../sdk-ui-core-exports';
|
|
3
|
+
import { type AreaChartProps } from '@sisense/sdk-ui-preact';
|
|
4
|
+
import { ArgumentsAsObject } from '../types';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* A component similar to a {@link LineChartComponent},
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { type ChartType, type AreamapChartProps } from '@sisense/sdk-ui-preact';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* An Angular component that allows to visualize geographical data as polygons on a map.
|
|
5
|
+
* See [Areamap Chart](https://docs.sisense.com/main/SisenseLinux/area-map.htm) for more information.
|
|
6
|
+
*/
|
|
7
|
+
export declare class AreamapChartComponent {
|
|
8
|
+
/**
|
|
9
|
+
* {@inheritDoc @sisense/sdk-ui!AreamapChartProps.dataSet}
|
|
10
|
+
*
|
|
11
|
+
* @category Data
|
|
12
|
+
*/
|
|
13
|
+
dataSet: AreamapChartProps['dataSet'];
|
|
14
|
+
/**
|
|
15
|
+
* {@inheritDoc @sisense/sdk-ui!AreamapChartProps.dataOptions}
|
|
16
|
+
*
|
|
17
|
+
* @category Chart
|
|
18
|
+
*/
|
|
19
|
+
dataOptions: AreamapChartProps['dataOptions'];
|
|
20
|
+
/**
|
|
21
|
+
* {@inheritDoc @sisense/sdk-ui!AreamapChartProps.filters}
|
|
22
|
+
*
|
|
23
|
+
* @category Data
|
|
24
|
+
*/
|
|
25
|
+
filters: AreamapChartProps['filters'];
|
|
26
|
+
/**
|
|
27
|
+
* {@inheritDoc @sisense/sdk-ui!AreamapChartProps.highlights}
|
|
28
|
+
*
|
|
29
|
+
* @category Data
|
|
30
|
+
*/
|
|
31
|
+
highlights: AreamapChartProps['highlights'];
|
|
32
|
+
/**
|
|
33
|
+
* {@inheritDoc @sisense/sdk-ui!AreamapChartProps.styleOptions}
|
|
34
|
+
*
|
|
35
|
+
* @category Chart
|
|
36
|
+
*/
|
|
37
|
+
styleOptions: AreamapChartProps['styleOptions'];
|
|
38
|
+
/** @internal */
|
|
39
|
+
chartType: ChartType;
|
|
40
|
+
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>;
|
|
42
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { type ChartType
|
|
3
|
-
import { type
|
|
2
|
+
import { type ChartType } from '../sdk-ui-core-exports';
|
|
3
|
+
import { type BarChartProps } from '@sisense/sdk-ui-preact';
|
|
4
|
+
import { type ArgumentsAsObject } from '../types/utility-types';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* A component representing categorical data with horizontal rectangular bars,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { type ChartType
|
|
3
|
-
import { type
|
|
2
|
+
import { type ChartType } from '../sdk-ui-core-exports';
|
|
3
|
+
import { type BoxplotChartProps } from '@sisense/sdk-ui-preact';
|
|
4
|
+
import { type ArgumentsAsObject } from '../types/utility-types';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* An Angular component representing data in a way that visually describes the distribution, variability,
|
|
@@ -2,7 +2,7 @@ import { AfterViewInit, ElementRef, EventEmitter, OnChanges, OnDestroy } from '@
|
|
|
2
2
|
import { type ChartWidgetProps } from '@sisense/sdk-ui-preact';
|
|
3
3
|
import { SisenseContextService } from '../services/sisense-context.service';
|
|
4
4
|
import { ThemeService } from '../services/theme.service';
|
|
5
|
-
import type { ArgumentsAsObject } from '../utility-types';
|
|
5
|
+
import type { ArgumentsAsObject } from '../types/utility-types';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* The Chart Widget component extending {@link ChartComponent} to support widget style options.
|
|
@@ -2,7 +2,7 @@ import { AfterViewInit, ElementRef, EventEmitter, OnChanges, OnDestroy } from '@
|
|
|
2
2
|
import { type ChartProps } from '@sisense/sdk-ui-preact';
|
|
3
3
|
import { SisenseContextService } from '../services/sisense-context.service';
|
|
4
4
|
import { ThemeService } from '../services/theme.service';
|
|
5
|
-
import type { ArgumentsAsObject } from '../utility-types';
|
|
5
|
+
import type { ArgumentsAsObject } from '../types/utility-types';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* An Angular component used for easily switching chart types or rendering multiple series of different chart types.
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { type ChartType
|
|
3
|
-
import { type
|
|
2
|
+
import { type ChartType } from '../sdk-ui-core-exports';
|
|
3
|
+
import { type ColumnChartProps } from '@sisense/sdk-ui-preact';
|
|
4
|
+
import { type ArgumentsAsObject } from '../types/utility-types';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* A component representing categorical data with vertical rectangular bars
|
|
@@ -2,7 +2,7 @@ import { AfterViewInit, ElementRef, EventEmitter, OnChanges, OnDestroy } from '@
|
|
|
2
2
|
import { type ContextMenuProps } from '@sisense/sdk-ui-preact';
|
|
3
3
|
import { SisenseContextService } from '../services/sisense-context.service';
|
|
4
4
|
import { ThemeService } from '../services/theme.service';
|
|
5
|
-
import type { ArgumentsAsObject } from '../utility-types';
|
|
5
|
+
import type { ArgumentsAsObject } from '../types/utility-types';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Context Menu Component
|
|
@@ -2,7 +2,7 @@ import { AfterViewInit, ElementRef, EventEmitter, OnChanges, OnDestroy } from '@
|
|
|
2
2
|
import { type DateRangeFilterTileProps } from '@sisense/sdk-ui-preact';
|
|
3
3
|
import { SisenseContextService } from '../services/sisense-context.service';
|
|
4
4
|
import { ThemeService } from '../services/theme.service';
|
|
5
|
-
import type { ArgumentsAsObject } from '../utility-types';
|
|
5
|
+
import type { ArgumentsAsObject } from '../types/utility-types';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Date Range Filter Tile Component
|
|
@@ -2,7 +2,7 @@ import { AfterViewInit, ElementRef, EventEmitter, OnChanges, OnDestroy } from '@
|
|
|
2
2
|
import { type DrilldownBreadcrumbsProps } from '@sisense/sdk-ui-preact';
|
|
3
3
|
import { SisenseContextService } from '../services/sisense-context.service';
|
|
4
4
|
import { ThemeService } from '../services/theme.service';
|
|
5
|
-
import type { ArgumentsAsObject } from '../utility-types';
|
|
5
|
+
import type { ArgumentsAsObject } from '../types/utility-types';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Drilldown Breadcrumbs Component
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { type ChartType
|
|
3
|
-
import { type
|
|
2
|
+
import { type ChartType } from '../sdk-ui-core-exports';
|
|
3
|
+
import { type FunnelChartProps } from '@sisense/sdk-ui-preact';
|
|
4
|
+
import { type ArgumentsAsObject } from '../types/utility-types';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* A component representing data progressively decreasing in size or quantity through a funnel shape.
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { type ChartType
|
|
1
|
+
import { type ChartType } from '../sdk-ui-core-exports';
|
|
2
|
+
import { type IndicatorChartProps } from '@sisense/sdk-ui-preact';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* A component that provides various options for displaying one or two numeric values as a number, gauge or ticker.
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { type ChartType
|
|
3
|
-
import { type
|
|
2
|
+
import { type ChartType } from '../sdk-ui-core-exports';
|
|
3
|
+
import { type LineChartProps } from '@sisense/sdk-ui-preact';
|
|
4
|
+
import { type ArgumentsAsObject } from '../types/utility-types';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* A component displaying data as a series of points connected by a line. Used to show trends or changes over time.
|
|
@@ -2,7 +2,7 @@ import { AfterViewInit, ElementRef, EventEmitter, OnChanges, OnDestroy } from '@
|
|
|
2
2
|
import { type MemberFilterTileProps } from '@sisense/sdk-ui-preact';
|
|
3
3
|
import { SisenseContextService } from '../services/sisense-context.service';
|
|
4
4
|
import { ThemeService } from '../services/theme.service';
|
|
5
|
-
import type { ArgumentsAsObject } from '../utility-types';
|
|
5
|
+
import type { ArgumentsAsObject } from '../types/utility-types';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Member Filter Tile Component
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { type ChartType
|
|
3
|
-
import { type
|
|
2
|
+
import { type ChartType } from '../sdk-ui-core-exports';
|
|
3
|
+
import { type PieChartProps } from '@sisense/sdk-ui-preact';
|
|
4
|
+
import { type ArgumentsAsObject } from '../types/utility-types';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* A component representing data in a circular graph with the data shown as slices of a whole,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { type ChartType
|
|
3
|
-
import { type
|
|
2
|
+
import { type ChartType } from '../sdk-ui-core-exports';
|
|
3
|
+
import { type PolarChartProps } from '@sisense/sdk-ui-preact';
|
|
4
|
+
import { type ArgumentsAsObject } from '../types/utility-types';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* A component comparing multiple categories/variables with a spacial perspective in a radial chart.
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { type ChartType
|
|
3
|
-
import { type
|
|
2
|
+
import { type ChartType } from '../sdk-ui-core-exports';
|
|
3
|
+
import { type ScatterChartProps } from '@sisense/sdk-ui-preact';
|
|
4
|
+
import { type ArgumentsAsObject } from '../types/utility-types';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* A component displaying the distribution of two variables on an X-Axis, Y-Axis,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { type ChartType
|
|
1
|
+
import { type ChartType } from '../sdk-ui-core-exports';
|
|
2
|
+
import { type ScattermapChartProps } from '@sisense/sdk-ui-preact';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* An Angular component that allows to visualize geographical data as data points on a map.
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { type ChartType
|
|
3
|
-
import { type
|
|
2
|
+
import { type ChartType } from '../sdk-ui-core-exports';
|
|
3
|
+
import { type SunburstChartProps } from '@sisense/sdk-ui-preact';
|
|
4
|
+
import { type ArgumentsAsObject } from '../types/utility-types';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* A component displaying hierarchical data in the form of nested slices.
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { type ChartType
|
|
3
|
-
import { type
|
|
2
|
+
import { type ChartType } from '../sdk-ui-core-exports';
|
|
3
|
+
import { type TreemapChartProps } from '@sisense/sdk-ui-preact';
|
|
4
|
+
import { type ArgumentsAsObject } from '../types/utility-types';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* A component displaying hierarchical data in the form of nested rectangles.
|
|
@@ -0,0 +1,2 @@
|
|
|
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, DataPoints, 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';
|
|
@@ -23,8 +23,9 @@ import * as i21 from "./components/drilldown-breadcrumbs.component";
|
|
|
23
23
|
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
|
-
import * as i25 from "
|
|
27
|
-
import * as i26 from "
|
|
26
|
+
import * as i25 from "./components/areamap-chart.component";
|
|
27
|
+
import * as i26 from "@angular/common";
|
|
28
|
+
import * as i27 from "./decorators/decorators.module";
|
|
28
29
|
/**
|
|
29
30
|
* SDK UI Module, which is a container for components.
|
|
30
31
|
*
|
|
@@ -53,6 +54,6 @@ import * as i26 from "./decorators/decorators.module";
|
|
|
53
54
|
*/
|
|
54
55
|
export declare class SdkUiModule {
|
|
55
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<SdkUiModule, never>;
|
|
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
|
|
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 i26.CommonModule, typeof i27.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]>;
|
|
57
58
|
static ɵinj: i0.ɵɵInjectorDeclaration<SdkUiModule>;
|
|
58
59
|
}
|
|
@@ -1,6 +1,16 @@
|
|
|
1
|
-
import { type ExecuteQueryParams, type ExecuteQueryByWidgetIdParams } from '@sisense/sdk-ui-preact';
|
|
1
|
+
import { type ExecuteQueryParams as ExecuteQueryParamsPreact, type ExecuteQueryByWidgetIdParams as ExecuteQueryByWidgetIdParamsPreact } from '@sisense/sdk-ui-preact';
|
|
2
2
|
import { SisenseContextService } from './sisense-context.service';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Parameters for data query execution.
|
|
6
|
+
*/
|
|
7
|
+
export interface ExecuteQueryParams extends Omit<ExecuteQueryParamsPreact, 'enabled'> {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Parameters for data query by widget id execution.
|
|
11
|
+
*/
|
|
12
|
+
export interface ExecuteQueryByWidgetIdParams extends Omit<ExecuteQueryByWidgetIdParamsPreact, 'enabled'> {
|
|
13
|
+
}
|
|
4
14
|
export declare class QueryService {
|
|
5
15
|
private sisenseContextService;
|
|
6
16
|
constructor(sisenseContextService: SisenseContextService);
|
|
@@ -21,7 +31,7 @@ export declare class QueryService {
|
|
|
21
31
|
*/
|
|
22
32
|
executeQueryByWidgetId(params: ExecuteQueryByWidgetIdParams): Promise<{
|
|
23
33
|
data: import("@sisense/sdk-data").QueryResultData;
|
|
24
|
-
query: Omit<
|
|
34
|
+
query: Omit<ExecuteQueryParamsPreact, "filters"> & {
|
|
25
35
|
filters?: import("@sisense/sdk-data").Filter[] | undefined;
|
|
26
36
|
};
|
|
27
37
|
}>;
|
|
@@ -34,6 +34,7 @@ export declare class SisenseContextService {
|
|
|
34
34
|
private appPromise;
|
|
35
35
|
private config;
|
|
36
36
|
constructor(sisenseContextConfig: SisenseContextConfig);
|
|
37
|
+
/** @internal */
|
|
37
38
|
getApp(): Promise<ClientApplication>;
|
|
38
39
|
getConfig(): SisenseContextConfig;
|
|
39
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<SisenseContextService, never>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { InjectionToken } from '@angular/core';
|
|
2
|
-
import { type ThemeProviderProps as ThemeConfig
|
|
2
|
+
import { type ThemeProviderProps as ThemeConfig } from '@sisense/sdk-ui-preact';
|
|
3
|
+
import { type ThemeSettings } from '../sdk-ui-core-exports';
|
|
3
4
|
import { SisenseContextService } from './sisense-context.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export { type ThemeConfig };
|
|
@@ -43,6 +44,7 @@ export declare class ThemeService {
|
|
|
43
44
|
constructor(sisenseContextService: SisenseContextService, themeConfig?: ThemeConfig);
|
|
44
45
|
private initThemeSettings;
|
|
45
46
|
private applyThemeSettings;
|
|
47
|
+
/** @internal */
|
|
46
48
|
getThemeSettings(): import("rxjs").Observable<{
|
|
47
49
|
chart: {
|
|
48
50
|
textColor: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './utility-types';
|
package/dist/package.json
CHANGED
package/dist/public-api.d.ts
CHANGED
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "1.
|
|
1
|
+
declare const _default: "1.2.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.2.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.2.0",
|
|
49
|
+
"@sisense/sdk-tracking": "^1.2.0",
|
|
50
|
+
"@sisense/sdk-ui-preact": "^1.2.0",
|
|
51
51
|
"rxjs": "^7.8.1",
|
|
52
52
|
"ts-deepmerge": "^6.2.0",
|
|
53
53
|
"tslib": "^2.3.0"
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXRpbGl0eS10eXBlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9saWIvdXRpbGl0eS10eXBlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsidHlwZSBaaXBUdXBsZXM8S2V5cyBleHRlbmRzIHJlYWRvbmx5IGFueVtdLCBWYWx1ZXMgZXh0ZW5kcyByZWFkb25seSBhbnlbXT4gPSB7XG4gIFtLIGluIGtleW9mIEtleXNdOiBbS2V5c1tLXSwgSyBleHRlbmRzIGtleW9mIFZhbHVlcyA/IFZhbHVlc1tLXSA6IG5ldmVyXTtcbn07XG5cbnR5cGUgWmlwVHVwbGVzQXNPYmplY3Q8S2V5cyBleHRlbmRzIHJlYWRvbmx5IFByb3BlcnR5S2V5W10sIFZhbHVlcyBleHRlbmRzIHJlYWRvbmx5IGFueVtdPiA9IHtcbiAgW1QgaW4gWmlwVHVwbGVzPEtleXMsIFZhbHVlcz5bbnVtYmVyXSBhcyBUWzBdXTogVFsxXTtcbn07XG5cbi8qKiBAaW50ZXJuYWwgKi9cbmV4cG9ydCB0eXBlIEFyZ3VtZW50c0FzT2JqZWN0PFxuICBGbiBleHRlbmRzICgoLi4ucGFyYW1zOiByZWFkb25seSBhbnlbXSkgPT4gYW55KSB8IHVuZGVmaW5lZCxcbiAgS2V5cyBleHRlbmRzIHJlYWRvbmx5IFByb3BlcnR5S2V5W10sXG4+ID0gWmlwVHVwbGVzQXNPYmplY3Q8S2V5cywgUGFyYW1ldGVyczxOb25OdWxsYWJsZTxGbj4+PjtcblxuLyoqIEBpbnRlcm5hbCAqL1xuZXhwb3J0IHR5cGUgQXJndW1lbnRzPFQgZXh0ZW5kcyAoKC4uLmFyZ3M6IGFueVtdKSA9PiB2b2lkKSB8IHVuZGVmaW5lZD4gPSBQYXJhbWV0ZXJzPFxuICBOb25OdWxsYWJsZTxUPlxuPjtcbiJdfQ==
|
|
File without changes
|