@ai12z/react 3.0.6 → 3.0.7
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.
|
@@ -19,4 +19,5 @@ export const ChatbotWelcome = createReactComponent('chatbot-welcome');
|
|
|
19
19
|
export const DynamicForm = createReactComponent('dynamic-form');
|
|
20
20
|
export const ItemList = createReactComponent('item-list');
|
|
21
21
|
export const ListData = createReactComponent('list-data');
|
|
22
|
+
export const PrivacyModal = createReactComponent('privacy-modal');
|
|
22
23
|
export const SearchResultsPage = createReactComponent('search-results-page');
|
package/dist/global.css
CHANGED
|
@@ -84,6 +84,11 @@
|
|
|
84
84
|
--ai12z-bot-followup-color: rgb(107 114 128);
|
|
85
85
|
--ai12z-bot-privacy-color: #64748b;
|
|
86
86
|
|
|
87
|
+
--ai12zBot-v2-privacy-text-color: #000;
|
|
88
|
+
--ai12zBot-v2-privacy-text-font-size: 16px;
|
|
89
|
+
--ai12zBot-v2-privacy-link-color: #fff;
|
|
90
|
+
--ai12zBot-v2-privacy-link-font-size: 16px;
|
|
91
|
+
|
|
87
92
|
--ai12zBot-v2-title-color: #2095ae;
|
|
88
93
|
--ai12zBot-v2-title-font-size: 20px;
|
|
89
94
|
--ai12zBot-v2-link-color: #2095ae;
|
|
@@ -18,4 +18,5 @@ export declare const ChatbotWelcome: import("react").ForwardRefExoticComponent<J
|
|
|
18
18
|
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>>;
|
|
19
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>>;
|
|
20
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>>;
|
|
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>>;
|
|
21
22
|
export declare const SearchResultsPage: import("react").ForwardRefExoticComponent<JSX.SearchResultsPage & Omit<import("react").HTMLAttributes<HTMLSearchResultsPageElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLSearchResultsPageElement>>;
|
|
@@ -26,4 +26,5 @@ export const ChatbotWelcome = /*@__PURE__*/createReactComponent<JSX.ChatbotWelco
|
|
|
26
26
|
export const DynamicForm = /*@__PURE__*/createReactComponent<JSX.DynamicForm, HTMLDynamicFormElement>('dynamic-form');
|
|
27
27
|
export const ItemList = /*@__PURE__*/createReactComponent<JSX.ItemList, HTMLItemListElement>('item-list');
|
|
28
28
|
export const ListData = /*@__PURE__*/createReactComponent<JSX.ListData, HTMLListDataElement>('list-data');
|
|
29
|
+
export const PrivacyModal = /*@__PURE__*/createReactComponent<JSX.PrivacyModal, HTMLPrivacyModalElement>('privacy-modal');
|
|
29
30
|
export const SearchResultsPage = /*@__PURE__*/createReactComponent<JSX.SearchResultsPage, HTMLSearchResultsPageElement>('search-results-page');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai12z/react",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.7",
|
|
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": "^3.0.
|
|
25
|
+
"ai12z": "^3.0.7"
|
|
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": "86ae5aa5c1c8334c8bc4164d2651a09bbe5ec1fc"
|
|
37
37
|
}
|