@sisense/sdk-ui-vue 1.15.1 → 1.17.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 (37) hide show
  1. package/dist/index.cjs +488 -486
  2. package/dist/index.js +86954 -85289
  3. package/dist/src/components/charts/area-chart.d.ts +92 -2
  4. package/dist/src/components/charts/area-range-chart.d.ts +90 -0
  5. package/dist/src/components/charts/areamap-chart.d.ts +60 -0
  6. package/dist/src/components/charts/bar-chart.d.ts +86 -4
  7. package/dist/src/components/charts/boxplot-chart.d.ts +90 -0
  8. package/dist/src/components/charts/chart.d.ts +106 -0
  9. package/dist/src/components/charts/column-chart.d.ts +90 -0
  10. package/dist/src/components/charts/funnel-chart.d.ts +90 -0
  11. package/dist/src/components/charts/indicator-chart.d.ts +50 -0
  12. package/dist/src/components/charts/line-chart.d.ts +90 -0
  13. package/dist/src/components/charts/pie-chart.d.ts +90 -0
  14. package/dist/src/components/charts/pivot-table.d.ts +52 -0
  15. package/dist/src/components/charts/polar-chart.d.ts +90 -0
  16. package/dist/src/components/charts/scatter-chart.d.ts +90 -0
  17. package/dist/src/components/charts/scattermap-chart.d.ts +60 -0
  18. package/dist/src/components/charts/sunburst-chart.d.ts +90 -0
  19. package/dist/src/components/charts/table.d.ts +42 -0
  20. package/dist/src/components/charts/treemap-chart.d.ts +90 -0
  21. package/dist/src/components/context-menu.d.ts +18 -0
  22. package/dist/src/components/dashboard/dashboard-by-id.d.ts +10 -2
  23. package/dist/src/components/dashboard/dashboard.d.ts +47 -2
  24. package/dist/src/components/drilldown-breadcrumbs.d.ts +40 -4
  25. package/dist/src/components/drilldown-widget.d.ts +32 -0
  26. package/dist/src/components/filters/criteria-filter-tile.d.ts +30 -0
  27. package/dist/src/components/filters/date-range-filter-tile.d.ts +56 -2
  28. package/dist/src/components/filters/member-filter-tile.d.ts +36 -0
  29. package/dist/src/components/widgets/chart-widget.d.ts +200 -0
  30. package/dist/src/components/widgets/dashboard-widget.d.ts +154 -4
  31. package/dist/src/composables/use-execute-query-by-widget-id.d.ts +4 -1
  32. package/dist/src/composables/use-get-dashboard-model.d.ts +2 -0
  33. package/dist/src/composables/use-get-dashboard-models.d.ts +2 -0
  34. package/dist/src/composables/use-get-widget-model.d.ts +2 -0
  35. package/dist/src/providers/sisense-context-provider.d.ts +64 -6
  36. package/dist/src/providers/theme-provider.d.ts +81 -0
  37. package/package.json +2 -2
@@ -4,6 +4,8 @@ import type { PropType } from 'vue';
4
4
  * The Dashboard Widget component, which is a thin wrapper on the {@link ChartWidget} component,
5
5
  * used to render a widget created in the Sisense instance.
6
6
  *
7
+ * **Note:** Widget extensions based on JS scripts and add-ons in Fusion are not supported.
8
+ *
7
9
  * @example
8
10
  * Here's how you can use the DashboardWidget component in a Vue application:
