@sisense/sdk-ui 1.11.0 → 1.12.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/buttons/thumbs-down-button.d.ts +2 -1
- package/dist/ai/buttons/thumbs-up-button.d.ts +2 -1
- package/dist/ai/chat-config.d.ts +10 -0
- package/dist/ai/chat-dropup.d.ts +2 -1
- package/dist/ai/chat-input.d.ts +3 -1
- package/dist/ai/common/icon-button.d.ts +2 -3
- package/dist/ai/icons/light-bulb-icon.d.ts +1 -3
- package/dist/ai/index.d.ts +1 -0
- package/dist/ai/messages/clickable-message.d.ts +2 -1
- package/dist/ai/messages/feedback-wrapper.d.ts +2 -2
- package/dist/ai/messages/text-message.d.ts +5 -0
- package/dist/ai/use-last-nlq-response.d.ts +19 -0
- package/dist/ai.cjs +454 -0
- package/dist/ai.js +1073 -1074
- package/dist/api/types/dashboard-dto.d.ts +2 -1
- package/dist/app/client-application.d.ts +1 -0
- package/dist/chart/helpers/use-chart-renderer-props.d.ts +1 -0
- package/dist/chart-options-processor/translations/funnel-plot-options.d.ts +2 -1
- package/dist/chart-options-processor/translations/pie-plot-options.d.ts +2 -1
- package/dist/common/components/loading-indicator.d.ts +17 -4
- package/dist/common/hooks/use-fetch.d.ts +1 -1
- package/dist/common/hooks/use-has-changed.d.ts +9 -0
- package/dist/common/hooks/use-should-load.d.ts +12 -0
- package/dist/dashboard/components/content-panel.d.ts +41 -0
- package/dist/dashboard/components/dashboard-container.d.ts +2 -0
- package/dist/dashboard/components/dashboard-header.d.ts +2 -0
- package/dist/dashboard/components/plugin-service.d.ts +21 -0
- package/dist/dashboard/constants.d.ts +2 -0
- package/dist/dashboard/dashboard-by-id.d.ts +7 -0
- package/dist/dashboard/dashboard.d.ts +8 -0
- package/dist/dashboard/types.d.ts +41 -0
- package/dist/dashboard/utils.d.ts +5 -0
- package/dist/dynamic-size-container/dynamic-size-container.d.ts +8 -0
- package/dist/filters/components/common/date-range-field-button.d.ts +3 -6
- package/dist/filters/components/date-filter/date-filter/date-filter.d.ts +15 -0
- package/dist/filters/components/date-filter/date-range-filter-tile/date-range-filter-display.d.ts +6 -0
- package/dist/filters/components/date-filter/date-range-filter-tile/date-range-filter-tile.d.ts +6 -0
- package/dist/filters/components/date-filter/date-range-filter-tile/editable-date-range-filter.d.ts +14 -0
- package/dist/filters/components/date-filter/date-range-filter-tile/use-date-limits.d.ts +1 -2
- package/dist/filters/components/date-filter/relative-date-filter-tile/relative-date-filter.d.ts +2 -2
- package/dist/filters/components/icons/arrow-icon.d.ts +6 -0
- package/dist/filters/components/icons/double-arrow-icon.d.ts +6 -0
- package/dist/highcharts-memorized.d.ts +1 -1
- package/dist/index.cjs +784 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +11798 -11496
- package/dist/models/dashboard/dashboard-model.d.ts +62 -0
- package/dist/models/dashboard/get-dashboard-model.d.ts +2 -1
- package/dist/models/dashboard/get-dashboard-models.d.ts +2 -1
- package/dist/models/dashboard/index.d.ts +1 -1
- package/dist/models/dashboard/translate-dashboard-utils.d.ts +5 -0
- package/dist/models/dashboard/types.d.ts +2 -14
- package/dist/models/dashboard/use-get-dashboard-model.d.ts +1 -1
- package/dist/models/dashboard/use-get-dashboard-models.d.ts +1 -1
- package/dist/query-execution/query-params-comparator.d.ts +1 -7
- package/dist/query-execution/use-execute-pivot-query.d.ts +2 -5
- package/dist/query-execution/use-execute-query-by-widget-id.d.ts +3 -4
- package/dist/translation/resources/en.d.ts +1 -0
- package/dist/translation/resources/index.d.ts +2 -0
- package/dist/types.d.ts +31 -10
- package/dist/{debounce-BbwkW3DX.js → useQuery-0UWck_2A.js} +12729 -12646
- package/dist/useQuery-DVHD0kJ-.cjs +603 -0
- package/dist/utils/create-cache.d.ts +0 -1
- package/dist/utils/utility-types.d.ts +1 -0
- package/dist/widgets/common/drilldown-breadcrumbs/styled-buttons.d.ts +2 -2
- package/package.json +13 -9
- package/dist/ai/icons/thumbs-down-hovered-icon.d.ts +0 -2
- package/dist/ai/icons/thumbs-up-hovered-icon.d.ts +0 -2
- package/dist/ai/messages/clear-history-success-message.d.ts +0 -1
- package/dist/filters/components/icons/arrow-right-icon.d.ts +0 -2
- package/dist/filters/components/icons/double-arrow-right-icon.d.ts +0 -2
- package/dist/models/dashboard/translate-dashboard.d.ts +0 -4
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
type ThumbsDownButtonProps = {
|
|
2
2
|
onClick?: () => void;
|
|
3
|
+
disabled?: boolean;
|
|
3
4
|
};
|
|
4
|
-
export default function ThumbsDownButton({ onClick }: ThumbsDownButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export default function ThumbsDownButton({ onClick, disabled }: ThumbsDownButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
5
6
|
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
type ThumbsUpButtonProps = {
|
|
2
2
|
onClick?: () => void;
|
|
3
|
+
disabled?: boolean;
|
|
3
4
|
};
|
|
4
|
-
export default function ThumbsUpButton({ onClick }: ThumbsUpButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export default function ThumbsUpButton({ onClick, disabled }: ThumbsUpButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
5
6
|
export {};
|
package/dist/ai/chat-config.d.ts
CHANGED
|
@@ -37,8 +37,18 @@ export interface ChatConfig {
|
|
|
37
37
|
* The welcome text to show at the top of a chat session.
|
|
38
38
|
*
|
|
39
39
|
* A value of `false` will hide the welcome text.
|
|
40
|
+
*
|
|
41
|
+
* If not specified, a default message will be displayed.
|
|
40
42
|
*/
|
|
41
43
|
welcomeText?: string | false;
|
|
44
|
+
/**
|
|
45
|
+
* The message text to show above the initial suggested questions in a chat session.
|
|
46
|
+
*
|
|
47
|
+
* A value of `false` will hide the text.
|
|
48
|
+
*
|
|
49
|
+
* If not specified, a default message will be displayed.
|
|
50
|
+
*/
|
|
51
|
+
suggestionsWelcomeText?: string | false;
|
|
42
52
|
/**
|
|
43
53
|
* Boolean flag to show or hide the header in a chat session.
|
|
44
54
|
*
|
package/dist/ai/chat-dropup.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ interface ChatDropupProps {
|
|
|
6
6
|
onSelection: (q: string) => void;
|
|
7
7
|
anchorEl: HTMLElement | null;
|
|
8
8
|
text: string;
|
|
9
|
+
recommendationsError: boolean;
|
|
9
10
|
}
|
|
10
|
-
export default function ChatDropup({ recentPrompts, suggestions, isLoading, onSelection, anchorEl, text, }: ChatDropupProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default function ChatDropup({ recentPrompts, suggestions, isLoading, onSelection, anchorEl, text, recommendationsError, }: ChatDropupProps): import("react/jsx-runtime").JSX.Element;
|
|
11
12
|
export {};
|
package/dist/ai/chat-input.d.ts
CHANGED
|
@@ -5,5 +5,7 @@ export type ChatInputProps = {
|
|
|
5
5
|
recentPrompts: string[];
|
|
6
6
|
suggestions: string[];
|
|
7
7
|
isLoading: boolean;
|
|
8
|
+
recommendationsError: boolean;
|
|
9
|
+
onChange?: (text: string) => void;
|
|
8
10
|
};
|
|
9
|
-
export default function ChatInput({ onSendMessage, onClearHistoryClick, disabled, recentPrompts, suggestions, isLoading, }: ChatInputProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default function ChatInput({ onSendMessage, onClearHistoryClick, disabled, recentPrompts, suggestions, isLoading, recommendationsError, onChange, }: ChatInputProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { type IconButtonProps as MuiIconButtonProps } from '@mui/material/IconButton';
|
|
3
|
-
import { CompleteThemeSettings } from '../../types';
|
|
4
3
|
interface IconButtonProps extends MuiIconButtonProps {
|
|
5
|
-
$
|
|
4
|
+
$hoverColor?: string;
|
|
6
5
|
}
|
|
7
6
|
declare const IconButton: import("@emotion/styled").StyledComponent<import("@mui/material/IconButton").IconButtonOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
8
7
|
ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
|
|
9
|
-
}, "children" | "style" | "disabled" | "size" | "className" | "tabIndex" | "color" | "
|
|
8
|
+
}, "children" | "style" | "disabled" | "size" | "className" | "tabIndex" | "color" | "sx" | "classes" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge"> & {
|
|
10
9
|
theme?: import("@emotion/react").Theme | undefined;
|
|
11
10
|
} & IconButtonProps, {}, {}>;
|
|
12
11
|
export default IconButton;
|
package/dist/ai/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export { type ChatConfig } from './chat-config';
|
|
|
3
3
|
export { useGetNlgQueryResult, type UseGetNlgQueryResultParams, type UseGetNlgQueryResultState, } from './use-get-nlg-query-result';
|
|
4
4
|
export { useGetQueryRecommendations, type UseGetQueryRecommendationsParams, type UseGetQueryRecommendationsState, } from './use-get-query-recommendations';
|
|
5
5
|
export { useChatSession, type UseChatSessionResult } from './use-chat-session';
|
|
6
|
+
export { useLastNlqResponse } from './use-last-nlq-response';
|
|
6
7
|
export { useGetDataSourceFields } from './use-get-data-source-fields';
|
|
7
8
|
export type { GetNlgQueryResultRequest, QueryRecommendationResponse, QueryRecommendation, NlqResponseData, ChartRecommendations, AxesMapping, AxesMappingKey, AllPossibleChartOptionKeys, KeysOfUnion, } from './api/types';
|
|
8
9
|
export { Chatbot, type ChatbotProps } from './chatbot';
|
|
@@ -6,6 +6,7 @@ type Props = {
|
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
onMouseEnter?: () => void;
|
|
8
8
|
onMouseLeave?: () => void;
|
|
9
|
+
accessibleName?: string;
|
|
9
10
|
};
|
|
10
|
-
export default function ClickableMessage({ children, align, onClick, onMouseEnter, onMouseLeave, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default function ClickableMessage({ children, align, onClick, onMouseEnter, onMouseLeave, accessibleName, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
11
12
|
export {};
|
|
@@ -4,7 +4,7 @@ type FeedbackWrapperProps = {
|
|
|
4
4
|
data: object;
|
|
5
5
|
type: string;
|
|
6
6
|
buttonVisibility?: 'onHover' | 'always' | 'never';
|
|
7
|
-
|
|
7
|
+
renderContent: (buttonRow: JSX.Element) => ReactNode;
|
|
8
8
|
};
|
|
9
|
-
export default function FeedbackWrapper({ sourceId, data, type, buttonVisibility,
|
|
9
|
+
export default function FeedbackWrapper({ sourceId, data, type, buttonVisibility, renderContent, }: FeedbackWrapperProps): import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
export {};
|
|
@@ -1,6 +1,11 @@
|
|
|
1
|
+
import { Themable } from '../../theme-provider/types';
|
|
1
2
|
import { FC, PropsWithChildren } from 'react';
|
|
2
3
|
type Alignable = {
|
|
3
4
|
align: 'left' | 'right' | 'full';
|
|
4
5
|
};
|
|
6
|
+
export declare const MessageContainer: import("@emotion/styled").StyledComponent<{
|
|
7
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
8
|
+
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
9
|
+
} & Themable & Alignable, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
5
10
|
declare const TextMessage: FC<PropsWithChildren<Alignable>>;
|
|
6
11
|
export default TextMessage;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { NlqResponseData } from './api/types';
|
|
2
|
+
/**
|
|
3
|
+
* Parameters for the useLastNlqResponse hook.
|
|
4
|
+
*
|
|
5
|
+
* @internal
|
|
6
|
+
*/
|
|
7
|
+
interface UseLastNlqResponseParams {
|
|
8
|
+
/** The title of the data model or perspective */
|
|
9
|
+
contextTitle: string;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* React hook that returns the last NLQ response for the chat that corresponds
|
|
13
|
+
* to the given data model or perspective.
|
|
14
|
+
*
|
|
15
|
+
* @param params - Parameters for the hook
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const useLastNlqResponse: ({ contextTitle, }: UseLastNlqResponseParams) => NlqResponseData | null;
|
|
19
|
+
export {};
|