@debales/ai 1.1.14-canary.2 → 1.1.14-canary.4

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.
@@ -0,0 +1,5 @@
1
+ interface CartSummaryProps {
2
+ onCheckout?: (e: React.MouseEvent) => void;
3
+ }
4
+ export declare const CartSummaryOldStyle: React.FC<CartSummaryProps>;
5
+ export default CartSummaryOldStyle;
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ interface CartSummaryProps {
3
+ onCheckout?: (e: React.MouseEvent) => void;
4
+ onKeepShopping?: (e: React.MouseEvent) => void;
5
+ }
6
+ declare const DetailedCartSummery: React.FC<CartSummaryProps>;
7
+ export default DetailedCartSummery;
@@ -0,0 +1,6 @@
1
+ interface CartSummaryProps {
2
+ onCheckout?: (e: React.MouseEvent) => void;
3
+ onKeepShopping?: () => void;
4
+ }
5
+ declare const CartSummary: React.FC<CartSummaryProps>;
6
+ export default CartSummary;
@@ -0,0 +1,3 @@
1
+ export declare const MessageComponent: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
2
+ isBot: boolean;
3
+ }>> & string;
@@ -9,4 +9,5 @@ export declare const STORAGE_KEY_PURPOSE: {
9
9
  SESSION_ID: string;
10
10
  USER_INFO: string;
11
11
  IS_FORM_CLOSED_BY_USER: string;
12
+ SHOW_CART_SUMMARY: string;
12
13
  };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@debales/ai",
3
3
  "private": false,
4
4
  "access": "public",
5
- "version": "1.1.14-canary.2",
5
+ "version": "1.1.14-canary.4",
6
6
  "type": "module",
7
7
  "main": "./dist/module/ai.js",
8
8
  "types": "./dist/module/index.d.ts",
@@ -21,6 +21,7 @@
21
21
  ],
22
22
  "dependencies": {
23
23
  "@uidotdev/usehooks": "^2.4.1",
24
+ "colord": "^2.9.3",
24
25
  "embla-carousel-react": "^8.6.0",
25
26
  "lucide-react": "^0.487.0",
26
27
  "mixpanel-browser": "^2.63.0",
@@ -51,8 +52,8 @@
51
52
  "vite": "^6.2.0",
52
53
  "vite-plugin-dts": "^4.5.3",
53
54
  "@debales/eslint-config": "0.0.0",
54
- "@debales/typescript-config": "0.0.0",
55
- "@debales/shared": "0.0.1"
55
+ "@debales/shared": "0.0.1",
56
+ "@debales/typescript-config": "0.0.0"
56
57
  },
57
58
  "peerDependencies": {
58
59
  "react": "^18.0.0 || ^19.0.0",