9
11
  * ```vue
@@ -24,51 +26,199 @@ import type { PropType } from 'vue';
24
26
  * @fusionEmbed
25
27
  */
26
28
  export declare const DashboardWidget: import("vue").DefineComponent<{
29
+ /** @internal */
27
30
  bottomSlot: PropType<import("react").ReactNode>;
31
+ /** @internal */
28
32
  contextMenuItems: PropType<import("@sisense/sdk-ui-preact").MenuItemSection[] | undefined>;
33
+ /**
34
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.dashboardOid}
35
+ *
36
+ * @category Widget
37
+ */
29
38
  dashboardOid: PropType<string>;
39
+ /**
40
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.description}
41
+ *
42
+ * @category Widget
43
+ */
30
44
  description: PropType<string | undefined>;
45
+ /** @internal */
31
46
  drilldownOptions: PropType<import("@sisense/sdk-ui-preact").DrilldownOptions | undefined>;
47
+ /**
48
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.filters}
49
+ *
50
+ * @category Data
51
+ */
32
52
  filters: PropType<import("@sisense/sdk-data").Filter[] | undefined>;
33
- /** {@inheritDoc ExecuteQueryByWidgetIdParams.filtersMergeStrategy} */
53
+ /**
54
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.filtersMergeStrategy}
55
+ *
56
+ * @category Data
57
+ */
34
58
  filtersMergeStrategy: PropType<"widgetFirst" | "codeFirst" | "codeOnly" | undefined>;
59
+ /**
60
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.highlightSelectionDisabled}
61
+ *
62
+ * @category Widget
63
+ */
35
64
  highlightSelectionDisabled: PropType<boolean | undefined>;
65
+ /**
66
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.highlights}
67
+ *
68
+ * @category Data
69
+ */
36
70
  highlights: PropType<import("@sisense/sdk-data").Filter[] | undefined>;
37
- /** {@inheritDoc ExecuteQueryByWidgetIdParams.includeDashboardFilters} */
71
+ /**
72
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.includeDashboardFilters}
73
+ *
74
+ * @category Data
75
+ */
38
76
  includeDashboardFilters: PropType<boolean | undefined>;
77
+ /**
78
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.onBeforeRender}
79
+ *
80
+ * @category Callbacks
81
+ */
39
82
  onBeforeRender: PropType<import("@sisense/sdk-ui-preact").BeforeRenderHandler | undefined>;
83
+ /** @internal */
40
84
  onContextMenuClose: PropType<(() => void) | undefined>;
85
+ /**
86
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.onDataPointClick}
87
+ *
88
+ * @category Callbacks
89
+ */
41
90
  onDataPointClick: PropType<import("@sisense/sdk-ui-preact").DataPointEventHandler | import("@sisense/sdk-ui-preact").AreamapDataPointEventHandler | import("@sisense/sdk-ui-preact").BoxplotDataPointEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointEventHandler | import("@sisense/sdk-ui-preact").ScattermapDataPointEventHandler | undefined>;
91
+ /**
92
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.onDataPointContextMenu}
93
+ *
94
+ * @category Callbacks
95
+ */
42
96
  onDataPointContextMenu: PropType<import("@sisense/sdk-ui-preact").DataPointEventHandler | import("@sisense/sdk-ui-preact").BoxplotDataPointEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointEventHandler | undefined>;
97
+ /**
98
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.onDataPointsSelected}
99
+ *
100
+ * @category Callbacks
101
+ */
43
102
  onDataPointsSelected: PropType<import("@sisense/sdk-ui-preact").DataPointsEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointsEventHandler | undefined>;
103
+ /**
104
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.styleOptions}
105
+ *
106
+ * @category Widget
107
+ */
44
108
  styleOptions: PropType<import("@sisense/sdk-ui-preact").DashboardWidgetStyleOptions | undefined>;
109
+ /**
110
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.title}
111
+ *
112
+ * @category Widget
113
+ */
45
114
  title: PropType<string | undefined>;
115
+ /** @internal */
46
116
  topSlot: PropType<import("react").ReactNode>;
117
+ /**
118
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.widgetOid}
119
+ *
120
+ * @category Widget
121
+ */
47
122
  widgetOid: PropType<string>;
123
+ /** @internal */
48
124
  widgetStyleOptions: PropType<import("@sisense/sdk-ui-preact").DashboardWidgetStyleOptions | undefined>;
49
125
  }, (() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
50
126
  [key: string]: any;
51
127
  }>) | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
128
+ /** @internal */
52
129
  bottomSlot: PropType<import("react").ReactNode>;
130
+ /** @internal */
53
131
  contextMenuItems: PropType<import("@sisense/sdk-ui-preact").MenuItemSection[] | undefined>;
132
+ /**
133
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.dashboardOid}
134
+ *
135
+ * @category Widget
136
+ */
54
137
  dashboardOid: PropType<string>;
138
+ /**
139
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.description}
140
+ *
141
+ * @category Widget
142
+ */
55
143
  description: PropType<string | undefined>;
144
+ /** @internal */
56
145
  drilldownOptions: PropType<import("@sisense/sdk-ui-preact").DrilldownOptions | undefined>;
146
+ /**
147
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.filters}
148
+ *
149
+ * @category Data
150
+ */
57
151
  filters: PropType<import("@sisense/sdk-data").Filter[] | undefined>;
58
- /** {@inheritDoc ExecuteQueryByWidgetIdParams.filtersMergeStrategy} */
152
+ /**
153
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.filtersMergeStrategy}
154
+ *
155
+ * @category Data
156
+ */
59
157
  filtersMergeStrategy: PropType<"widgetFirst" | "codeFirst" | "codeOnly" | undefined>;
158
+ /**
159
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.highlightSelectionDisabled}
160
+ *
161
+ * @category Widget
162
+ */
60
163
  highlightSelectionDisabled: PropType<boolean | undefined>;
164
+ /**
165
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.highlights}
166
+ *
167
+ * @category Data
168
+ */
61
169
  highlights: PropType<import("@sisense/sdk-data").Filter[] | undefined>;
62
- /** {@inheritDoc ExecuteQueryByWidgetIdParams.includeDashboardFilters} */
170
+ /**
171
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.includeDashboardFilters}
172
+ *
173
+ * @category Data
174
+ */
63
175
  includeDashboardFilters: PropType<boolean | undefined>;
176
+ /**
177
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.onBeforeRender}
178
+ *
179
+ * @category Callbacks
180
+ */
64
181
  onBeforeRender: PropType<import("@sisense/sdk-ui-preact").BeforeRenderHandler | undefined>;
182
+ /** @internal */
65
183
  onContextMenuClose: PropType<(() => void) | undefined>;
184
+ /**
185
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.onDataPointClick}
186
+ *
187
+ * @category Callbacks
188
+ */
66
189
  onDataPointClick: PropType<import("@sisense/sdk-ui-preact").DataPointEventHandler | import("@sisense/sdk-ui-preact").AreamapDataPointEventHandler | import("@sisense/sdk-ui-preact").BoxplotDataPointEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointEventHandler | import("@sisense/sdk-ui-preact").ScattermapDataPointEventHandler | undefined>;
190
+ /**
191
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.onDataPointContextMenu}
192
+ *
193
+ * @category Callbacks
194
+ */
67
195
  onDataPointContextMenu: PropType<import("@sisense/sdk-ui-preact").DataPointEventHandler | import("@sisense/sdk-ui-preact").BoxplotDataPointEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointEventHandler | undefined>;
196
+ /**
197
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.onDataPointsSelected}
198
+ *
199
+ * @category Callbacks
200
+ */
68
201
  onDataPointsSelected: PropType<import("@sisense/sdk-ui-preact").DataPointsEventHandler | import("@sisense/sdk-ui-preact").ScatterDataPointsEventHandler | undefined>;
202
+ /**
203
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.styleOptions}
204
+ *
205
+ * @category Widget
206
+ */
69
207
  styleOptions: PropType<import("@sisense/sdk-ui-preact").DashboardWidgetStyleOptions | undefined>;
208
+ /**
209
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.title}
210
+ *
211
+ * @category Widget
212
+ */
70
213
  title: PropType<string | undefined>;
214
+ /** @internal */
71
215
  topSlot: PropType<import("react").ReactNode>;
216
+ /**
217
+ * {@inheritDoc @sisense/sdk-ui!DashboardWidgetProps.widgetOid}
218
+ *
219
+ * @category Widget
220
+ */
72
221
  widgetOid: PropType<string>;
222
+ /** @internal */
73
223
  widgetStyleOptions: PropType<import("@sisense/sdk-ui-preact").DashboardWidgetStyleOptions | undefined>;
74
224
  }>>, {}, {}>;
@@ -7,6 +7,8 @@ import type { MaybeRefOrWithRefs } from '../types';
7
7
  * the query's loading, success, and error states. This composable integrates with the Sisense application context
8
8
  * to perform queries and handle their results within Vue components.
9
9
  *
10
+ * **Note:** Widget extensions based on JS scripts and add-ons in Fusion are not supported.
11
+ *
10
12
  * @param {ExecuteQueryByWidgetIdParams} params - Parameters for executing the query, including widget ID, filters,
11
13
  * and other relevant query options. The `filters` parameter allows for specifying dynamic filters for the query.
12
14
  *
@@ -34,7 +36,8 @@ import type { MaybeRefOrWithRefs } from '../types';
34
36
  * - `isError`: A boolean indicating if an error occurred during the query execution.
35
37
  * - `isSuccess`: A boolean indicating if the query executed successfully.
36
38
  * - `error`: An Error object containing the error details if an error occurred.
37
- * - `query`: The query object returned by the SDK, useful for debugging or advanced handling.
39
+ * - `query`: The query object returned for chart widget, useful for debugging or advanced handling.
40
+ * - `pivotQuery`: The pivot query object returned for pivot widget, useful for debugging or advanced handling.
38
41
  *
39
42
  * Utilizing this composable allows for declarative and reactive handling of widget-specific queries within Vue applications,
40
43
  * facilitating easier data fetching and state management with the Sisense SDK.
@@ -7,6 +7,8 @@ import type { GetDashboardModelParams } from '@sisense/sdk-ui-preact';
7
7
  * for Vue applications that need to integrate Sisense dashboard analytics, providing a reactive way to fetch
8
8
  * and display dashboard data.
9
9
  *
10
+ * **Note:** Dashboard extensions based on JS scripts and add-ons in Fusion are not supported.
11
+ *
10
12
  * @param {GetDashboardModelParams} params - The parameters for fetching the dashboard model, including the
11
13
  * dashboard OID and an option to include widgets within the dashboard. Supports dynamic parameter values through
12
14
  * Vue refs, allowing for reactive dashboard loading based on user interactions or other application states.
@@ -6,6 +6,8 @@ import type { MaybeRefOrWithRefs } from '../types';
6
6
  * dashboard models from Sisense. It provides a reactive interface to handle loading, success, and error states,
7
7
  * making it easier to integrate Sisense analytics within Vue applications.
8
8
  *
9
+ * **Note:** Dashboard extensions based on JS scripts and add-ons in Fusion are not supported.
10
+ *
9
11
  * @param {GetDashboardModelsParams} params - Parameters for fetching the dashboard models, which can include filters,
10
12
  * sorting options, and pagination settings to customize the fetch operation. The parameters allow for precise control
11
13
  * over which dashboards are retrieved and in what order.
@@ -6,6 +6,8 @@ import type { MaybeRefOrWithRefs } from '../types';
6
6
  * success, and error states of the fetch operation. This composable is particularly useful for Vue applications that
7
7
  * require detailed information about a Sisense widget for data visualization or analytics purposes.
8
8
  *
9
+ * **Note:** Widget extensions based on JS scripts and add-ons in Fusion are not supported.
10
+ *
9
11
  * @param {GetWidgetModelParams} params - The parameters for fetching the widget model, including the `dashboardOid`
10
12
  * (the OID of the dashboard containing the widget) and the `widgetOid` (the OID of the widget to fetch). This allows for
11
13
  * precise and dynamic fetching of widget models based on application needs.
@@ -31,8 +31,6 @@ export declare const createSisenseContextConnector: (context: CustomSisenseConte
31
31
  * :token="authToken"
32
32
  * :wat="watToken"
33
33
  * :appConfig="appConfigurations"
34
- * :showRuntimeErrors="true"
35
- * :enableTracking="false"
36
34
  * >
37
35
  * <!-- Your application components here -->
38
36
  * </SisenseContextProvider>
@@ -62,11 +60,41 @@ export declare const createSisenseContextConnector: (context: CustomSisenseConte
62
60
  * @group Contexts
63
61
  */
64
62
  export declare const SisenseContextProvider: import("vue").DefineComponent<{
63
+ /**
64
+ * {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.defaultDataSource}
65
+ *
66
+ * @category Sisense App
67
+ */
65
68
  defaultDataSource: PropType<import("@sisense/sdk-data").DataSource | undefined>;
69
+ /**
70
+ * {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.url}
71
+ *
72
+ * @category Sisense App
73
+ */
66
74
  url: PropType<string>;
75
+ /**
76
+ * {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.ssoEnabled}
77
+ *
78
+ * @category Sisense Authentication
79
+ */
67
80
  ssoEnabled: PropType<boolean | undefined>;
68
- token: PropType<string | undefined>;
69
- wat: PropType<string | undefined>;
81
+ /**
82
+ * {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.token}
83
+ *
84
+ * @category Sisense Authentication
85
+ */
86
+ token: PropType<string | null | undefined>;
87
+ /**
88
+ * {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.wat}
89
+ *
90
+ * @category Sisense Authentication
91
+ */
92
+ wat: PropType<string | null | undefined>;
93
+ /**
94
+ * {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.appConfig}
95
+ *
96
+ * @category Sisense App
97
+ */
70
98
  appConfig: PropType<import("@sisense/sdk-ui-preact").AppConfig | undefined>;
71
99
  /**
72
100
  * @internal
@@ -85,11 +113,41 @@ export declare const SisenseContextProvider: import("vue").DefineComponent<{
85
113
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
86
114
  [key: string]: any;
87
115
  }>[] | undefined, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
116
+ /**
117
+ * {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.defaultDataSource}
118
+ *
119
+ * @category Sisense App
120
+ */
88
121
  defaultDataSource: PropType<import("@sisense/sdk-data").DataSource | undefined>;
122
+ /**
123
+ * {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.url}
124
+ *
125
+ * @category Sisense App
126
+ */
89
127
  url: PropType<string>;
128
+ /**
129
+ * {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.ssoEnabled}
130
+ *
131
+ * @category Sisense Authentication
132
+ */
90
133
  ssoEnabled: PropType<boolean | undefined>;
91
- token: PropType<string | undefined>;
92
- wat: PropType<string | undefined>;
134
+ /**
135
+ * {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.token}
136
+ *
137
+ * @category Sisense Authentication
138
+ */
139
+ token: PropType<string | null | undefined>;
140
+ /**
141
+ * {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.wat}
142
+ *
143
+ * @category Sisense Authentication
144
+ */
145
+ wat: PropType<string | null | undefined>;
146
+ /**
147
+ * {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.appConfig}
148
+ *
149
+ * @category Sisense App
150
+ */
93
151
  appConfig: PropType<import("@sisense/sdk-ui-preact").AppConfig | undefined>;
94
152
  /**
95
153
  * @internal
@@ -9,6 +9,14 @@ export declare const getThemeContext: () => Ref<{
9
9
  secondaryTextColor: string;
10
10
  backgroundColor: string;
11
11
  panelBackgroundColor: string;
12
+ animation: {
13
+ init: {
14
+ duration: number | "auto";
15
+ };
16
+ redraw: {
17
+ duration: number | "auto";
18
+ };
19
+ };
12
20
  };
13
21
  palette: {
14
22
  variantColors: import("@sisense/sdk-ui-preact").Color[];
@@ -24,6 +32,25 @@ export declare const getThemeContext: () => Ref<{
24
32
  primaryButtonTextColor: string;
25
33
  primaryButtonHoverColor: string;
26
34
  };
35
+ widget: {
36
+ spaceAround: import("@sisense/sdk-ui-preact").SpaceSizes;
37
+ cornerRadius: import("@sisense/sdk-ui-preact").RadiusSizes;
38
+ shadow: import("@sisense/sdk-ui-preact").ShadowsTypes;
39
+ border: boolean;
40
+ borderColor: string;
41
+ header: {
42
+ titleTextColor: string;
43
+ titleAlignment: import("@sisense/sdk-ui-preact").AlignmentTypes;
44
+ dividerLine: boolean;
45
+ dividerLineColor: string;
46
+ backgroundColor: string;
47
+ };
48
+ };
49
+ dashboard: {
50
+ backgroundColor: string;
51
+ dividerLineWidth: number;
52
+ dividerLineColor: string;
53
+ };
27
54
  aiChat: {
28
55
  backgroundColor: string;
29
56
  primaryTextColor: string;
@@ -132,6 +159,14 @@ export declare const createThemeContextConnector: (themeSettings?: CompleteTheme
132
159
  secondaryTextColor: string;
133
160
  backgroundColor: string;
134
161
  panelBackgroundColor: string;
162
+ animation: {
163
+ init: {
164
+ duration: number | "auto";
165
+ };
166
+ redraw: {
167
+ duration: number | "auto";
168
+ };
169
+ };
135
170
  };
136
171
  palette: {
137
172
  variantColors: import("@sisense/sdk-ui-preact").Color[];
@@ -147,6 +182,25 @@ export declare const createThemeContextConnector: (themeSettings?: CompleteTheme
147
182
  primaryButtonTextColor: string;
148
183
  primaryButtonHoverColor: string;
149
184
  };
185
+ widget: {
186
+ spaceAround: import("@sisense/sdk-ui-preact").SpaceSizes;
187
+ cornerRadius: import("@sisense/sdk-ui-preact").RadiusSizes;
188
+ shadow: import("@sisense/sdk-ui-preact").ShadowsTypes;
189
+ border: boolean;
190
+ borderColor: string;
191
+ header: {
192
+ titleTextColor: string;
193
+ titleAlignment: import("@sisense/sdk-ui-preact").AlignmentTypes;
194
+ dividerLine: boolean;
195
+ dividerLineColor: string;
196
+ backgroundColor: string;
197
+ };
198
+ };
199
+ dashboard: {
200
+ backgroundColor: string;
201
+ dividerLineWidth: number;
202
+ dividerLineColor: string;
203
+ };
150
204
  aiChat: {
151
205
  backgroundColor: string;
152
206
  primaryTextColor: string;
@@ -252,6 +306,14 @@ export declare const createThemeContextConnector: (themeSettings?: CompleteTheme
252
306
  secondaryTextColor: string;
253
307
  backgroundColor: string;
254
308
  panelBackgroundColor: string;
309
+ animation: {
310
+ init: {
311
+ duration: number | "auto";
312
+ };
313
+ redraw: {
314
+ duration: number | "auto";
315
+ };
316
+ };
255
317
  };
256
318
  palette: {
257
319
  variantColors: import("@sisense/sdk-ui-preact").Color[];
@@ -267,6 +329,25 @@ export declare const createThemeContextConnector: (themeSettings?: CompleteTheme
267
329
  primaryButtonTextColor: string;
268
330
  primaryButtonHoverColor: string;
269
331
  };
332
+ widget: {
333
+ spaceAround: import("@sisense/sdk-ui-preact").SpaceSizes;
334
+ cornerRadius: import("@sisense/sdk-ui-preact").RadiusSizes;
335
+ shadow: import("@sisense/sdk-ui-preact").ShadowsTypes;
336
+ border: boolean;
337
+ borderColor: string;
338
+ header: {
339
+ titleTextColor: string;
340
+ titleAlignment: import("@sisense/sdk-ui-preact").AlignmentTypes;
341
+ dividerLine: boolean;
342
+ dividerLineColor: string;
343
+ backgroundColor: string;
344
+ };
345
+ };
346
+ dashboard: {
347
+ backgroundColor: string;
348
+ dividerLineWidth: number;
349
+ dividerLineColor: string;
350
+ };
270
351
  aiChat: {
271
352
  backgroundColor: string;
272
353
  primaryTextColor: string;
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "Sisense",
12
12
  "Compose SDK"
13
13
  ],
14
- "version": "1.15.1",
14
+ "version": "1.17.0",
15
15
  "type": "module",
16
16
  "main": "./dist/index.cjs",
17
17
  "module": "./dist/index.js",
@@ -42,7 +42,7 @@
42
42
  "format:check": "prettier --check ."
43
43
  },
44
44
  "dependencies": {
45
- "@sisense/sdk-ui-preact": "^1.15.1",
45
+ "@sisense/sdk-ui-preact": "^1.17.0",
46
46
  "deepmerge": "^4.3.1",
47
47
  "lodash": "^4.17.21",
48
48
  "vue": "^3.3.2"