@ai12z/react 3.1.0-rc.7 → 3.1.0-rc.9

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/global.css CHANGED
@@ -92,6 +92,8 @@
92
92
  --ai12zBot-v2-back-button-color: #2095ae;
93
93
  --ai12zBot-v2-title-color: #2095ae;
94
94
  --ai12zBot-v2-title-font-size: 20px;
95
+ --ai12zBot-v2-bot-name-color: #fff;
96
+ --ai12zBot-v2-bot-name-font-weight: 500;
95
97
  --ai12zBot-v2-link-color: #2095ae;
96
98
  --ai12zBot-v2-link-hover-color: #2095ae;
97
99
  --ai12zBot-v2-toolbar-icon-color: #2095ae;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { JSX } from 'ai12z';
3
2
  export declare const Ai12zBot: import("react").ForwardRefExoticComponent<JSX.Ai12zBot & Omit<import("react").HTMLAttributes<HTMLAi12zBotElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLAi12zBotElement>>;
4
3
  export declare const Ai12zCarousel: import("react").ForwardRefExoticComponent<JSX.Ai12zCarousel & Omit<import("react").HTMLAttributes<HTMLAi12zCarouselElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLAi12zCarouselElement>>;
@@ -4,6 +4,6 @@ export declare const transformReactEventName: (eventNameSuffix: string) => strin
4
4
  export declare const isCoveredByReact: (eventNameSuffix: string) => boolean;
5
5
  export declare const syncEvent: (node: Element & {
6
6
  __events?: {
7
- [key: string]: (e: Event) => any;
7
+ [key: string]: ((e: Event) => any) | undefined;
8
8
  };
9
9
  }, eventName: string, newEventHandler?: (e: Event) => any) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai12z/react",
3
- "version": "3.1.0-rc.7",
3
+ "version": "3.1.0-rc.9",
4
4
  "description": "ai12z React Library",
5
5
  "author": "Alpesh Patel <alpesh@ai12z.com>",
6
6
  "homepage": "",
@@ -9,8 +9,7 @@
9
9
  "module": "dist/index.js",
10
10
  "types": "dist/types/index.d.ts",
11
11
  "directories": {
12
- "lib": "dist",
13
- "test": "__tests__"
12
+ "lib": "dist"
14
13
  },
15
14
  "files": [
16
15
  "dist"
@@ -21,7 +20,7 @@
21
20
  "tsc": "tsc -p . --outDir ./dist"
22
21
  },
23
22
  "dependencies": {
24
- "ai12z": "^3.1.1-rc.0"
23
+ "ai12z": "^3.1.0-rc.9"
25
24
  },
26
25
  "devDependencies": {
27
26
  "@types/react": "^18.2.55",
@@ -32,5 +31,5 @@
32
31
  "publishConfig": {
33
32
  "access": "public"
34
33
  },
35
- "gitHead": "e7878b22f06ebbafbf6cf1bb3d060be3cfc6b3a0"
34
+ "gitHead": "b65d195f04e80aed54f257d5228f06666a5c49e3"
36
35
  }