@livechat/design-system-react-components 1.28.2 → 1.28.3
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.
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface IActionModalProps {
|
|
3
|
+
/**
|
|
4
|
+
* Optional element to render icon or image
|
|
5
|
+
*/
|
|
6
|
+
icon?: React.ReactNode;
|
|
7
|
+
/**
|
|
8
|
+
* Set the header text
|
|
9
|
+
*/
|
|
10
|
+
heading?: React.ReactNode;
|
|
11
|
+
/**
|
|
12
|
+
* Optional element to render action buttons
|
|
13
|
+
*/
|
|
14
|
+
actions?: React.ReactNode;
|
|
15
|
+
/**
|
|
16
|
+
* The CSS class for main container
|
|
17
|
+
*/
|
|
18
|
+
className?: string;
|
|
19
|
+
/**
|
|
20
|
+
* The CSS class for header container
|
|
21
|
+
*/
|
|
22
|
+
headerClassName?: string;
|
|
23
|
+
/**
|
|
24
|
+
* The CSS class for content container
|
|
25
|
+
*/
|
|
26
|
+
contentClassName?: string;
|
|
27
|
+
}
|
|
28
|
+
export declare const ActionModalContent: React.FC<IActionModalProps>;
|
|
29
|
+
export {};
|
|
@@ -363,5 +363,7 @@ export declare const DesignToken: {
|
|
|
363
363
|
OnePopoverMessageBackgroundDefault: string;
|
|
364
364
|
OnePopoverBorderDefault: string;
|
|
365
365
|
OnePopoverBorderActive: string;
|
|
366
|
+
OneTooltipBackground: string;
|
|
367
|
+
ContentBasicAutofill: string;
|
|
366
368
|
};
|
|
367
369
|
export type DesignTokenKey = keyof typeof DesignToken;
|