@sisense/sdk-ui-angular 1.21.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.
Files changed (62) hide show
  1. package/dist/esm2020/lib/component-wrapper-helpers/context-connectors.mjs +7 -7
  2. package/dist/esm2020/lib/components/charts/area-chart.component.mjs +5 -3
  3. package/dist/esm2020/lib/components/charts/area-range-chart.component.mjs +5 -3
  4. package/dist/esm2020/lib/components/charts/areamap-chart.component.mjs +5 -3
  5. package/dist/esm2020/lib/components/charts/bar-chart.component.mjs +5 -3
  6. package/dist/esm2020/lib/components/charts/boxplot-chart.component.mjs +5 -3
  7. package/dist/esm2020/lib/components/charts/chart.component.mjs +5 -2
  8. package/dist/esm2020/lib/components/charts/column-chart.component.mjs +5 -3
  9. package/dist/esm2020/lib/components/charts/funnel-chart.component.mjs +5 -3
  10. package/dist/esm2020/lib/components/charts/indicator-chart.component.mjs +5 -3
  11. package/dist/esm2020/lib/components/charts/line-chart.component.mjs +5 -3
  12. package/dist/esm2020/lib/components/charts/pie-chart.component.mjs +5 -3
  13. package/dist/esm2020/lib/components/charts/polar-chart.component.mjs +5 -3
  14. package/dist/esm2020/lib/components/charts/scatter-chart.component.mjs +5 -3
  15. package/dist/esm2020/lib/components/charts/scattermap-chart.component.mjs +5 -3
  16. package/dist/esm2020/lib/components/charts/sunburst-chart.component.mjs +5 -3
  17. package/dist/esm2020/lib/components/charts/treemap-chart.component.mjs +5 -3
  18. package/dist/esm2020/lib/components/dashboard/dashboard-by-id.component.mjs +2 -2
  19. package/dist/esm2020/lib/components/widgets/dashboard-widget.component.mjs +2 -2
  20. package/dist/esm2020/lib/components/widgets/drilldown-widget.component.mjs +7 -4
  21. package/dist/esm2020/lib/components/widgets/index.mjs +2 -1
  22. package/dist/esm2020/lib/components/widgets/widget-by-id.component.mjs +114 -0
  23. package/dist/esm2020/lib/decorators/trackable.decorator.mjs +2 -3
  24. package/dist/esm2020/lib/sdk-ui-core-exports.mjs +2 -2
  25. package/dist/esm2020/lib/sdk-ui.module.mjs +6 -2
  26. package/dist/esm2020/lib/services/dashboard.service.mjs +2 -2
  27. package/dist/esm2020/lib/services/widget.service.mjs +2 -2
  28. package/dist/esm2020/public-api.mjs +3 -3
  29. package/dist/esm2020/version.mjs +2 -2
  30. package/dist/fesm2015/sisense-sdk-ui-angular.mjs +199 -53
  31. package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
  32. package/dist/fesm2020/sisense-sdk-ui-angular.mjs +198 -52
  33. package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
  34. package/dist/lib/components/charts/area-chart.component.d.ts +8 -1
  35. package/dist/lib/components/charts/area-range-chart.component.d.ts +8 -1
  36. package/dist/lib/components/charts/areamap-chart.component.d.ts +8 -1
  37. package/dist/lib/components/charts/bar-chart.component.d.ts +8 -1
  38. package/dist/lib/components/charts/boxplot-chart.component.d.ts +8 -1
  39. package/dist/lib/components/charts/chart.component.d.ts +9 -1
  40. package/dist/lib/components/charts/column-chart.component.d.ts +8 -1
  41. package/dist/lib/components/charts/funnel-chart.component.d.ts +8 -1
  42. package/dist/lib/components/charts/indicator-chart.component.d.ts +8 -1
  43. package/dist/lib/components/charts/line-chart.component.d.ts +8 -1
  44. package/dist/lib/components/charts/pie-chart.component.d.ts +8 -1
  45. package/dist/lib/components/charts/polar-chart.component.d.ts +8 -1
  46. package/dist/lib/components/charts/scatter-chart.component.d.ts +8 -1
  47. package/dist/lib/components/charts/scattermap-chart.component.d.ts +8 -1
  48. package/dist/lib/components/charts/sunburst-chart.component.d.ts +8 -1
  49. package/dist/lib/components/charts/treemap-chart.component.d.ts +8 -1
  50. package/dist/lib/components/dashboard/dashboard-by-id.component.d.ts +1 -1
  51. package/dist/lib/components/widgets/dashboard-widget.component.d.ts +1 -1
  52. package/dist/lib/components/widgets/drilldown-widget.component.d.ts +12 -4
  53. package/dist/lib/components/widgets/index.d.ts +1 -0
  54. package/dist/lib/components/widgets/widget-by-id.component.d.ts +116 -0
  55. package/dist/lib/sdk-ui-core-exports.d.ts +2 -2
  56. package/dist/lib/sdk-ui.module.d.ts +16 -15
  57. package/dist/lib/services/dashboard.service.d.ts +1 -1
  58. package/dist/lib/services/widget.service.d.ts +1 -1
  59. package/dist/package.json +1 -1
  60. package/dist/public-api.d.ts +2 -2
  61. package/dist/version.d.ts +1 -1
  62. package/package.json +5 -5
