@app-studio/web 0.9.11 → 0.9.12
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/Formik/Formik.ChatInput.d.ts +12 -0
- package/dist/components/Formik/Formik.TagInput.d.ts +3 -1
- package/dist/components/Formik/examples/FormikChatInput.d.ts +3 -0
- package/dist/components/Formik/examples/index.d.ts +1 -0
- package/dist/components/Formik/index.d.ts +2 -0
- package/dist/web.cjs.development.js +12688 -12574
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +12688 -12576
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +12689 -12575
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ChatInputProps } from '../ChatInput/ChatInput/ChatInput.props';
|
|
3
|
+
interface FormikChatInputProps extends Omit<ChatInputProps, 'value' | 'onChange' | 'onSubmit' | 'getPendingFiles' | 'clearPendingFiles'> {
|
|
4
|
+
name: string;
|
|
5
|
+
onSubmit?: (message: string, options?: any) => void;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* ChatInput is a component used to create a chat input field with file upload support,
|
|
9
|
+
* auto-completion, mentions, and other advanced features, integrated with Formik.
|
|
10
|
+
*/
|
|
11
|
+
export declare const FormikChatInput: React.FC<FormikChatInputProps>;
|
|
12
|
+
export {};
|
|
@@ -4,4 +4,6 @@ import { TagInputProps } from '../Form/TagInput/TagInput/TagInput.props';
|
|
|
4
4
|
* TagInput allows users to add and manage a list of tags.
|
|
5
5
|
* Integrated with Formik for form validation and state management.
|
|
6
6
|
*/
|
|
7
|
-
export declare const FormikTagInput: React.FC<TagInputProps
|
|
7
|
+
export declare const FormikTagInput: React.FC<TagInputProps & {
|
|
8
|
+
name: string;
|
|
9
|
+
}>;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export { FormikCheckbox } from './Formik.Checkbox';
|
|
2
|
+
export { FormikChatInput } from './Formik.ChatInput';
|
|
2
3
|
export { FormikColorInput } from './Formik.ColorInput';
|
|
3
4
|
export { FormikDatePicker } from './Formik.DatePicker';
|
|
4
5
|
export { FormikCountryPicker } from './Formik.CountryPicker';
|
|
5
6
|
export { FormikSelect } from './Formik.Select';
|
|
6
7
|
export { FormikSwitch } from './Formik.Switch';
|
|
8
|
+
export { FormikTagInput } from './Formik.TagInput';
|
|
7
9
|
export { FormikTextArea } from './Formik.TextArea';
|
|
8
10
|
export { FormikTextField } from './Formik.TextField';
|
|
9
11
|
export { FormikPassword } from './Formik.Password';
|