@sisense/sdk-ui-vue 2.14.0 → 2.16.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.
@@ -16,4 +16,5 @@ export { Chart, type ChartProps } from './chart';
16
16
  export { BoxplotChart, type BoxplotChartProps } from './boxplot-chart';
17
17
  export { AreamapChart, type AreamapChartProps } from './areamap-chart';
18
18
  export { ScattermapChart, type ScattermapChartProps } from './scattermap-chart';
19
+ export { StreamgraphChart, type StreamgraphChartProps } from './streamgraph-chart';
19
20
  export { AreaRangeChart, type AreaRangeChartProps } from './area-range-chart';
@@ -16,7 +16,7 @@ export { PivotTableProps };
16
16
  * import { ref } from 'vue';
17
17
  * import { measureFactory, filterFactory } from '@sisense/sdk-data';
18
18
  * import * as DM from '../assets/sample-retail-model';
19
- * import { PivotTable, type PivotTableProps } from '@sisense/sdk-ui-vue/Table';
19
+ * import { PivotTable, type PivotTableProps } from '@sisense/sdk-ui-vue';
20
20
  *
21
21
  * const dimProductName = DM.DimProducts.ProductName;
22
22
  * const measureTotalRevenue = measureFactory.sum(DM.Fact_Sale_orders.OrderRevenue, 'Total Revenue');
