@mindly/ui-components 5.92.4 → 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.
- package/dist/cjs/index.js +7 -7
- package/dist/cjs/lib2/features/CardModal/CardModal.d.ts +1 -1
- package/dist/cjs/lib2/features/EmptyChatModalFeature/EmptyChatModalFeature.d.ts +8 -0
- package/dist/cjs/lib2/features/EmptyChatModalFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/FirstChatMessageModalFeature/FirstChatMessageModalFeature.d.ts +11 -0
- package/dist/cjs/lib2/features/FirstChatMessageModalFeature/index.d.ts +1 -0
- package/dist/cjs/lib2/features/TextAreaFormFeature/TextAreaFormFeature.d.ts +4 -2
- package/dist/cjs/lib2/features/index.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/IconChat3dSmaller.d.ts +2 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/esm/index.js +7 -7
- package/dist/esm/lib2/features/CardModal/CardModal.d.ts +1 -1
- package/dist/esm/lib2/features/EmptyChatModalFeature/EmptyChatModalFeature.d.ts +8 -0
- package/dist/esm/lib2/features/EmptyChatModalFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/FirstChatMessageModalFeature/FirstChatMessageModalFeature.d.ts +11 -0
- package/dist/esm/lib2/features/FirstChatMessageModalFeature/index.d.ts +1 -0
- package/dist/esm/lib2/features/TextAreaFormFeature/TextAreaFormFeature.d.ts +4 -2
- package/dist/esm/lib2/features/index.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/IconChat3dSmaller.d.ts +2 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +1 -0
- package/dist/index.d.ts +19 -1
- package/package.json +1 -1
|
@@ -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';
|
|
@@ -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';
|