@livechat/design-system-react-components 2.27.0 → 2.27.2
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/UserGuide/components/UserGuideBubbleStep/types.d.ts +8 -0
- package/dist/components/UserGuide/components/UserGuideStep/types.d.ts +8 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +2957 -3019
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/dist/components/PromoBanner/PromoBanner.d.ts +0 -43
- package/dist/components/PromoBanner/index.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@livechat/design-system-react-components",
|
|
3
|
-
"version": "2.27.
|
|
3
|
+
"version": "2.27.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"react-transition-group": "^4.4.2",
|
|
87
87
|
"react-virtuoso": "^4.7.11"
|
|
88
88
|
},
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "3344edb3e644ced6cbbb26f8065cda27b7ab9e6f"
|
|
90
90
|
}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
export interface PromoBannerProps {
|
|
3
|
-
/**
|
|
4
|
-
* Specify an optional className to be applied to the container node
|
|
5
|
-
*/
|
|
6
|
-
className?: string;
|
|
7
|
-
/**
|
|
8
|
-
* Set the primary button text
|
|
9
|
-
*/
|
|
10
|
-
buttonText?: string;
|
|
11
|
-
/**
|
|
12
|
-
* Set the header text
|
|
13
|
-
*/
|
|
14
|
-
header: string;
|
|
15
|
-
/**
|
|
16
|
-
* Set the image source to display it
|
|
17
|
-
*/
|
|
18
|
-
img?: string;
|
|
19
|
-
/**
|
|
20
|
-
* Specify whether the banner should use a light-themed design
|
|
21
|
-
*/
|
|
22
|
-
light?: boolean;
|
|
23
|
-
/**
|
|
24
|
-
* Set the link button text
|
|
25
|
-
*/
|
|
26
|
-
linkText?: string;
|
|
27
|
-
/**
|
|
28
|
-
* Event handler for primary button press
|
|
29
|
-
*/
|
|
30
|
-
onButtonClick?: () => void;
|
|
31
|
-
/**
|
|
32
|
-
* Event handler for close button press
|
|
33
|
-
*/
|
|
34
|
-
onClose?: () => void;
|
|
35
|
-
/**
|
|
36
|
-
* Event handler for link button press
|
|
37
|
-
*/
|
|
38
|
-
onLinkClick?: () => void;
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* @deprecated Since version 1.0.0. Will be deleted in version 2.0.0. Use {@link PromoBannerV2} instead.
|
|
42
|
-
*/
|
|
43
|
-
export declare const PromoBanner: React.FC<React.PropsWithChildren<PromoBannerProps>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { PromoBanner } from './PromoBanner';
|