@@ -0,0 +1,182 @@
1
+ import type { StreamgraphChartProps as StreamgraphChartPropsPreact } from '@sisense/sdk-ui-preact';
2
+ import type { PropType } from 'vue';
3
+ /**
4
+ * Props of the {@link @sisense/sdk-ui-vue!StreamgraphChart | `StreamgraphChart`} component.
5
+ */
6
+ export interface StreamgraphChartProps extends StreamgraphChartPropsPreact {
7
+ }
8
+ /**
9
+ * A Vue component that displays a streamgraph chart.
10
+ *
11
+ * A streamgraph is a type of stacked area chart where areas are displaced around
12
+ * a central axis. It is particularly effective for displaying volume across
13
+ * different categories or over time with a relative scale that emphasizes
14
+ * overall patterns and trends.
15
+ *
16
+ * @example
17
+ * Here's how you can use the StreamgraphChart component in a Vue application:
18
+ * ```vue
19
+ * <template>
20
+ * <StreamgraphChart
21
+ * :dataOptions="streamgraphChartProps.dataOptions"
22
+ * :dataSet="streamgraphChartProps.dataSet"
23
+ * :filters="streamgraphChartProps.filters"
24
+ * :styleOptions="streamgraphChartProps.styleOptions"
25
+ * />
26
+ * </template>
27
+ *
28
+ * <script setup lang="ts">
29
+ * import { ref } from 'vue';
30
+ * import { measureFactory, filterFactory } from '@sisense/sdk-data';
31
+ * import * as DM from '../assets/sample-ecommerce';
32
+ * import { StreamgraphChart, type StreamgraphChartProps } from '@sisense/sdk-ui-vue';
33
+ *
34
+ * const streamgraphChartProps = ref<StreamgraphChartProps>({
35
+ * dataSet: DM.DataSource,
36
+ * dataOptions: {
37
+ * category: [DM.Commerce.Date.Quarters],
38
+ * value: [measureFactory.sum(DM.Commerce.Revenue, 'Revenue')],
39
+ * breakBy: [DM.Category.Category],
40
+ * },
41
+ * filters: [filterFactory.members(DM.Category.Category, ['Electronics', 'Clothing'])],
42
+ * styleOptions: {
43
+ * width: 1200,
44
+ * height: 500,
45
+ * },
46
+ * });
47
+ * ```
48
+ * @param {StreamgraphChartProps} - Streamgraph chart properties
49
+ * @returns Streamgraph Chart component
50
+ * @group Charts
51
+ */
52
+ export declare const StreamgraphChart: import("vue").DefineComponent<{
53
+ /**
54
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.dataOptions}
55
+ *
56
+ * @category Chart
57
+ */
58
+ dataOptions: {
59
+ type: PropType<import("@sisense/sdk-ui-preact").CartesianChartDataOptions>;
60
+ required: true;
61
+ };
62
+ /**
63
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.dataSet}
64
+ *
65
+ * @category Data
66
+ */
67
+ dataSet: PropType<import("@sisense/sdk-data").DataSource | import("@sisense/sdk-data").Data | undefined>;
68
+ /**
69
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.filters}
70
+ *
71
+ * @category Data
72
+ */
73
+ filters: PropType<import("@sisense/sdk-data").FilterRelations | import("@sisense/sdk-data").Filter[] | undefined>;
74
+ /**
75
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.highlights}
76
+ *
77
+ * @category Data
78
+ */
79
+ highlights: PropType<import("@sisense/sdk-data").Filter[] | undefined>;
80
+ /**
81
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.styleOptions}
82
+ *
83
+ * @category Chart
84
+ */
85
+ styleOptions: PropType<import("@sisense/sdk-ui-preact").StreamgraphStyleOptions | undefined>;
86
+ /**
87
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onBeforeRender}
88
+ *
89
+ * @category Callbacks
90
+ */
91
+ onBeforeRender: PropType<import("@sisense/sdk-ui-preact").BeforeRenderHandler | undefined>;
92
+ /**
93
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onDataReady}
94
+ *
95
+ * @category Callbacks
96
+ */
97
+ onDataReady: PropType<((data: import("@sisense/sdk-data").Data) => import("@sisense/sdk-data").Data) | undefined>;
98
+ /**
99
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onDataPointClick}
100
+ *
101
+ * @category Callbacks
102
+ */
103
+ onDataPointClick: PropType<import("@sisense/sdk-ui-preact").DataPointEventHandler | undefined>;
104
+ /**
105
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onDataPointContextMenu}
106
+ *
107
+ * @category Callbacks
108
+ */
109
+ onDataPointContextMenu: PropType<import("@sisense/sdk-ui-preact").DataPointEventHandler | undefined>;
110
+ /**
111
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onDataPointsSelected}
112
+ *
113
+ * @category Callbacks
114
+ */
115
+ onDataPointsSelected: PropType<import("@sisense/sdk-ui-preact").DataPointsEventHandler | undefined>;
116
+ }, (() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
117
+ [key: string]: any;
118
+ }>) | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
119
+ /**
120
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.dataOptions}
121
+ *
122
+ * @category Chart
123
+ */
124
+ dataOptions: {
125
+ type: PropType<import("@sisense/sdk-ui-preact").CartesianChartDataOptions>;
126
+ required: true;
127
+ };
128
+ /**
129
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.dataSet}
130
+ *
131
+ * @category Data
132
+ */
133
+ dataSet: PropType<import("@sisense/sdk-data").DataSource | import("@sisense/sdk-data").Data | undefined>;
134
+ /**
135
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.filters}
136
+ *
137
+ * @category Data
138
+ */
139
+ filters: PropType<import("@sisense/sdk-data").FilterRelations | import("@sisense/sdk-data").Filter[] | undefined>;
140
+ /**
141
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.highlights}
142
+ *
143
+ * @category Data
144
+ */
145
+ highlights: PropType<import("@sisense/sdk-data").Filter[] | undefined>;
146
+ /**
147
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.styleOptions}
148
+ *
149
+ * @category Chart
150
+ */
151
+ styleOptions: PropType<import("@sisense/sdk-ui-preact").StreamgraphStyleOptions | undefined>;
152
+ /**
153
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onBeforeRender}
154
+ *
155
+ * @category Callbacks
156
+ */
157
+ onBeforeRender: PropType<import("@sisense/sdk-ui-preact").BeforeRenderHandler | undefined>;
158
+ /**
159
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onDataReady}
160
+ *
161
+ * @category Callbacks
162
+ */
163
+ onDataReady: PropType<((data: import("@sisense/sdk-data").Data) => import("@sisense/sdk-data").Data) | undefined>;
164
+ /**
165
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onDataPointClick}
166
+ *
167
+ * @category Callbacks
168
+ */
169
+ onDataPointClick: PropType<import("@sisense/sdk-ui-preact").DataPointEventHandler | undefined>;
170
+ /**
171
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onDataPointContextMenu}
172
+ *
173
+ * @category Callbacks
174
+ */
175
+ onDataPointContextMenu: PropType<import("@sisense/sdk-ui-preact").DataPointEventHandler | undefined>;
176
+ /**
177
+ * {@inheritDoc @sisense/sdk-ui!StreamgraphChartProps.onDataPointsSelected}
178
+ *
179
+ * @category Callbacks
180
+ */
181
+ onDataPointsSelected: PropType<import("@sisense/sdk-ui-preact").DataPointsEventHandler | undefined>;
182
+ }>>, {}, {}>;
@@ -1,4 +1,5 @@
1
1
  export { ChartWidget, type ChartWidgetProps } from './chart-widget';
