@ai12z/react 2.0.15 → 2.0.16
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.
|
@@ -10,6 +10,7 @@ export const Ai12zInputForm = createReactComponent('ai12z-input-form');
|
|
|
10
10
|
export const Ai12zKnowledgeBox = createReactComponent('ai12z-knowledge-box');
|
|
11
11
|
export const Ai12zMic = createReactComponent('ai12z-mic');
|
|
12
12
|
export const Ai12zSpinner = createReactComponent('ai12z-spinner');
|
|
13
|
+
export const AudioRecorder = createReactComponent('audio-recorder');
|
|
13
14
|
export const BotPopover = createReactComponent('bot-popover');
|
|
14
15
|
export const ChatbotHistory = createReactComponent('chatbot-history');
|
|
15
16
|
export const ChatbotWelcome = createReactComponent('chatbot-welcome');
|
package/dist/global.css
CHANGED
|
@@ -42,20 +42,27 @@
|
|
|
42
42
|
|
|
43
43
|
--ai12z-dialog-margin: 3rem 0 0 0;
|
|
44
44
|
|
|
45
|
+
--ai12z-knowledge-box-font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
46
|
+
--ai12z-knowledge-box-font-size: 1rem;
|
|
45
47
|
--ai12z-knowledge-box-bg-color: rgb(241 245 249);
|
|
46
48
|
--ai12z-knowledge-box-button-bgcolor: #007bff;
|
|
47
49
|
--ai12z-knowledge-box-button-color: #fff;
|
|
48
50
|
--ai12z-knowledge-box-privacy-color: #64748b;
|
|
49
51
|
--ai12z-knowledge-box-privacy-font-size: 0.875rem;
|
|
50
|
-
--ai12z-knowledge-box-font-size: 1rem;
|
|
51
52
|
|
|
52
|
-
--
|
|
53
|
-
--
|
|
54
|
-
--
|
|
55
|
-
--
|
|
56
|
-
--
|
|
57
|
-
--
|
|
58
|
-
--
|
|
59
|
-
--
|
|
60
|
-
--
|
|
53
|
+
--ai12z-bot-font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
54
|
+
--ai12z-bot-font-size: 1rem;
|
|
55
|
+
--ai12z-bot-primary-color: #fff;
|
|
56
|
+
--ai12z-bot-primary-bgcolor: #007bff;
|
|
57
|
+
--ai12z-bot-secondary-bgcolor: #e0e0e0;
|
|
58
|
+
--ai12z-bot-secondary-color: #333;
|
|
59
|
+
--ai12z-bot-text-mute: #888;
|
|
60
|
+
--ai12z-bot-hover-button-color: #0056b3;
|
|
61
|
+
--ai12z-bot-welcome-bgcolor: #f5f5f5;
|
|
62
|
+
--ai12z-bot-history-text-color: #687882;
|
|
63
|
+
--ai12z-bot-nav-bgcolor: #007bffad;
|
|
64
|
+
--ai12z-bot-followup-bg-color: rgb(30 64 175);
|
|
65
|
+
--ai12z-bot-followup-font-size: 1rem;
|
|
66
|
+
--ai12z-bot-followup-color: rgb(107 114 128);
|
|
67
|
+
--ai12z-bot-privacy-color: #64748b;
|
|
61
68
|
}
|
|
@@ -9,6 +9,7 @@ export declare const Ai12zInputForm: import("react").ForwardRefExoticComponent<J
|
|
|
9
9
|
export declare const Ai12zKnowledgeBox: import("react").ForwardRefExoticComponent<JSX.Ai12zKnowledgeBox & Omit<import("react").HTMLAttributes<HTMLAi12zKnowledgeBoxElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLAi12zKnowledgeBoxElement>>;
|
|
10
10
|
export declare const Ai12zMic: import("react").ForwardRefExoticComponent<JSX.Ai12zMic & Omit<import("react").HTMLAttributes<HTMLAi12zMicElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLAi12zMicElement>>;
|
|
11
11
|
export declare const Ai12zSpinner: import("react").ForwardRefExoticComponent<JSX.Ai12zSpinner & Omit<import("react").HTMLAttributes<HTMLAi12zSpinnerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLAi12zSpinnerElement>>;
|
|
12
|
+
export declare const AudioRecorder: import("react").ForwardRefExoticComponent<JSX.AudioRecorder & Omit<import("react").HTMLAttributes<HTMLAudioRecorderElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLAudioRecorderElement>>;
|
|
12
13
|
export declare const BotPopover: import("react").ForwardRefExoticComponent<JSX.BotPopover & Omit<import("react").HTMLAttributes<HTMLBotPopoverElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLBotPopoverElement>>;
|
|
13
14
|
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>>;
|
|
14
15
|
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,6 +17,7 @@ export const Ai12zInputForm = /*@__PURE__*/createReactComponent<JSX.Ai12zInputFo
|
|
|
17
17
|
export const Ai12zKnowledgeBox = /*@__PURE__*/createReactComponent<JSX.Ai12zKnowledgeBox, HTMLAi12zKnowledgeBoxElement>('ai12z-knowledge-box');
|
|
18
18
|
export const Ai12zMic = /*@__PURE__*/createReactComponent<JSX.Ai12zMic, HTMLAi12zMicElement>('ai12z-mic');
|
|
19
19
|
export const Ai12zSpinner = /*@__PURE__*/createReactComponent<JSX.Ai12zSpinner, HTMLAi12zSpinnerElement>('ai12z-spinner');
|
|
20
|
+
export const AudioRecorder = /*@__PURE__*/createReactComponent<JSX.AudioRecorder, HTMLAudioRecorderElement>('audio-recorder');
|
|
20
21
|
export const BotPopover = /*@__PURE__*/createReactComponent<JSX.BotPopover, HTMLBotPopoverElement>('bot-popover');
|
|
21
22
|
export const ChatbotHistory = /*@__PURE__*/createReactComponent<JSX.ChatbotHistory, HTMLChatbotHistoryElement>('chatbot-history');
|
|
22
23
|
export const ChatbotWelcome = /*@__PURE__*/createReactComponent<JSX.ChatbotWelcome, HTMLChatbotWelcomeElement>('chatbot-welcome');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai12z/react",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.16",
|
|
4
4
|
"description": "ai12z React Library",
|
|
5
5
|
"author": "Alpesh Patel <alpesh@ai12z.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"tsc": "tsc -p . --outDir ./dist"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"ai12z": "^2.0.
|
|
25
|
+
"ai12z": "^2.0.16"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/react": "^18.2.55",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "8c7d51fd56a097cc74904c1de485868c6aec04f4"
|
|
37
37
|
}
|