@mindly/ui-components 5.92.3 → 5.93.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.
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- type CardModalProps = {
2
+ export type CardModalProps = {
3
3
  isOpen: boolean;
4
4
  title?: string;
5
5
  subtitle?: string;
@@ -0,0 +1,8 @@
1
+ import { FC } from 'react';
2
+ import { CardModalProps } from '../CardModal/CardModal';
3
+ type EmptyChatModalFeatureProps = {
4
+ buttonTitle?: string;
5
+ onButtonClick?: () => void;
6
+ } & CardModalProps;
7
+ declare const EmptyChatModalFeature: FC<EmptyChatModalFeatureProps>;
8
+ export default EmptyChatModalFeature;
@@ -0,0 +1 @@
1
+ export { default as EmptyChatModalFeature } from './EmptyChatModalFeature';
@@ -0,0 +1,11 @@
1
+ import { FC } from 'react';
2
+ import { CardModalProps } from '../CardModal/CardModal';
3
+ import { TextAreaFormFeatureProps } from '../TextAreaFormFeature/TextAreaFormFeature';
4
+ type FirstChatMessageModalFeatureProps = {
5
+ avatarUrl?: string;
6
+ title?: string;
7
+ modalProps: CardModalProps;
8
+ inputProps?: TextAreaFormFeatureProps;
9
+ };
10
+ declare const FirstChatMessageModalFeature: FC<FirstChatMessageModalFeatureProps>;
11
+ export default FirstChatMessageModalFeature;
@@ -0,0 +1 @@
1
+ export { default as FirstChatMessageModalFeature } from './FirstChatMessageModalFeature';
@@ -1,5 +1,5 @@
1
- import React from 'react';
2
- type TextAreaFormFeatureProps = {
1
+ import React, { FC } from 'react';
2
+ export type TextAreaFormFeatureProps = {
3
3
  title?: string;
4
4
  subtitle?: string;
5
5
  placeholder?: string;
@@ -10,6 +10,8 @@ type TextAreaFormFeatureProps = {
10
10
  isLoading?: boolean;
11
11
  isFocus?: boolean;
12
12
  isKeyboardShown?: boolean;
13
+ maxlength?: number;
14
+ HeaderComponent?: FC;
13
15
  };
14
16
  declare const _default: React.NamedExoticComponent<TextAreaFormFeatureProps>;
15
17
  export default _default;
@@ -36,3 +36,5 @@ export * from './SpecialistEducationsFeature';
36
36
  export * from './SpecialistPreviewFeature';
37
37
  export * from './AppHeaderPageFeature';
38
38
  export * from './TabsToolbarFeature';
39
+ export * from './EmptyChatModalFeature';
40
+ export * from './FirstChatMessageModalFeature';
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare const IconChat3dSmaller: (props: SVGProps<SVGSVGElement>) => JSX.Element;
@@ -39,6 +39,7 @@ export * from './IconCreditCard';
39
39
  export * from './IconQuestion';
40
40
  export * from './IconPaper';
41
41
  export * from './IconChat3d';
42
+ export * from './IconChat3dSmaller';
42
43
  export * from './IconNotficationMuted';
43
44
  export * from './IconCheckSmall';
44
45
  export * from './IconCheck';