2
2
  export { WidgetById, type WidgetByIdProps } from './widget-by-id';
3
3
  export { TableWidget, type TableWidgetProps } from './table-widget';
4
+ export { PivotTableWidget } from './pivot-table-widget';
4
5
  export { Widget, type WidgetProps, type WithCommonWidgetProps, type TextWidgetProps, type CustomWidgetProps, type PivotTableWidgetProps, } from './widget';
@@ -0,0 +1,208 @@
1
+ /// <reference types="react" />
2
+ import { type PivotTableWidgetProps } from '@sisense/sdk-ui-preact';
3
+ import type { PropType } from 'vue';
4
+ export { PivotTableWidgetProps };
5
+ /**
6
+ * The PivotTableWidget component extending the {@link PivotTable} component to support widget style options.
7
+ *
8
+ * @example
9
+ * Here's how you can use the PivotTableWidget component in a Vue application:
10
+ * ```vue
11
+ * <template>
12
+ * <PivotTableWidget :props="pivotTableWidgetProps" />
13
+ * </template>
14
+ *
15
+ * <script setup lang="ts">
16
+ * import { ref } from 'vue';
17
+ * import { PivotTableWidget } from '@sisense/sdk-ui-vue';
18
+ *
19
+ * const pivotTableWidgetProps = ref({
20
+ * // Configure your PivotTableWidget here
21
+ * });
22
+ * </script>
23
+ * ```
24
+ * <img src="media://vue-pivot-table-widget-example.png" width="600px" />
25
+ * @param props - Pivot Table Widget properties
26
+ * @returns Widget component representing a pivot table
27
+ * @group Dashboards
28
+ * @beta
29
+ */
30
+ export declare const PivotTableWidget: import("vue").DefineComponent<{
31
+ /**
32
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.dataOptions}
33
+ *
34
+ * @category Chart
35
+ */
36
+ dataOptions: {
37
+ type: PropType<import("@sisense/sdk-ui-preact").PivotTableDataOptions>;
38
+ required: true;
39
+ };
40
+ /**
41
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.dataSource}
42
+ *
43
+ * @category Data
44
+ */
45
+ dataSource: PropType<import("@sisense/sdk-data").DataSource | undefined>;
46
+ /**
47
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.description}
48
+ *
49
+ * @category Widget
50
+ */
51
+ description: PropType<string | undefined>;
52
+ /**
53
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.filters}
54
+ *
55
+ * @category Data
56
+ */
57
+ filters: PropType<import("@sisense/sdk-data").FilterRelations | import("@sisense/sdk-data").Filter[] | undefined>;
58
+ /**
59
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.styleOptions}
60
+ *
61
+ * @category Widget
62
+ */
63
+ styleOptions: PropType<import("@sisense/sdk-ui-preact").PivotTableWidgetStyleOptions | undefined>;
64
+ /**
65
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.title}
66
+ *
67
+ * @category Widget
68
+ */
69
+ title: PropType<string | undefined>;
70
+ /**
71
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.topSlot}
72
+ *
73
+ * @category Widget
74
+ * @internal
75
+ */
76
+ topSlot: PropType<import("react").ReactNode>;
77
+ /**
78
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.bottomSlot}
79
+ *
80
+ * @category Widget
81
+ * @internal
82
+ */
83
+ bottomSlot: PropType<import("react").ReactNode>;
84
+ /**
85
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.highlights}
86
+ *
87
+ * @category Data
88
+ */
89
+ highlights: PropType<import("@sisense/sdk-data").Filter[] | undefined>;
90
+ /**
91
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.onDataPointClick}
92
+ *
93
+ * @category Callbacks
94
+ * @internal
95
+ */
96
+ onDataPointClick: PropType<import("@sisense/sdk-ui-preact").PivotTableDataPointEventHandler | undefined>;
97
+ /**
98
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.onDataPointContextMenu}
99
+ *
100
+ * @category Callbacks
101
+ * @internal
102
+ */
103
+ onDataPointContextMenu: PropType<import("@sisense/sdk-ui-preact").PivotTableDataPointEventHandler | undefined>;
104
+ /**
105
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.onDataCellFormat}
106
+ *
107
+ * @category Callbacks
108
+ * @internal
109
+ */
110
+ onDataCellFormat: PropType<import("@sisense/sdk-ui/dist/packages/sdk-ui/src/pivot-table/formatters/types").CustomDataCellFormatter | undefined>;
111
+ /**
112
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.onHeaderCellFormat}
113
+ *
114
+ * @category Callbacks
115
+ * @internal
116
+ */
117
+ onHeaderCellFormat: PropType<import("@sisense/sdk-ui/dist/packages/sdk-ui/src/pivot-table/formatters/types").CustomHeaderCellFormatter | undefined>;
118
+ }, (() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
119
+ [key: string]: any;
120
+ }>) | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
121
+ /**
122
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.dataOptions}
123
+ *
124
+ * @category Chart
125
+ */
126
+ dataOptions: {
127
+ type: PropType<import("@sisense/sdk-ui-preact").PivotTableDataOptions>;
128
+ required: true;
129
+ };
130
+ /**
131
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.dataSource}
132
+ *
133
+ * @category Data
134
+ */
135
+ dataSource: PropType<import("@sisense/sdk-data").DataSource | undefined>;
136
+ /**
137
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.description}
138
+ *
139
+ * @category Widget
140
+ */
141
+ description: PropType<string | undefined>;
142
+ /**
143
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.filters}
144
+ *
145
+ * @category Data
146
+ */
147
+ filters: PropType<import("@sisense/sdk-data").FilterRelations | import("@sisense/sdk-data").Filter[] | undefined>;
148
+ /**
149
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.styleOptions}
150
+ *
151
+ * @category Widget
152
+ */
153
+ styleOptions: PropType<import("@sisense/sdk-ui-preact").PivotTableWidgetStyleOptions | undefined>;
154
+ /**
155
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.title}
156
+ *
157
+ * @category Widget
158
+ */
159
+ title: PropType<string | undefined>;
160
+ /**
161
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.topSlot}
162
+ *
163
+ * @category Widget
164
+ * @internal
165
+ */
166
+ topSlot: PropType<import("react").ReactNode>;
167
+ /**
168
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.bottomSlot}
169
+ *
170
+ * @category Widget
171
+ * @internal
172
+ */
173
+ bottomSlot: PropType<import("react").ReactNode>;
174
+ /**
175
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.highlights}
176
+ *
177
+ * @category Data
178
+ */
179
+ highlights: PropType<import("@sisense/sdk-data").Filter[] | undefined>;
180
+ /**
181
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.onDataPointClick}
182
+ *
183
+ * @category Callbacks
184
+ * @internal
185
+ */
186
+ onDataPointClick: PropType<import("@sisense/sdk-ui-preact").PivotTableDataPointEventHandler | undefined>;
187
+ /**
188
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.onDataPointContextMenu}
189
+ *
190
+ * @category Callbacks
191
+ * @internal
192
+ */
193
+ onDataPointContextMenu: PropType<import("@sisense/sdk-ui-preact").PivotTableDataPointEventHandler | undefined>;
194
+ /**
195
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.onDataCellFormat}
196
+ *
197
+ * @category Callbacks
198
+ * @internal
199
+ */
200
+ onDataCellFormat: PropType<import("@sisense/sdk-ui/dist/packages/sdk-ui/src/pivot-table/formatters/types").CustomDataCellFormatter | undefined>;
201
+ /**
202
+ * {@inheritDoc @sisense/sdk-ui!PivotTableWidgetProps.onHeaderCellFormat}
203
+ *
204
+ * @category Callbacks
205
+ * @internal
206
+ */
207
+ onHeaderCellFormat: PropType<import("@sisense/sdk-ui/dist/packages/sdk-ui/src/pivot-table/formatters/types").CustomHeaderCellFormatter | undefined>;
208
+ }>>, {}, {}>;
@@ -1,6 +1,7 @@
1
1
  export { useExecuteQuery } from './use-execute-query.js';
