@livechat/design-system-react-components 1.3.0 → 1.5.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/components/Popover/Popover.d.ts +1 -36
- package/dist/components/Popover/Popover.stories.d.ts +5 -2
- package/dist/components/Popover/index.d.ts +1 -0
- package/dist/components/Popover/types.d.ts +59 -0
- package/dist/components/PromoBanner/PromoBanner.d.ts +1 -1
- package/dist/components/Tooltip/Tooltip.stories.d.ts +24 -13
- package/dist/components/Tooltip/components/Info.d.ts +1 -0
- package/dist/components/Tooltip/helpers.d.ts +2 -0
- package/dist/components/Tooltip/types.d.ts +98 -9
- package/dist/dsrc.cjs.js +1 -18
- package/dist/dsrc.es.js +1390 -1485
- package/dist/foundations/shadow-token.d.ts +11 -0
- package/dist/preview-stats.json +646 -679
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/dist/components/Tooltip/components/FloatingComponent.d.ts +0 -18
|
@@ -1,38 +1,3 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import {
|
|
3
|
-
export interface IPopoverProps {
|
|
4
|
-
children?: React.ReactNode;
|
|
5
|
-
/**
|
|
6
|
-
* The CSS class for popover container
|
|
7
|
-
*/
|
|
8
|
-
className?: string;
|
|
9
|
-
/**
|
|
10
|
-
* The CSS class for trigger container
|
|
11
|
-
*/
|
|
12
|
-
triggerClassName?: string;
|
|
13
|
-
/**
|
|
14
|
-
* The popover placement related to the trigger element
|
|
15
|
-
*/
|
|
16
|
-
placement?: Placement;
|
|
17
|
-
/**
|
|
18
|
-
* Set popover visibility
|
|
19
|
-
*/
|
|
20
|
-
isVisible?: boolean;
|
|
21
|
-
/**
|
|
22
|
-
* Set the popover placement to keep it in view
|
|
23
|
-
*/
|
|
24
|
-
flipOptions?: Parameters<typeof flip>[0];
|
|
25
|
-
/**
|
|
26
|
-
* Set `false` if the menu is not to be closed with a esc press
|
|
27
|
-
*/
|
|
28
|
-
closeOnEsc?: boolean;
|
|
29
|
-
/**
|
|
30
|
-
* Trigger element
|
|
31
|
-
*/
|
|
32
|
-
triggerRenderer: () => React.ReactNode;
|
|
33
|
-
/**
|
|
34
|
-
* Optional callback called after popover close
|
|
35
|
-
*/
|
|
36
|
-
onClose?: () => void;
|
|
37
|
-
}
|
|
2
|
+
import { IPopoverProps } from './types';
|
|
38
3
|
export declare const Popover: React.FC<IPopoverProps>;
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { StoryFn } from '@storybook/react';
|
|
3
|
+
import type { IPopoverProps } from './types';
|
|
3
4
|
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, IPopoverProps & {
|
|
4
5
|
children?: React.ReactNode;
|
|
5
6
|
}>;
|
|
6
7
|
export default _default;
|
|
7
8
|
export declare const Default: {
|
|
8
9
|
(args: IPopoverProps): React.ReactElement;
|
|
10
|
+
decorators: ((Story: StoryFn) => React.JSX.Element)[];
|
|
9
11
|
args: {
|
|
10
12
|
placement: string;
|
|
11
|
-
isVisible:
|
|
13
|
+
isVisible: undefined;
|
|
14
|
+
openedOnInit: boolean;
|
|
12
15
|
};
|
|
13
16
|
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Placement, UseClickProps, UseDismissProps, FlipOptions } from '@floating-ui/react';
|
|
3
|
+
export interface IPopoverProps {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
/**
|
|
6
|
+
* The CSS class for popover container
|
|
7
|
+
*/
|
|
8
|
+
className?: string;
|
|
9
|
+
/**
|
|
10
|
+
* The CSS class for trigger container
|
|
11
|
+
*/
|
|
12
|
+
triggerClassName?: string;
|
|
13
|
+
/**
|
|
14
|
+
* The popover placement related to the trigger element
|
|
15
|
+
*/
|
|
16
|
+
placement?: Placement;
|
|
17
|
+
/**
|
|
18
|
+
* Optional handler called on tooltip hide
|
|
19
|
+
*/
|
|
20
|
+
onClose?: () => void;
|
|
21
|
+
/**
|
|
22
|
+
* Optional handler called on tooltip show
|
|
23
|
+
*/
|
|
24
|
+
onOpen?: () => void;
|
|
25
|
+
/**
|
|
26
|
+
* Set popover visibility
|
|
27
|
+
*/
|
|
28
|
+
isVisible?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Will open menu on component initialization
|
|
31
|
+
*/
|
|
32
|
+
openedOnInit?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Set the popover placement to keep it in view
|
|
35
|
+
*/
|
|
36
|
+
flipOptions?: FlipOptions;
|
|
37
|
+
/**
|
|
38
|
+
* Set the popover offset
|
|
39
|
+
*/
|
|
40
|
+
offsetSize?: number;
|
|
41
|
+
/**
|
|
42
|
+
* Set `false` if the menu is not to be closed with an esc press
|
|
43
|
+
*/
|
|
44
|
+
closeOnEsc?: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* Trigger element
|
|
47
|
+
*/
|
|
48
|
+
triggerRenderer: React.ReactElement | (() => React.ReactNode);
|
|
49
|
+
/**
|
|
50
|
+
* Set the `floating-ui` useDismiss hook params if you need more control
|
|
51
|
+
* https://floating-ui.com/docs/usedismiss
|
|
52
|
+
*/
|
|
53
|
+
useDismissHookProps?: UseDismissProps;
|
|
54
|
+
/**
|
|
55
|
+
* Set the `floating-ui` useClick hook params if you need more control
|
|
56
|
+
* https://floating-ui.com/docs/useclick
|
|
57
|
+
*/
|
|
58
|
+
useClickHookProps?: UseClickProps;
|
|
59
|
+
}
|
|
@@ -38,6 +38,6 @@ export interface PromoBannerProps {
|
|
|
38
38
|
onLinkClick?: () => void;
|
|
39
39
|
}
|
|
40
40
|
/**
|
|
41
|
-
* @deprecated Since version 1.0.0. Will be deleted in
|
|
41
|
+
* @deprecated Since version 1.0.0. Will be deleted in version 2.0.0. Use {@link PromoBannerV2} instead.
|
|
42
42
|
*/
|
|
43
43
|
export declare const PromoBanner: React.FC<React.PropsWithChildren<PromoBannerProps>>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
+
import { StoryFn } from '@storybook/react';
|
|
2
3
|
import { ITooltipProps } from './types';
|
|
3
4
|
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, ITooltipProps & {
|
|
4
5
|
children?: React.ReactNode;
|
|
@@ -7,22 +8,32 @@ export default _default;
|
|
|
7
8
|
export declare const Default: {
|
|
8
9
|
(args: ITooltipProps): React.ReactElement;
|
|
9
10
|
args: {
|
|
10
|
-
placement: string;
|
|
11
11
|
isVisible: boolean;
|
|
12
|
-
theme: string;
|
|
13
|
-
triggerOnClick: boolean;
|
|
14
|
-
arrowOffsetY: number;
|
|
15
|
-
arrowOffsetX: number;
|
|
16
|
-
offsetMainAxis: number;
|
|
17
|
-
withFadeAnimation: boolean;
|
|
18
|
-
transitionDuration: number;
|
|
19
|
-
transitionDelay: number;
|
|
20
|
-
hoverOutDelayTimeout: number;
|
|
21
12
|
};
|
|
13
|
+
decorators: ((Story: StoryFn) => React.JSX.Element)[];
|
|
14
|
+
};
|
|
15
|
+
export declare const TooltipInfo: {
|
|
16
|
+
(args: ITooltipProps): React.ReactElement;
|
|
17
|
+
args: {
|
|
18
|
+
isVisible: boolean;
|
|
19
|
+
};
|
|
20
|
+
decorators: ((Story: StoryFn) => React.JSX.Element)[];
|
|
21
|
+
};
|
|
22
|
+
export declare const TooltipInteractive: {
|
|
23
|
+
(args: ITooltipProps): React.ReactElement;
|
|
24
|
+
args: {
|
|
25
|
+
isVisible: boolean;
|
|
26
|
+
};
|
|
27
|
+
decorators: ((Story: StoryFn) => React.JSX.Element)[];
|
|
28
|
+
};
|
|
29
|
+
export declare const TooltipReports: {
|
|
30
|
+
(args: ITooltipProps): React.ReactElement;
|
|
31
|
+
args: {
|
|
32
|
+
isVisible: boolean;
|
|
33
|
+
fullSpaceContent: boolean;
|
|
34
|
+
};
|
|
35
|
+
decorators: ((Story: StoryFn) => React.JSX.Element)[];
|
|
22
36
|
};
|
|
23
|
-
export declare const TooltipInfo: () => React.ReactElement;
|
|
24
|
-
export declare const TooltipInteractive: () => React.ReactElement;
|
|
25
|
-
export declare const TooltipReports: () => React.ReactElement;
|
|
26
37
|
export declare const TooltipUserGuide: {
|
|
27
38
|
(args: ITooltipProps): React.ReactElement;
|
|
28
39
|
args: {
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
1
2
|
import { IconKind } from '../Icon';
|
|
2
3
|
import { TooltipTheme } from './types';
|
|
3
4
|
export declare function getIconType(theme: TooltipTheme): IconKind;
|
|
4
5
|
export declare const sleep: (milliseconds: number) => Promise<void>;
|
|
6
|
+
export declare function getArrowStyles(arrowOffsetY?: number, arrowOffsetX?: number, arrowY?: number, arrowX?: number): CSSProperties | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { Placement, VirtualElement } from '@floating-ui/react
|
|
2
|
+
import { Placement, VirtualElement, UseDismissProps } from '@floating-ui/react';
|
|
3
3
|
import { ButtonKind } from '../Button';
|
|
4
4
|
export type TooltipTheme = 'invert' | 'important' | undefined;
|
|
5
5
|
export type TooltipButton = {
|
|
@@ -8,23 +8,112 @@ export type TooltipButton = {
|
|
|
8
8
|
kind?: ButtonKind;
|
|
9
9
|
};
|
|
10
10
|
export interface ITooltipProps {
|
|
11
|
-
|
|
11
|
+
/**
|
|
12
|
+
* The CSS class for tooltip
|
|
13
|
+
*/
|
|
12
14
|
className?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The CSS class for trigger wrapper
|
|
17
|
+
*/
|
|
13
18
|
triggerClassName?: string;
|
|
14
|
-
|
|
19
|
+
/**
|
|
20
|
+
* Trigger element
|
|
21
|
+
*/
|
|
22
|
+
triggerRenderer: React.ReactElement | (() => React.ReactNode);
|
|
23
|
+
/**
|
|
24
|
+
* Specify the tooltip kind
|
|
25
|
+
* @deprecated we are changing the nomenclature to `kind` in order to maintain the constant naming of props
|
|
26
|
+
*/
|
|
27
|
+
theme?: 'invert' | 'important' | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* Specify the tooltip kind
|
|
30
|
+
*/
|
|
31
|
+
kind?: 'invert' | 'important' | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* The tooltip placement
|
|
34
|
+
*/
|
|
15
35
|
placement?: Placement;
|
|
36
|
+
/**
|
|
37
|
+
* Set to control the menu visibility
|
|
38
|
+
*/
|
|
16
39
|
isVisible?: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Removes the spacing inside the tooltip
|
|
42
|
+
*/
|
|
43
|
+
fullSpaceContent?: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* Optional handler called on tooltip hide
|
|
46
|
+
*/
|
|
47
|
+
onClose?: () => void;
|
|
48
|
+
/**
|
|
49
|
+
* Optional handler called on tooltip show
|
|
50
|
+
*/
|
|
51
|
+
onOpen?: () => void;
|
|
52
|
+
/**
|
|
53
|
+
* Set to enable/disable transition
|
|
54
|
+
*/
|
|
17
55
|
withFadeAnimation?: boolean;
|
|
56
|
+
/**
|
|
57
|
+
* Set to define transition duration for showing and hiding tooltip
|
|
58
|
+
*/
|
|
18
59
|
transitionDuration?: number;
|
|
60
|
+
/**
|
|
61
|
+
* Set to define transition duration for showing tooltip
|
|
62
|
+
*/
|
|
63
|
+
hoverOnDuration?: number;
|
|
64
|
+
/**
|
|
65
|
+
* Set to define transition duration for hiding tooltip
|
|
66
|
+
*/
|
|
67
|
+
hoverOffDuration?: number;
|
|
68
|
+
/**
|
|
69
|
+
* Set to define delay before transition start for showing and hiding tooltip
|
|
70
|
+
*/
|
|
19
71
|
transitionDelay?: number;
|
|
72
|
+
/**
|
|
73
|
+
* Set to define delay before transition start for showing tooltip
|
|
74
|
+
*/
|
|
75
|
+
hoverOnDelay?: number;
|
|
76
|
+
/**
|
|
77
|
+
* Set to define delay before transition start for hiding tooltip
|
|
78
|
+
* @deprecated This prop will be removed in the future. Use `hoverOffDelay`.
|
|
79
|
+
*/
|
|
20
80
|
hoverOutDelayTimeout?: number;
|
|
21
|
-
|
|
81
|
+
/**
|
|
82
|
+
* Set to define delay before transition start for hiding tooltip
|
|
83
|
+
*/
|
|
84
|
+
hoverOffDelay?: number;
|
|
85
|
+
/**
|
|
86
|
+
* Set if you want to show tooltip after trigger click if state is not managed
|
|
87
|
+
*/
|
|
22
88
|
triggerOnClick?: boolean;
|
|
89
|
+
/**
|
|
90
|
+
* Set the tooltip distance from the trigger
|
|
91
|
+
*/
|
|
92
|
+
offsetMainAxis?: number;
|
|
93
|
+
/**
|
|
94
|
+
* Set custom reference object for the tooltip
|
|
95
|
+
*/
|
|
96
|
+
referenceElement?: VirtualElement;
|
|
97
|
+
/**
|
|
98
|
+
* Waits until cursor is at “rest” over the trigger to change the state
|
|
99
|
+
*/
|
|
100
|
+
activationThreshold?: number;
|
|
101
|
+
/**
|
|
102
|
+
* Set the `floating-ui` useDismiss hook paramns if you need more control
|
|
103
|
+
* https://floating-ui.com/docs/usedismiss
|
|
104
|
+
*/
|
|
105
|
+
useDismissHookProps?: UseDismissProps;
|
|
106
|
+
/**
|
|
107
|
+
* Set to move the arrow along the Y axis from default position (left and right possition)
|
|
108
|
+
*/
|
|
23
109
|
arrowOffsetY?: number;
|
|
110
|
+
/**
|
|
111
|
+
* Set to move the arrow along the X axis from default position (top and bottom possition)
|
|
112
|
+
*/
|
|
24
113
|
arrowOffsetX?: number;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
114
|
+
/**
|
|
115
|
+
* Set to close the tooltip after leaving trigger area in uncontrolled state.
|
|
116
|
+
* Be default, moving the curson from trigger to tooltip will keep it open.
|
|
117
|
+
*/
|
|
118
|
+
closeOnTriggerBlur?: boolean;
|
|
30
119
|
}
|