@@ -95,6 +95,13 @@ export declare class AreaChartComponent {
95
95
  * @category Callbacks
96
96
  */
97
97
  beforeRender: AreaChartProps['onBeforeRender'];
98
+ /**
99
+ * {@inheritDoc @sisense/sdk-ui!AreaChartProps.onDataReady}
100
+ *
101
+ * @category Callbacks
102
+ * @internal
103
+ */
104
+ dataReady: AreaChartProps['onDataReady'];
98
105
  /**
99
106
  * {@inheritDoc @sisense/sdk-ui!AreaChartProps.onDataPointClick}
100
107
  *
@@ -116,5 +123,5 @@ export declare class AreaChartComponent {
116
123
  /** @internal */
117
124
  chartType: ChartType;
118
125
  static ɵfac: i0.ɵɵFactoryDeclaration<AreaChartComponent, never>;
119
- static ɵcmp: i0.ɵɵComponentDeclaration<AreaChartComponent, "csdk-area-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
126
+ static ɵcmp: i0.ɵɵComponentDeclaration<AreaChartComponent, "csdk-area-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
120
127
  }
@@ -109,6 +109,13 @@ export declare class AreaRangeChartComponent {
109
109
  * @category Callbacks
110
110
  */
111
111
  beforeRender: AreaRangeChartProps['onBeforeRender'];
112
+ /**
113
+ * {@inheritDoc @sisense/sdk-ui!AreaRangeChartProps.onDataReady}
114
+ *
115
+ * @category Callbacks
116
+ * @internal
117
+ */
118
+ dataReady: AreaRangeChartProps['onDataReady'];
112
119
  /**
113
120
  * {@inheritDoc @sisense/sdk-ui!AreaRangeChartProps.onDataPointClick}
114
121
  *
@@ -130,5 +137,5 @@ export declare class AreaRangeChartComponent {
130
137
  /** @internal */
131
138
  chartType: ChartType;
132
139
  static ɵfac: i0.ɵɵFactoryDeclaration<AreaRangeChartComponent, never>;
133
- static ɵcmp: i0.ɵɵComponentDeclaration<AreaRangeChartComponent, "csdk-area-range-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
140
+ static ɵcmp: i0.ɵɵComponentDeclaration<AreaRangeChartComponent, "csdk-area-range-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
134
141
  }