2
2
  export { useExecuteQueryByWidgetId } from './use-execute-query-by-widget-id.js';
3
3
  export { useExecuteCsvQuery } from './use-execute-csv-query.js';
4
+ export { useExecutePivotQuery } from './use-execute-pivot-query.js';
4
5
  export { useExecuteCustomWidgetQuery, type ExecuteCustomWidgetQueryParams, type CustomWidgetQueryState, } from './use-execute-custom-widget-query.js';
5
6
  export { useGetFilterMembers } from './use-get-filter-members.js';
6
7
  export { useGetDashboardModel } from './use-get-dashboard-model.js';
@@ -0,0 +1,43 @@
1
+ import { type ExecutePivotQueryParams, type PivotQueryState } from '@sisense/sdk-ui-preact';
2
+ import type { MaybeRefOrWithRefs } from '../types';
3
+ /**
4
+ * A Vue composable function `useExecutePivotQuery` that executes a pivot data query.
5
+
6
+ * @param {MaybeRefOrWithRefs<ExecutePivotQueryParams>} params - The parameters for the query, supporting reactive Vue refs.
7
+ * Includes details such as `dataSource`, `dimensions`, `rows`, `columns`, `values`, `filters` and more, allowing for comprehensive
8
+ * query configuration. The `filters` parameter supports dynamic filtering based on user interaction or other application
9
+ * state changes.
10
+ *
11
+ * @example
12
+ * How to use `useExecutePivotQuery` within a Vue component:
13
+ * ```vue
14
+ * <script setup>
15
+ * import { ref } from 'vue';
16
+ * import { useExecutePivotQuery } from '@sisense/sdk-ui-vue';
17
+ *
18
+ * const dataSource = ref('your_data_source_id');
19
+ * // Set up other query parameters as needed (dimensions, rows, columns, values, filters, etc.)
20
+ *
21
+ * const { data, isLoading, isError, isSuccess, error } = useExecutePivotQuery({
22
+ * dataSource,
23
+ * columns: [...],
24
+ * rows: [...],
25
+ * values: [...],
26
+ * filters: [...],
27
+ * // Additional query parameters
28
+ * });
29
+ * </script>
30
+ * ```
31
+ *
32
+ * The composable returns an object with the following reactive properties to manage the query state:
33
+ * - `data`: The Pivot query result data set returned from the query. It remains `undefined` until the query completes successfully.
34
+ * - `isLoading`: Indicates if the query is in progress.
35
+ * - `isError`: Indicates if an error occurred during query execution.
36
+ * - `isSuccess`: Indicates if the query executed successfully without errors.
37
+ * - `error`: Contains the error object if an error occurred during the query.
38
+ *
39
+ * This composable facilitates integrating Sisense data fetching into Vue applications, enabling developers
40
+ * to easily manage query states and dynamically adjust query parameters based on application needs.
41
+ * @group Queries
42
+ */
43
+ export declare const useExecutePivotQuery: (params: MaybeRefOrWithRefs<ExecutePivotQueryParams>) => import("vue").ToRefs<PivotQueryState>;
@@ -1,2 +1,2 @@
1
1
  export { boxWhiskerProcessResult, extractDimensionsAndMeasures } from '@sisense/sdk-ui-preact';
