@connectycube/chat-widget 0.12.0 → 0.13.0

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,7 @@
1
+ export type QuickActions = {
2
+ title?: string;
3
+ description?: string;
4
+ actions: string[];
5
+ };
6
+ export declare const quickActions: import('redux').Reducer<QuickActions>;
7
+ export declare const setQuickActions: import('@reduxjs/toolkit').ActionCreatorWithPayload<QuickActions, "quickActions/setQuickActions">, resetQuickActions: import('@reduxjs/toolkit').ActionCreatorWithoutPayload<"quickActions/resetQuickActions">;
@@ -6,6 +6,7 @@ export declare const rootReducer: import('redux').Reducer<{
6
6
  draftMessages: {
7
7
  [dialogId: string]: string;
8
8
  };
9
+ quickActions: import('./slices/quickActions').QuickActions;
9
10
  }, import('redux').UnknownAction, Partial<{
10
11
  unreadCount: number | undefined;
11
12
  muted: boolean | undefined;
@@ -14,6 +15,7 @@ export declare const rootReducer: import('redux').Reducer<{
14
15
  draftMessages: {
15
16
  [dialogId: string]: string;
16
17
  } | undefined;
18
+ quickActions: import('./slices/quickActions').QuickActions | undefined;
17
19
  }>>;
18
20
  export declare const store: import('@reduxjs/toolkit').EnhancedStore<{
19
21
  unreadCount: number;
@@ -23,6 +25,7 @@ export declare const store: import('@reduxjs/toolkit').EnhancedStore<{
23
25
  draftMessages: {
24
26
  [dialogId: string]: string;
25
27
  };
28
+ quickActions: import('./slices/quickActions').QuickActions;
26
29
  }, import('redux').UnknownAction, import('@reduxjs/toolkit').Tuple<[import('redux').StoreEnhancer<{
27
30
  dispatch: import('redux-thunk').ThunkDispatch<{
28
31
  unreadCount: number;
@@ -32,6 +35,7 @@ export declare const store: import('@reduxjs/toolkit').EnhancedStore<{
32
35
  draftMessages: {
33
36
  [dialogId: string]: string;
34
37
  };
38
+ quickActions: import('./slices/quickActions').QuickActions;
35
39
  }, undefined, import('redux').UnknownAction>;
36
40
  }>, import('redux').StoreEnhancer]>>;
37
41
  export type AppDispatch = typeof store.dispatch;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@connectycube/chat-widget",
3
3
  "description": "A React component that seamlessly integrates ConnectyCube's real-time chat capabilities into your web applications. This widget offers an out-of-the-box solution for embedding chat features—such as instant messaging, user presence, and file sharing—without the overhead of building a complete chat system from scratch.",
4
- "version": "0.12.0",
4
+ "version": "0.13.0",
5
5
  "keywords": [
6
6
  "chat-widget",
7
7
  "widget",
@@ -93,16 +93,16 @@
93
93
  "eslint-plugin-react-refresh": "^0.4.19",
94
94
  "globals": "^15.14.0",
95
95
  "npm-run-all": "^4.1.5",
96
- "postcss": "^8.5.1",
96
+ "postcss": "^8.5.2",
97
97
  "prettier": "3.5.0",
98
98
  "tailwind-merge": "^2.6.0",
99
99
  "tailwindcss": "^3.4.17",
100
100
  "tailwindcss-animate": "^1.0.7",
101
101
  "typescript": "~5.7.3",
102
- "typescript-eslint": "^8.23.0",
102
+ "typescript-eslint": "^8.24.0",
103
103
  "vite": "^6.1.0",
104
104
  "vite-plugin-css-injected-by-js": "^3.5.2",
105
105
  "vite-plugin-dts": "^4.5.0",
106
106
  "vitest": "^3.0.5"
107
107
  }
108
- }
108
+ }