@@ -77,6 +77,13 @@ export declare class AreamapChartComponent {
77
77
  * @category Chart
78
78
  */
79
79
  styleOptions: AreamapChartProps['styleOptions'];
80
+ /**
81
+ * {@inheritDoc @sisense/sdk-ui!AreamapChartProps.onDataReady}
82
+ *
83
+ * @category Callbacks
84
+ * @internal
85
+ */
86
+ dataReady: AreamapChartProps['onDataReady'];
80
87
  /**
81
88
  * {@inheritDoc @sisense/sdk-ui!AreamapChartProps.onDataPointClick}
82
89
  *
@@ -86,5 +93,5 @@ export declare class AreamapChartComponent {
86
93
  /** @internal */
87
94
  chartType: ChartType;
88
95
  static ɵfac: i0.ɵɵFactoryDeclaration<AreamapChartComponent, never>;
89
- 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>;
96
+ static ɵcmp: i0.ɵɵComponentDeclaration<AreamapChartComponent, "csdk-areamap-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; }, never, never, false, never>;
90
97
  }
@@ -96,6 +96,13 @@ export declare class BarChartComponent {
96
96
  * @category Callbacks
97
97
  */
98
98
  beforeRender: BarChartProps['onBeforeRender'];
99
+ /**
100
+ * {@inheritDoc @sisense/sdk-ui!BarChartProps.onDataReady}
101
+ *
102
+ * @category Callbacks
103
+ * @internal
104
+ */
105
+ dataReady: BarChartProps['onDataReady'];
99
106
  /**
100
107
  * {@inheritDoc @sisense/sdk-ui!BarChartProps.onDataPointClick}
101
108
  *
@@ -117,5 +124,5 @@ export declare class BarChartComponent {
117
124
  /** @internal */
118
125
  chartType: ChartType;
119
126
  static ɵfac: i0.ɵɵFactoryDeclaration<BarChartComponent, never>;
120
- static ɵcmp: i0.ɵɵComponentDeclaration<BarChartComponent, "csdk-bar-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
127
+ static ɵcmp: i0.ɵɵComponentDeclaration<BarChartComponent, "csdk-bar-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
121
128
  }
@@ -89,6 +89,13 @@ export declare class BoxplotChartComponent {
89
89
  * @category Callbacks
90
90
  */
91
91
  beforeRender: BoxplotChartProps['onBeforeRender'];
92
+ /**
93
+ * {@inheritDoc @sisense/sdk-ui!BoxplotChartProps.onDataReady}
94
+ *
95
+ * @category Callbacks
96
+ * @internal
97
+ */
98
+ dataReady: BoxplotChartProps['onDataReady'];
92
99
  /**
93
100
  * {@inheritDoc @sisense/sdk-ui!BoxplotChartProps.onDataPointClick}
94
101
  *
@@ -110,5 +117,5 @@ export declare class BoxplotChartComponent {
110
117
  /** @internal */
111
118
  chartType: ChartType;
112
119
  static ɵfac: i0.ɵɵFactoryDeclaration<BoxplotChartComponent, never>;
113
- 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>;
120
+ static ɵcmp: i0.ɵɵComponentDeclaration<BoxplotChartComponent, "csdk-boxplot-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
114
121
  }