2
- export type { ChartType, CartesianChartType, CategoricalChartType, ScatterChartType, IndicatorChartType, BoxplotChartType, CalendarHeatmapChartType, ScattermapChartType, AreamapChartType, TableType, AreaSubtype, LineSubtype, PieSubtype, PolarSubtype, StackableSubtype, BoxplotSubtype, CalendarHeatmapSubtype, WidgetType, CartesianWidgetType, CategoricalWidgetType, TabularWidgetType, ExecuteQueryByWidgetIdParams, ExecuteQueryParams, GetWidgetModelParams, GetSharedFormulaParams, GetDashboardModelParams, UseGetSharedFormulaParams, GetDashboardModelsParams, GetHierarchyModelsParams, ChartDataOptions, CartesianChartDataOptions, CategoricalChartDataOptions, ScatterChartDataOptions, IndicatorChartDataOptions, BoxplotChartDataOptions, BoxplotChartCustomDataOptions, CalendarHeatmapChartDataOptions, ScattermapChartDataOptions, AreamapChartDataOptions, TableDataOptions, PivotTableDataOptions, WidgetDataOptions, 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, CalendarHeatmapStyleOptions, ScattermapStyleOptions, AreamapStyleOptions, ChartWidgetStyleOptions, WidgetStyleOptions, WidgetByIdStyleOptions, TableStyleOptions, PivotTableStyleOptions, AreaRangeStyleOptions, DataLimits, Legend, Markers, Labels, IndicatorComponents, ScatterMarkerSize, LineWidth, LineOptions, DashStyle, EndCapType, AxisLabel, Convolution, SeriesLabels, X2Title, ScattermapMarkers, CalendarHeatmapViewType, WidgetModel, DashboardModel, BeforeRenderHandler, DataPoint, ScatterDataPoint, HighchartsOptions, BoxplotDataPoint, CalendarHeatmapDataPoint, CalendarDayOfWeek, IndicatorBeforeRenderHandler, IndicatorRenderOptions, DashboardLayoutOptions, WidgetsPanelLayout, WidgetsPanelColumnLayout, WidgetId, WidgetsOptions, AppConfig, DateConfig, MenuItemSection, MonthOfYear, DayOfWeek, DateLevel, ThemeOid, GetDashboardModelOptions, GetDashboardModelsOptions, SeriesChartType, MenuPosition, ThemeSettings, Color, ColorPaletteTheme, Navigator, DrilldownOptions, DrilldownSelection, Member, FilterVariant, TranslationConfig, } from '@sisense/sdk-ui-preact';
2
+ export type { ChartType, CartesianChartType, CategoricalChartType, ScatterChartType, IndicatorChartType, BoxplotChartType, CalendarHeatmapChartType, ScattermapChartType, AreamapChartType, TableType, AreaSubtype, LineSubtype, PieSubtype, PolarSubtype, StackableSubtype, BoxplotSubtype, CalendarHeatmapSubtype, WidgetType, CartesianWidgetType, CategoricalWidgetType, TabularWidgetType, ExecuteQueryByWidgetIdParams, ExecuteQueryParams, GetWidgetModelParams, GetSharedFormulaParams, GetDashboardModelParams, UseGetSharedFormulaParams, GetDashboardModelsParams, GetHierarchyModelsParams, ChartDataOptions, CartesianChartDataOptions, CategoricalChartDataOptions, ScatterChartDataOptions, IndicatorChartDataOptions, BoxplotChartDataOptions, BoxplotChartCustomDataOptions, CalendarHeatmapChartDataOptions, ScattermapChartDataOptions, AreamapChartDataOptions, TableDataOptions, PivotTableDataOptions, WidgetDataOptions, 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, StreamgraphStyleOptions, SunburstStyleOptions, BoxplotStyleOptions, CalendarHeatmapStyleOptions, ScattermapStyleOptions, AreamapStyleOptions, ChartWidgetStyleOptions, WidgetStyleOptions, WidgetByIdStyleOptions, TableStyleOptions, PivotTableStyleOptions, AreaRangeStyleOptions, DataLimits, Legend, Markers, Labels, IndicatorComponents, ScatterMarkerSize, LineWidth, LineOptions, DashStyle, EndCapType, AxisLabel, Convolution, SeriesLabels, X2Title, ScattermapMarkers, CalendarHeatmapViewType, WidgetModel, DashboardModel, BeforeRenderHandler, DataPoint, ScatterDataPoint, HighchartsOptions, BoxplotDataPoint, CalendarHeatmapDataPoint, CalendarDayOfWeek, IndicatorBeforeRenderHandler, IndicatorRenderOptions, DashboardLayoutOptions, WidgetsPanelLayout, WidgetsPanelColumnLayout, WidgetId, WidgetsOptions, AppConfig, DateConfig, MenuItemSection, MonthOfYear, DayOfWeek, DateLevel, ThemeOid, GetDashboardModelOptions, GetDashboardModelsOptions, SeriesChartType, MenuPosition, ThemeSettings, Color, ColorPaletteTheme, Navigator, DrilldownOptions, DrilldownSelection, Member, FilterVariant, TranslationConfig, } from '@sisense/sdk-ui-preact';