@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livechat/design-system-react-components",
3
- "version": "2.27.0",
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": "32191feacc900bff6604d2b7c1e68771bb41f0b8"
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';