@@ -53,6 +53,7 @@ import * as i0 from "@angular/core";
53
53
  * ```
54
54
  *
55
55
  * <img src="media://angular-chart-example.png" width="800px" />
56
+ * @shortDescription Common component for rendering charts of different types including table
56
57
  *
57
58
  * @group Charts
58
59
  */
@@ -115,6 +116,13 @@ export declare class ChartComponent implements AfterViewInit, OnChanges, OnDestr
115
116
  * @category Callbacks
116
117
  */
117
118
  beforeRender: ChartProps['onBeforeRender'];
119
+ /**
120
+ * {@inheritDoc @sisense/sdk-ui!ChartProps.onDataReady}
121
+ *
122
+ * @category Callbacks
123
+ * @internal
124
+ */
125
+ dataReady: ChartProps['onDataReady'];
118
126
  /**
119
127
  * {@inheritDoc @sisense/sdk-ui!ChartProps.onDataPointClick}
120
128
  *
@@ -167,5 +175,5 @@ export declare class ChartComponent implements AfterViewInit, OnChanges, OnDestr
167
175
  */
168
176
  ngOnDestroy(): void;
169
177
  static ɵfac: i0.ɵɵFactoryDeclaration<ChartComponent, never>;
170
- static ɵcmp: i0.ɵɵComponentDeclaration<ChartComponent, "csdk-chart", never, { "chartType": "chartType"; "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
178
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChartComponent, "csdk-chart", never, { "chartType": "chartType"; "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
171
179
  }
@@ -95,6 +95,13 @@ export declare class ColumnChartComponent {
95
95
  * @category Callbacks
96
96
  */
97
97
  beforeRender: ColumnChartProps['onBeforeRender'];
98
+ /**
99
+ * {@inheritDoc @sisense/sdk-ui!ColumnChartProps.onDataReady}
100
+ *
101
+ * @category Callbacks
102
+ * @internal
103
+ */
104
+ dataReady: ColumnChartProps['onDataReady'];
98
105
  /**
99
106
  * {@inheritDoc @sisense/sdk-ui!ColumnChartProps.onDataPointClick}
100
107
  *
@@ -116,5 +123,5 @@ export declare class ColumnChartComponent {
116
123
  /** @internal */
117
124
  chartType: ChartType;
118
125
  static ɵfac: i0.ɵɵFactoryDeclaration<ColumnChartComponent, never>;
119
- static ɵcmp: i0.ɵɵComponentDeclaration<ColumnChartComponent, "csdk-column-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
126
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColumnChartComponent, "csdk-column-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
120
127
  }
@@ -93,6 +93,13 @@ export declare class FunnelChartComponent {
93
93
  * @category Callbacks
94
94
  */
95
95
  beforeRender: FunnelChartProps['onBeforeRender'];
96
+ /**
97
+ * {@inheritDoc @sisense/sdk-ui!FunnelChartProps.onDataReady}
98
+ *
99
+ * @category Callbacks
100
+ * @internal
101
+ */
102
+ dataReady: FunnelChartProps['onDataReady'];
96
103
  /**
97
104
  * {@inheritDoc @sisense/sdk-ui!FunnelChartProps.onDataPointClick}
98
105
  *
@@ -114,5 +121,5 @@ export declare class FunnelChartComponent {
114
121
  /** @internal */
115
122
  chartType: ChartType;
116
123
  static ɵfac: i0.ɵɵFactoryDeclaration<FunnelChartComponent, never>;
117
- static ɵcmp: i0.ɵɵComponentDeclaration<FunnelChartComponent, "csdk-funnel-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
124
+ static ɵcmp: i0.ɵɵComponentDeclaration<FunnelChartComponent, "csdk-funnel-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
118
125
  }
@@ -91,8 +91,15 @@ export declare class IndicatorChartComponent {
91
91
  * @category Chart
92
92
  */
93
93
  styleOptions: IndicatorChartProps['styleOptions'];
94
+ /**
95
+ * {@inheritDoc @sisense/sdk-ui!IndicatorChartProps.onDataReady}
96
+ *
97
+ * @category Callbacks
98
+ * @internal
99
+ */
100
+ dataReady: IndicatorChartProps['onDataReady'];
94
101
  /** @internal */
95
102
  chartType: ChartType;
96
103
  static ɵfac: i0.ɵɵFactoryDeclaration<IndicatorChartComponent, never>;
97
- static ɵcmp: i0.ɵɵComponentDeclaration<IndicatorChartComponent, "csdk-indicator-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; }, {}, never, never, false, never>;
104
+ static ɵcmp: i0.ɵɵComponentDeclaration<IndicatorChartComponent, "csdk-indicator-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "dataReady": "dataReady"; }, {}, never, never, false, never>;
98
105
  }
@@ -93,6 +93,13 @@ export declare class LineChartComponent {
93
93
  * @category Callbacks
94
94
  */
95
95
  beforeRender: LineChartProps['onBeforeRender'];
96
+ /**
97
+ * {@inheritDoc @sisense/sdk-ui!LineChartProps.onDataReady}
98
+ *
99
+ * @category Callbacks
100
+ * @internal
101
+ */
102
+ dataReady: LineChartProps['onDataReady'];
96
103
  /**
97
104
  * {@inheritDoc @sisense/sdk-ui!LineChartProps.onDataPointClick}
98
105
  *
@@ -114,5 +121,5 @@ export declare class LineChartComponent {
114
121
  /** @internal */
115
122
  chartType: ChartType;
116
123
  static ɵfac: i0.ɵɵFactoryDeclaration<LineChartComponent, never>;
117
- static ɵcmp: i0.ɵɵComponentDeclaration<LineChartComponent, "csdk-line-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
124
+ static ɵcmp: i0.ɵɵComponentDeclaration<LineChartComponent, "csdk-line-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
118
125
  }
@@ -95,6 +95,13 @@ export declare class PieChartComponent {
95
95
  * @category Callbacks
96
96
  */
97
97
  beforeRender: PieChartProps['onBeforeRender'];
98
+ /**
99
+ * {@inheritDoc @sisense/sdk-ui!PieChartProps.onDataReady}
100
+ *
101
+ * @category Callbacks
102
+ * @internal
103
+ */
104
+ dataReady: PieChartProps['onDataReady'];
98
105
  /**
99
106
  * {@inheritDoc @sisense/sdk-ui!PieChartProps.onDataPointClick}
100
107
  *
@@ -116,5 +123,5 @@ export declare class PieChartComponent {
116
123
  /** @internal */
117
124
  chartType: ChartType;
118
125
  static ɵfac: i0.ɵɵFactoryDeclaration<PieChartComponent, never>;
119
- static ɵcmp: i0.ɵɵComponentDeclaration<PieChartComponent, "csdk-pie-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
126
+ static ɵcmp: i0.ɵɵComponentDeclaration<PieChartComponent, "csdk-pie-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
120
127
  }
@@ -94,6 +94,13 @@ export declare class PolarChartComponent {
94
94
  * @category Callbacks
95
95
  */
96
96
  beforeRender: PolarChartProps['onBeforeRender'];
97
+ /**
98
+ * {@inheritDoc @sisense/sdk-ui!PolarChartProps.onDataReady}
99
+ *
100
+ * @category Callbacks
101
+ * @internal
102
+ */
103
+ dataReady: PolarChartProps['onDataReady'];
97
104
  /**
98
105
  * {@inheritDoc @sisense/sdk-ui!PolarChartProps.onDataPointClick}
99
106
  *
@@ -115,5 +122,5 @@ export declare class PolarChartComponent {
115
122
  /** @internal */
116
123
  chartType: ChartType;
117
124
  static ɵfac: i0.ɵɵFactoryDeclaration<PolarChartComponent, never>;
118
- static ɵcmp: i0.ɵɵComponentDeclaration<PolarChartComponent, "csdk-polar-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
125
+ static ɵcmp: i0.ɵɵComponentDeclaration<PolarChartComponent, "csdk-polar-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
119
126
  }
@@ -97,6 +97,13 @@ export declare class ScatterChartComponent {
97
97
  * @category Callbacks
98
98
  */
99
99
  beforeRender: ScatterChartProps['onBeforeRender'];
100
+ /**
101
+ * {@inheritDoc @sisense/sdk-ui!ScatterChartProps.onDataReady}
102
+ *
103
+ * @category Callbacks
104
+ * @internal
105
+ */
106
+ dataReady: ScatterChartProps['onDataReady'];
100
107
  /**
101
108
  * {@inheritDoc @sisense/sdk-ui!ScatterChartProps.onDataPointClick}
102
109
  *
@@ -118,5 +125,5 @@ export declare class ScatterChartComponent {
118
125
  /** @internal */
119
126
  chartType: ChartType;
120
127
  static ɵfac: i0.ɵɵFactoryDeclaration<ScatterChartComponent, never>;
121
- static ɵcmp: i0.ɵɵComponentDeclaration<ScatterChartComponent, "csdk-scatter-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
128
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScatterChartComponent, "csdk-scatter-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
122
129
  }
@@ -84,6 +84,13 @@ export declare class ScattermapChartComponent {
84
84
  * @category Chart
85
85
  */
86
86
  styleOptions: ScattermapChartProps['styleOptions'];
87
+ /**
88
+ * {@inheritDoc @sisense/sdk-ui!ScattermapChartProps.onDataReady}
89
+ *
90
+ * @category Callbacks
91
+ * @internal
92
+ */
93
+ dataReady: ScattermapChartProps['onDataReady'];
87
94
  /**
88
95
  * {@inheritDoc @sisense/sdk-ui!ScattermapChartProps.onDataPointClick}
89
96
  *
@@ -93,5 +100,5 @@ export declare class ScattermapChartComponent {
93
100
  /** @internal */
94
101
  chartType: ChartType;
95
102
  static ɵfac: i0.ɵɵFactoryDeclaration<ScattermapChartComponent, never>;
96
- 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>;
103
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScattermapChartComponent, "csdk-scattermap-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; }, never, never, false, never>;
97
104
  }
@@ -95,6 +95,13 @@ export declare class SunburstChartComponent {
95
95
  * @category Callbacks
96
96
  */
97
97
  beforeRender: SunburstChartProps['onBeforeRender'];
98
+ /**
99
+ * {@inheritDoc @sisense/sdk-ui!SunburstChartProps.onDataReady}
100
+ *
101
+ * @category Callbacks
102
+ * @internal
103
+ */
104
+ dataReady: SunburstChartProps['onDataReady'];
98
105
  /**
99
106
  * {@inheritDoc @sisense/sdk-ui!SunburstChartProps.onDataPointClick}
100
107
  *
@@ -116,5 +123,5 @@ export declare class SunburstChartComponent {
116
123
  /** @internal */
117
124
  chartType: ChartType;
118
125
  static ɵfac: i0.ɵɵFactoryDeclaration<SunburstChartComponent, never>;
119
- static ɵcmp: i0.ɵɵComponentDeclaration<SunburstChartComponent, "csdk-sunburst-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
126
+ static ɵcmp: i0.ɵɵComponentDeclaration<SunburstChartComponent, "csdk-sunburst-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
120
127
  }
@@ -95,6 +95,13 @@ export declare class TreemapChartComponent {
95
95
  * @category Callbacks
96
96
  */
97
97
  beforeRender: TreemapChartProps['onBeforeRender'];
98
+ /**
99
+ * {@inheritDoc @sisense/sdk-ui!TreemapChartProps.onDataReady}
100
+ *
101
+ * @category Callbacks
102
+ * @internal
103
+ */
104
+ dataReady: TreemapChartProps['onDataReady'];
98
105
  /**
99
106
  * {@inheritDoc @sisense/sdk-ui!TreemapChartProps.onDataPointClick}
100
107
  *
@@ -116,5 +123,5 @@ export declare class TreemapChartComponent {
116
123
  /** @internal */
117
124
  chartType: ChartType;
118
125
  static ɵfac: i0.ɵɵFactoryDeclaration<TreemapChartComponent, never>;
119
- static ɵcmp: i0.ɵɵComponentDeclaration<TreemapChartComponent, "csdk-treemap-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
126
+ static ɵcmp: i0.ɵɵComponentDeclaration<TreemapChartComponent, "csdk-treemap-chart", never, { "dataSet": "dataSet"; "dataOptions": "dataOptions"; "filters": "filters"; "highlights": "highlights"; "styleOptions": "styleOptions"; "beforeRender": "beforeRender"; "dataReady": "dataReady"; }, { "dataPointClick": "dataPointClick"; "dataPointContextMenu": "dataPointContextMenu"; "dataPointsSelect": "dataPointsSelect"; }, never, never, false, never>;
120
127
  }
@@ -27,7 +27,7 @@ import * as i0 from "@angular/core";
27
27
  *
28
28
  * To learn more about this and related dashboard components,
29
29
  * see [Embedded Dashboards](/guides/sdk/guides/dashboards/index.html).
30
- * @group Fusion Embed
30
+ * @group Fusion Assets
31
31
  * @fusionEmbed
32
32
  * @beta
33
33
  */
@@ -34,7 +34,7 @@ import * as i0 from "@angular/core";
34
34
  * dashboardOid: string = '60f3e3e3e4b0e3e3e4b0e3e3';
35
35
  * }
36
36
  * ```
