@mindly/ui-components 3.5.1 → 3.5.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.
@@ -65,3 +65,5 @@ export { default as Textarea } from './lib/Chat/Textarea';
65
65
  export * from './lib/Chat/Textarea';
66
66
  export { default as LouseConnect } from './lib/Chat/LouseConnect';
67
67
  export * from './lib/Chat/LouseConnect';
68
+ export { default as UpdatesCard } from './lib/UpdatesCard';
69
+ export * from './lib/UpdatesCard';
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ import { ButtonProps } from '../button/Button';
3
+ export declare type UpdatesPopupPropsType = {
4
+ text?: string;
5
+ buttonHandler?: () => void;
6
+ closeHandler?: () => void;
7
+ buttonType?: Extract<ButtonProps, 'buttonType'>;
8
+ disabledButton?: Extract<ButtonProps, 'isDisabled'>;
9
+ };
10
+ declare const UpdatesCard: React.FC<UpdatesPopupPropsType>;
11
+ export default UpdatesCard;
@@ -0,0 +1 @@
1
+ export { default } from './UpdatesCard';