@sisense/sdk-ui 1.10.1 → 1.11.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/ai-context-provider.d.ts +1 -1
- package/dist/ai/chatbot.d.ts +1 -1
- package/dist/ai/common/beta-label.d.ts +1 -0
- package/dist/ai/get-nlg-query-result.d.ts +1 -1
- package/dist/ai/messages/get-widget-options.d.ts +6 -1
- package/dist/ai/use-get-nlg-query-result.d.ts +1 -1
- package/dist/ai/use-get-query-recommendations.d.ts +1 -1
- package/dist/ai.js +531 -483
- package/dist/api/types/dashboard-dto.d.ts +3 -3
- package/dist/area-range-chart.d.ts +67 -0
- package/dist/areamap-chart.d.ts +0 -1
- package/dist/boxplot-chart.d.ts +0 -1
- package/dist/chart/chart.d.ts +0 -2
- package/dist/chart/helpers/should-skip-sisense-context-waiting.d.ts +3 -0
- package/dist/chart/helpers/use-chart-renderer-props.d.ts +27 -0
- package/dist/chart/regular-chart.d.ts +7 -0
- package/dist/chart/types.d.ts +21 -0
- package/dist/chart-data/range-data.d.ts +11 -0
- package/dist/chart-data/types.d.ts +15 -1
- package/dist/chart-data-options/translate-range-data-options.d.ts +2 -0
- package/dist/chart-data-options/types.d.ts +56 -4
- package/dist/chart-data-processor/data-table-date-period.d.ts +0 -1
- package/dist/chart-options-processor/chart-options-service.d.ts +5 -0
- package/dist/chart-options-processor/range-chart-options.d.ts +17 -0
- package/dist/chart-options-processor/translations/design-options.d.ts +55 -7
- package/dist/chart-options-processor/translations/range/tooltip-range.d.ts +4 -0
- package/dist/chart-options-processor/translations/tooltip-utils.d.ts +3 -0
- package/dist/chart-options-processor/translations/types.d.ts +12 -6
- package/dist/charts/map-charts/areamap/areamap.d.ts +2 -3
- package/dist/charts/map-charts/scattermap/scattermap.d.ts +2 -1
- package/dist/charts/table/helpers/calc-column-widths.d.ts +1 -0
- package/dist/charts/table/styles/style-constants.d.ts +1 -0
- package/dist/charts/table/types.d.ts +13 -4
- package/dist/dashboard-widget/translate-widget-filters.d.ts +664 -4
- package/dist/dashboard-widget/use-fetch-widget-dto-model.d.ts +1 -1
- package/dist/dashboard-widget/utils.d.ts +2 -2
- package/dist/{debounce-CVvJ1016.js → debounce-BbwkW3DX.js} +34680 -34541
- package/dist/decorators/component-decorators/as-sisense-component.d.ts +6 -2
- package/dist/decorators/component-decorators/with-tracking/use-track-component-init.d.ts +2 -1
- package/dist/decorators/component-decorators/with-tracking/with-tracking.d.ts +4 -1
- package/dist/filters/components/common/basic-input.d.ts +0 -1
- package/dist/filters/components/filters-panel/filters-panel-tile.d.ts +18 -0
- package/dist/filters/components/filters-panel/filters-panel.d.ts +18 -0
- package/dist/filters/components/filters-panel/index.d.ts +2 -0
- package/dist/filters/components/member-filter-tile/basic-member-filter-tile.d.ts +3 -1
- package/dist/filters/components/member-filter-tile/use-members.d.ts +1 -1
- package/dist/filters/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +16387 -17876
- package/dist/indicator-canvas.d.ts +2 -3
- package/dist/models/dashboard/get-dashboard-model.d.ts +8 -0
- package/dist/models/dashboard/translate-dashboard.d.ts +1 -1
- package/dist/models/dashboard/types.d.ts +3 -1
- package/dist/models/widget/widget-model.d.ts +3 -3
- package/dist/pivot-table/formatters/header-cell-formatters/header-cell-highlight-formatter.d.ts +2 -0
- package/dist/pivot-table/formatters/types.d.ts +2 -2
- package/dist/pivot-table/helpers/prepare-pivot-styling-props.d.ts +1 -0
- package/dist/pivot-table/pivot-table.d.ts +1 -1
- package/dist/pivot-table/use-get-pivot-table-query.d.ts +2 -1
- package/dist/props.d.ts +57 -2
- package/dist/query/date-formats/apply-date-format.d.ts +0 -1
- package/dist/query/query-result-date-formatting.d.ts +0 -1
- package/dist/query-execution/types.d.ts +11 -1
- package/dist/query-execution/use-execute-pivot-query.d.ts +1 -1
- package/dist/scattermap-chart.d.ts +0 -1
- package/dist/sisense-chart/sisense-chart.d.ts +8 -5
- package/dist/table/table-component.d.ts +8 -0
- package/dist/table/table.d.ts +2 -2
- package/dist/table/translations/design-options.d.ts +3 -0
- package/dist/translation/resources/en.d.ts +11 -1
- package/dist/translation/resources/index.d.ts +22 -2
- package/dist/types.d.ts +72 -7
- package/dist/utils/check-and-notify-about-deprecated-prop.d.ts +1 -0
- package/dist/widgets/drilldown-widget.d.ts +2 -1
- package/package.json +7 -7
|
@@ -6,7 +6,7 @@ export type AiContextProviderProps = {
|
|
|
6
6
|
* React component that wraps all generative AI components and hooks.
|
|
7
7
|
*
|
|
8
8
|
* ::: warning Note
|
|
9
|
-
* This component is currently under
|
|
9
|
+
* This component is currently under beta release for selected customers and is subject to change as we make fixes and improvements.
|
|
10
10
|
* :::
|
|
11
11
|
*
|
|
12
12
|
* @example
|
package/dist/ai/chatbot.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ export type ChatbotProps = {
|
|
|
25
25
|
* React component that renders a chatbot with data topic selection. You can optionally provide `width` and/or `height`.
|
|
26
26
|
*
|
|
27
27
|
* ::: warning Note
|
|
28
|
-
* This component is currently under
|
|
28
|
+
* This component is currently under beta release for selected customers and is subject to change as we make fixes and improvements.
|
|
29
29
|
* :::
|
|
30
30
|
*
|
|
31
31
|
* @example
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BetaLabel: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -10,7 +10,7 @@ export interface GetNlgQueryResultProps extends Omit<UseGetNlgQueryResultParams,
|
|
|
10
10
|
* Specifying a query is similar to providing parameters to a {@link useExecuteQuery} hook, using dimensions, measures, and filters.
|
|
11
11
|
*
|
|
12
12
|
* ::: warning Note
|
|
13
|
-
* This component is currently under
|
|
13
|
+
* This component is currently under beta release for selected customers and is subject to change as we make fixes and improvements.
|
|
14
14
|
* :::
|
|
15
15
|
*
|
|
16
16
|
* @example
|
|
@@ -11,9 +11,14 @@ export declare const getTableOptions: (jaql: MetadataItem[]) => {
|
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
13
|
/**
|
|
14
|
+
* Get chart options for the chart widget.
|
|
15
|
+
*
|
|
16
|
+
* @param jaql - metadata items
|
|
17
|
+
* @param chartRecommendations - chart recommendations
|
|
18
|
+
* @param useCustomizedStyleOptions - whether to use customized style. Charts as inline response messages use customized style. Charts for Query Composer use default style.
|
|
14
19
|
* @internal
|
|
15
20
|
*/
|
|
16
|
-
export declare const getChartOptions: (jaql: MetadataItem[], chartRecommendations: ChartRecommendations) => {
|
|
21
|
+
export declare const getChartOptions: (jaql: MetadataItem[], chartRecommendations: ChartRecommendations, useCustomizedStyleOptions?: boolean) => {
|
|
17
22
|
dataOptions: ChartDataOptions;
|
|
18
23
|
chartStyleOptions: ChartStyleOptions;
|
|
19
24
|
expandedChartStyleOptions: ChartStyleOptions;
|
|
@@ -46,7 +46,7 @@ export declare const useGetNlgQueryResultInternal: (params: GetNlgQueryResultPro
|
|
|
46
46
|
* Specifying a query is similar to providing parameters to a {@link useExecuteQuery} hook, using dimensions, measures, and filters.
|
|
47
47
|
*
|
|
48
48
|
* ::: warning Note
|
|
49
|
-
* This hook is currently under
|
|
49
|
+
* This hook is currently under beta release for selected customers and is subject to change as we make fixes and improvements.
|
|
50
50
|
* :::
|
|
51
51
|
*
|
|
52
52
|
* @example
|
|
@@ -36,7 +36,7 @@ export declare const useGetQueryRecommendationsInternal: (params: UseGetQueryRec
|
|
|
36
36
|
* This hook includes the same code that fetches the initial suggested questions in the chatbot.
|
|
37
37
|
*
|
|
38
38
|
* ::: warning Note
|
|
39
|
-
* This hook is currently under
|
|
39
|
+
* This hook is currently under beta release for selected customers and is subject to change as we make fixes and improvements.
|
|
40
40
|
* :::
|
|
41
41
|
*
|
|
42
42
|
* @example
|