37
- * @group Fusion Embed
37
+ * @group Fusion Assets
38
38
  * @fusionEmbed
39
39
  */
40
40
  export declare class DashboardWidgetComponent implements AfterViewInit, OnChanges, OnDestroy {
@@ -47,7 +47,7 @@ export type CustomDrilldownResult = CustomDrilldownResultBase & {
47
47
  * drilldownResult?: CustomDrilldownResult;
48
48
  *
49
49
  * drilldown = {
50
- * drilldownDimensions: [DM.Patients.Gender, DM.Admissions.Surgical_Procedure],
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
- * [drilldownDimensions]="drilldown.drilldownDimensions"
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: NonNullable<DrilldownWidgetProps['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
  }
@@ -1,4 +1,5 @@
1
1
  export * from './table-widget.component';
2
2
  export * from './dashboard-widget.component';
3
+ export * from './widget-by-id.component';
3
4
  export * from './drilldown-widget.component';
4
5
  export * from './chart-widget.component';
@@ -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
- export { boxWhiskerProcessResult, widgetModelTranslator, dashboardModelTranslator, } 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';
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, 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/filters/member-filter-tile.component";
21
- import * as i20 from "./components/widgets/drilldown-widget.component";
22
- import * as i21 from "./components/filters/date-range-filter-tile.component";
23
- import * as i22 from "./components/filters/criteria-filter-tile.component";
24
- import * as i23 from "./components/drilldown-breadcrumbs.component";
25
- import * as i24 from "./components/context-menu.component";
26
- import * as i25 from "./components/charts/boxplot-chart.component";
27
- import * as i26 from "./components/charts/scattermap-chart.component";
28
- import * as i27 from "./components/charts/areamap-chart.component";
29
- import * as i28 from "./components/charts/pivot-table.component";
30
- import * as i29 from "./components/dashboard/dashboard-by-id.component";
31
- import * as i30 from "./components/dashboard/dashboard.component";
32
- import * as i31 from "@angular/common";
33
- import * as i32 from "./decorators/decorators.module";
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.MemberFilterTileComponent, typeof i20.DrilldownWidgetComponent, typeof i21.DateRangeFilterTileComponent, typeof i22.CriteriaFilterTileComponent, typeof i23.DrilldownBreadcrumbsComponent, typeof i24.ContextMenuComponent, typeof i25.BoxplotChartComponent, typeof i26.ScattermapChartComponent, typeof i27.AreamapChartComponent, typeof i28.PivotTableComponent, typeof i29.DashboardByIdComponent, typeof i30.DashboardComponent], [typeof i31.CommonModule, typeof i32.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.MemberFilterTileComponent, typeof i20.DrilldownWidgetComponent, typeof i21.DateRangeFilterTileComponent, typeof i22.CriteriaFilterTileComponent, typeof i23.DrilldownBreadcrumbsComponent, typeof i24.ContextMenuComponent, typeof i25.BoxplotChartComponent, typeof i26.ScattermapChartComponent, typeof i27.AreamapChartComponent, typeof i28.PivotTableComponent, typeof i29.DashboardByIdComponent, typeof i30.DashboardComponent]>;
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
  }