@sisense/sdk-ui-vue 1.15.1 → 1.16.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.cjs +481 -479
- package/dist/index.js +66319 -64976
- package/dist/src/components/charts/area-chart.d.ts +92 -2
- package/dist/src/components/charts/area-range-chart.d.ts +90 -0
- package/dist/src/components/charts/areamap-chart.d.ts +60 -0
- package/dist/src/components/charts/bar-chart.d.ts +86 -4
- package/dist/src/components/charts/boxplot-chart.d.ts +90 -0
- package/dist/src/components/charts/chart.d.ts +106 -0
- package/dist/src/components/charts/column-chart.d.ts +90 -0
- package/dist/src/components/charts/funnel-chart.d.ts +90 -0
- package/dist/src/components/charts/indicator-chart.d.ts +50 -0
- package/dist/src/components/charts/line-chart.d.ts +90 -0
- package/dist/src/components/charts/pie-chart.d.ts +90 -0
- package/dist/src/components/charts/pivot-table.d.ts +52 -0
- package/dist/src/components/charts/polar-chart.d.ts +90 -0
- package/dist/src/components/charts/scatter-chart.d.ts +90 -0
- package/dist/src/components/charts/scattermap-chart.d.ts +60 -0
- package/dist/src/components/charts/sunburst-chart.d.ts +90 -0
- package/dist/src/components/charts/table.d.ts +42 -0
- package/dist/src/components/charts/treemap-chart.d.ts +90 -0
- package/dist/src/components/context-menu.d.ts +18 -0
- package/dist/src/components/dashboard/dashboard-by-id.d.ts +9 -1
- package/dist/src/components/dashboard/dashboard.d.ts +46 -1
- package/dist/src/components/drilldown-breadcrumbs.d.ts +40 -4
- package/dist/src/components/drilldown-widget.d.ts +32 -0
- package/dist/src/components/filters/criteria-filter-tile.d.ts +30 -0
- package/dist/src/components/filters/date-range-filter-tile.d.ts +56 -2
- package/dist/src/components/filters/member-filter-tile.d.ts +36 -0
- package/dist/src/components/widgets/chart-widget.d.ts +200 -0
- package/dist/src/components/widgets/dashboard-widget.d.ts +154 -4
- package/dist/src/composables/use-execute-query-by-widget-id.d.ts +4 -1
- package/dist/src/composables/use-get-dashboard-model.d.ts +2 -0
- package/dist/src/composables/use-get-dashboard-models.d.ts +2 -0
- package/dist/src/composables/use-get-widget-model.d.ts +2 -0
- package/dist/src/providers/sisense-context-provider.d.ts +60 -0
- package/dist/src/providers/theme-provider.d.ts +42 -0
- 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
|
-
/**
|
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
|
-
/**
|
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
|
-
/**
|
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
|
-
/**
|
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
|
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.
|
@@ -62,11 +62,41 @@ export declare const createSisenseContextConnector: (context: CustomSisenseConte
|
|
62
62
|
* @group Contexts
|
63
63
|
*/
|
64
64
|
export declare const SisenseContextProvider: import("vue").DefineComponent<{
|
65
|
+
/**
|
66
|
+
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.defaultDataSource}
|
67
|
+
*
|
68
|
+
* @category Sisense App
|
69
|
+
*/
|
65
70
|
defaultDataSource: PropType<import("@sisense/sdk-data").DataSource | undefined>;
|
71
|
+
/**
|
72
|
+
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.url}
|
73
|
+
*
|
74
|
+
* @category Sisense App
|
75
|
+
*/
|
66
76
|
url: PropType<string>;
|
77
|
+
/**
|
78
|
+
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.ssoEnabled}
|
79
|
+
*
|
80
|
+
* @category Sisense Authentication
|
81
|
+
*/
|
67
82
|
ssoEnabled: PropType<boolean | undefined>;
|
83
|
+
/**
|
84
|
+
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.token}
|
85
|
+
*
|
86
|
+
* @category Sisense Authentication
|
87
|
+
*/
|
68
88
|
token: PropType<string | undefined>;
|
89
|
+
/**
|
90
|
+
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.wat}
|
91
|
+
*
|
92
|
+
* @category Sisense Authentication
|
93
|
+
*/
|
69
94
|
wat: PropType<string | undefined>;
|
95
|
+
/**
|
96
|
+
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.appConfig}
|
97
|
+
*
|
98
|
+
* @category Sisense App
|
99
|
+
*/
|
70
100
|
appConfig: PropType<import("@sisense/sdk-ui-preact").AppConfig | undefined>;
|
71
101
|
/**
|
72
102
|
* @internal
|
@@ -85,11 +115,41 @@ export declare const SisenseContextProvider: import("vue").DefineComponent<{
|
|
85
115
|
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
86
116
|
[key: string]: any;
|
87
117
|
}>[] | undefined, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
118
|
+
/**
|
119
|
+
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.defaultDataSource}
|
120
|
+
*
|
121
|
+
* @category Sisense App
|
122
|
+
*/
|
88
123
|
defaultDataSource: PropType<import("@sisense/sdk-data").DataSource | undefined>;
|
124
|
+
/**
|
125
|
+
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.url}
|
126
|
+
*
|
127
|
+
* @category Sisense App
|
128
|
+
*/
|
89
129
|
url: PropType<string>;
|
130
|
+
/**
|
131
|
+
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.ssoEnabled}
|
132
|
+
*
|
133
|
+
* @category Sisense Authentication
|
134
|
+
*/
|
90
135
|
ssoEnabled: PropType<boolean | undefined>;
|
136
|
+
/**
|
137
|
+
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.token}
|
138
|
+
*
|
139
|
+
* @category Sisense Authentication
|
140
|
+
*/
|
91
141
|
token: PropType<string | undefined>;
|
142
|
+
/**
|
143
|
+
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.wat}
|
144
|
+
*
|
145
|
+
* @category Sisense Authentication
|
146
|
+
*/
|
92
147
|
wat: PropType<string | undefined>;
|
148
|
+
/**
|
149
|
+
* {@inheritDoc @sisense/sdk-ui!SisenseContextProviderProps.appConfig}
|
150
|
+
*
|
151
|
+
* @category Sisense App
|
152
|
+
*/
|
93
153
|
appConfig: PropType<import("@sisense/sdk-ui-preact").AppConfig | undefined>;
|
94
154
|
/**
|
95
155
|
* @internal
|
@@ -24,6 +24,20 @@ export declare const getThemeContext: () => Ref<{
|
|
24
24
|
primaryButtonTextColor: string;
|
25
25
|
primaryButtonHoverColor: string;
|
26
26
|
};
|
27
|
+
widget: {
|
28
|
+
spaceAround: import("@sisense/sdk-ui-preact").SpaceSizes;
|
29
|
+
cornerRadius: import("@sisense/sdk-ui-preact").RadiusSizes;
|
30
|
+
shadow: import("@sisense/sdk-ui-preact").ShadowsTypes;
|
31
|
+
border: boolean;
|
32
|
+
borderColor: string;
|
33
|
+
header: {
|
34
|
+
titleTextColor: string;
|
35
|
+
titleAlignment: import("@sisense/sdk-ui-preact").AlignmentTypes;
|
36
|
+
dividerLine: boolean;
|
37
|
+
dividerLineColor: string;
|
38
|
+
backgroundColor: string;
|
39
|
+
};
|
40
|
+
};
|
27
41
|
aiChat: {
|
28
42
|
backgroundColor: string;
|
29
43
|
primaryTextColor: string;
|
@@ -147,6 +161,20 @@ export declare const createThemeContextConnector: (themeSettings?: CompleteTheme
|
|
147
161
|
primaryButtonTextColor: string;
|
148
162
|
primaryButtonHoverColor: string;
|
149
163
|
};
|
164
|
+
widget: {
|
165
|
+
spaceAround: import("@sisense/sdk-ui-preact").SpaceSizes;
|
166
|
+
cornerRadius: import("@sisense/sdk-ui-preact").RadiusSizes;
|
167
|
+
shadow: import("@sisense/sdk-ui-preact").ShadowsTypes;
|
168
|
+
border: boolean;
|
169
|
+
borderColor: string;
|
170
|
+
header: {
|
171
|
+
titleTextColor: string;
|
172
|
+
titleAlignment: import("@sisense/sdk-ui-preact").AlignmentTypes;
|
173
|
+
dividerLine: boolean;
|
174
|
+
dividerLineColor: string;
|
175
|
+
backgroundColor: string;
|
176
|
+
};
|
177
|
+
};
|
150
178
|
aiChat: {
|
151
179
|
backgroundColor: string;
|
152
180
|
primaryTextColor: string;
|
@@ -267,6 +295,20 @@ export declare const createThemeContextConnector: (themeSettings?: CompleteTheme
|
|
267
295
|
primaryButtonTextColor: string;
|
268
296
|
primaryButtonHoverColor: string;
|
269
297
|
};
|
298
|
+
widget: {
|
299
|
+
spaceAround: import("@sisense/sdk-ui-preact").SpaceSizes;
|
300
|
+
cornerRadius: import("@sisense/sdk-ui-preact").RadiusSizes;
|
301
|
+
shadow: import("@sisense/sdk-ui-preact").ShadowsTypes;
|
302
|
+
border: boolean;
|
303
|
+
borderColor: string;
|
304
|
+
header: {
|
305
|
+
titleTextColor: string;
|
306
|
+
titleAlignment: import("@sisense/sdk-ui-preact").AlignmentTypes;
|
307
|
+
dividerLine: boolean;
|
308
|
+
dividerLineColor: string;
|
309
|
+
backgroundColor: string;
|
310
|
+
};
|
311
|
+
};
|
270
312
|
aiChat: {
|
271
313
|
backgroundColor: string;
|
272
314
|
primaryTextColor: string;
|
package/package.json
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
"Sisense",
|
12
12
|
"Compose SDK"
|
13
13
|
],
|
14
|
-
"version": "1.
|
14
|
+
"version": "1.16.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.
|
45
|
+
"@sisense/sdk-ui-preact": "^1.16.0",
|
46
46
|
"deepmerge": "^4.3.1",
|
47
47
|
"lodash": "^4.17.21",
|
48
48
|
"vue": "^3.3.2"
|