@sisense/sdk-ui-vue 2.13.0 → 2.15.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/ai.cjs +31 -31
- package/dist/ai.js +462 -461
- package/dist/index.cjs +1 -1
- package/dist/index.js +680 -568
- package/dist/packages/sdk-ui-vue/src/components/charts/pivot-table.d.ts +1 -1
- package/dist/packages/sdk-ui-vue/src/components/widgets/index.d.ts +1 -0
- package/dist/packages/sdk-ui-vue/src/components/widgets/pivot-table-widget.d.ts +208 -0
- package/dist/packages/sdk-ui-vue/src/composables/index.d.ts +1 -0
- package/dist/packages/sdk-ui-vue/src/composables/use-execute-pivot-query.d.ts +43 -0
- package/dist/packages/sdk-ui-vue/src/sdk-ui-core-exports.d.ts +1 -1
- package/dist/{use-tracking-4caf6db2.cjs → use-tracking-1234d40c.cjs} +360 -335
- package/dist/{use-tracking-dd4d60d8.js → use-tracking-efb607bb.js} +43618 -42937
- package/package.json +2 -2
|
@@ -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
|
|
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');
|
|
@@ -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, 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, 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';
|