@ai12z/react 3.2.1-alpha.1 → 3.2.1-alpha.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.
|
@@ -17,6 +17,7 @@ export const BotPopover = createReactComponent('bot-popover');
|
|
|
17
17
|
export const ChatbotHistory = createReactComponent('chatbot-history');
|
|
18
18
|
export const ChatbotWelcome = createReactComponent('chatbot-welcome');
|
|
19
19
|
export const DynamicForm = createReactComponent('dynamic-form');
|
|
20
|
+
export const ImageUploader = createReactComponent('image-uploader');
|
|
20
21
|
export const ItemList = createReactComponent('item-list');
|
|
21
22
|
export const ListData = createReactComponent('list-data');
|
|
22
23
|
export const PrivacyModal = createReactComponent('privacy-modal');
|
|
@@ -15,6 +15,7 @@ export declare const BotPopover: import("react").ForwardRefExoticComponent<JSX.B
|
|
|
15
15
|
export declare const ChatbotHistory: import("react").ForwardRefExoticComponent<JSX.ChatbotHistory & Omit<import("react").HTMLAttributes<HTMLChatbotHistoryElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLChatbotHistoryElement>>;
|
|
16
16
|
export declare const ChatbotWelcome: import("react").ForwardRefExoticComponent<JSX.ChatbotWelcome & Omit<import("react").HTMLAttributes<HTMLChatbotWelcomeElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLChatbotWelcomeElement>>;
|
|
17
17
|
export declare const DynamicForm: import("react").ForwardRefExoticComponent<JSX.DynamicForm & Omit<import("react").HTMLAttributes<HTMLDynamicFormElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLDynamicFormElement>>;
|
|
18
|
+
export declare const ImageUploader: import("react").ForwardRefExoticComponent<JSX.ImageUploader & Omit<import("react").HTMLAttributes<HTMLImageUploaderElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLImageUploaderElement>>;
|
|
18
19
|
export declare const ItemList: import("react").ForwardRefExoticComponent<JSX.ItemList & Omit<import("react").HTMLAttributes<HTMLItemListElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLItemListElement>>;
|
|
19
20
|
export declare const ListData: import("react").ForwardRefExoticComponent<JSX.ListData & Omit<import("react").HTMLAttributes<HTMLListDataElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLListDataElement>>;
|
|
20
21
|
export declare const PrivacyModal: import("react").ForwardRefExoticComponent<JSX.PrivacyModal & Omit<import("react").HTMLAttributes<HTMLPrivacyModalElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLPrivacyModalElement>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai12z/react",
|
|
3
|
-
"version": "3.2.1-alpha.
|
|
3
|
+
"version": "3.2.1-alpha.3",
|
|
4
4
|
"description": "ai12z React Library",
|
|
5
5
|
"author": "Alpesh Patel <alpesh@ai12z.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"tsc": "tsc -p . --outDir ./dist"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"ai12z": "^3.2.1-alpha.
|
|
23
|
+
"ai12z": "^3.2.1-alpha.3"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/react": "^18.2.55",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "17679c6ea8cdcd3d83fb63b413f71c02cec15ac1"
|
|
35
35
|
}
|