@connectycube/chat-widget 0.28.0 → 0.29.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.
- package/CHANGELOG.md +9 -1
- package/README.md +7 -0
- package/dist/index.es.js +12378 -11878
- package/dist/index.umd.js +76 -76
- package/dist/react19/index.es.js +12162 -11662
- package/dist/react19/types/components/calls/calls-confirm-incoming.d.ts +2 -0
- package/dist/react19/types/components/calls/calls-fullscreen-stream.d.ts +6 -0
- package/dist/react19/types/components/calls/calls-header-buttons.d.ts +3 -0
- package/dist/react19/types/components/calls/calls-modal-screen.d.ts +2 -0
- package/dist/react19/types/components/calls/calls-navigation/calls-nav-buttons.d.ts +5 -0
- package/dist/react19/types/components/calls/calls-navigation/calls-nav-hung-up.d.ts +2 -0
- package/dist/react19/types/components/calls/calls-navigation/calls-nav-screen-share.d.ts +2 -0
- package/dist/react19/types/components/calls/calls-navigation/calls-nav-toggle-camera.d.ts +2 -0
- package/dist/react19/types/components/calls/calls-navigation/calls-nav-toggle-mic.d.ts +2 -0
- package/dist/react19/types/components/home/main/chat-header/chat-header-avatar.d.ts +3 -0
- package/dist/react19/types/components/home/main/chat-header/chat-header-back-button.d.ts +3 -0
- package/dist/react19/types/components/home/main/chat-header/chat-header-buttons.d.ts +3 -0
- package/dist/react19/types/components/home/main/chat-header/chat-header-titles.d.ts +3 -0
- package/dist/react19/types/components/home/main/chat-header/chat-header.d.ts +3 -0
- package/dist/react19/types/components/widget/widget-calls.d.ts +2 -0
- package/dist/react19/types/helpers/connectycube.d.ts +1 -0
- package/dist/react19/types/hooks/index.d.ts +1 -0
- package/dist/react19/types/hooks/store/useAppSettingsStore.d.ts +3 -0
- package/dist/react19/types/hooks/useAppPresets.d.ts +2 -1
- package/dist/react19/types/hooks/useAudio.d.ts +6 -0
- package/dist/react19/types/locales/el/translation.json.d.ts +7 -1
- package/dist/react19/types/locales/en/translation.json.d.ts +7 -1
- package/dist/react19/types/locales/ua/translation.json.d.ts +7 -1
- package/dist/types/components/calls/calls-confirm-incoming.d.ts +2 -0
- package/dist/types/components/calls/calls-fullscreen-stream.d.ts +6 -0
- package/dist/types/components/calls/calls-header-buttons.d.ts +3 -0
- package/dist/types/components/calls/calls-modal-screen.d.ts +2 -0
- package/dist/types/components/calls/calls-navigation/calls-nav-buttons.d.ts +5 -0
- package/dist/types/components/calls/calls-navigation/calls-nav-hung-up.d.ts +2 -0
- package/dist/types/components/calls/calls-navigation/calls-nav-screen-share.d.ts +2 -0
- package/dist/types/components/calls/calls-navigation/calls-nav-toggle-camera.d.ts +2 -0
- package/dist/types/components/calls/calls-navigation/calls-nav-toggle-mic.d.ts +2 -0
- package/dist/types/components/home/main/chat-header/chat-header-avatar.d.ts +3 -0
- package/dist/types/components/home/main/chat-header/chat-header-back-button.d.ts +3 -0
- package/dist/types/components/home/main/chat-header/chat-header-buttons.d.ts +3 -0
- package/dist/types/components/home/main/chat-header/chat-header-titles.d.ts +3 -0
- package/dist/types/components/home/main/chat-header/chat-header.d.ts +3 -0
- package/dist/types/components/widget/widget-calls.d.ts +2 -0
- package/dist/types/helpers/connectycube.d.ts +1 -0
- package/dist/types/hooks/index.d.ts +1 -0
- package/dist/types/hooks/store/useAppSettingsStore.d.ts +3 -0
- package/dist/types/hooks/useAppPresets.d.ts +2 -1
- package/dist/types/hooks/useAudio.d.ts +6 -0
- package/dist/types/locales/el/translation.json.d.ts +7 -1
- package/dist/types/locales/en/translation.json.d.ts +7 -1
- package/dist/types/locales/ua/translation.json.d.ts +7 -1
- package/package.json +15 -14
|
@@ -44,3 +44,4 @@ export declare const generateConnectyCubeLogin: (userId?: string) => string;
|
|
|
44
44
|
export declare const createUserReport: (reportedUserId: number, reason: string) => Promise<import("connectycube/types").Data.DataRecord>;
|
|
45
45
|
export declare const subscribeToPushNotifications: (pushSubscriptionData?: PushSubscriptionData) => Promise<PushNotifications.Subscription | undefined>;
|
|
46
46
|
export declare const unsubscribeFromPushNotifications: () => Promise<EmptyResponse[]>;
|
|
47
|
+
export declare const isCallsSupported: boolean;
|
|
@@ -15,6 +15,7 @@ export { default as useUnreadCountStore } from './store/useUnreadCountStore';
|
|
|
15
15
|
export { default as useUserSettingsStore } from './store/useUserSettingsStore';
|
|
16
16
|
export { default as useAppAuthorization } from './useAppAuthorization';
|
|
17
17
|
export { default as useAppPresets } from './useAppPresets';
|
|
18
|
+
export { default as useAudio } from './useAudio';
|
|
18
19
|
export { default as useLastActivity } from './useLastActivity';
|
|
19
20
|
export { default as useNotification } from './useNotification';
|
|
20
21
|
export { default as usePageFocus } from './usePageFocus';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export type AppSettingStoreProps = {
|
|
2
2
|
attachmentsAccept: string;
|
|
3
3
|
attachmentsAcceptList: string[];
|
|
4
|
+
enableCalls: boolean;
|
|
4
5
|
enableUserStatuses: boolean;
|
|
5
6
|
enableLastSeen: boolean;
|
|
6
7
|
enableContentReporting: boolean;
|
|
@@ -10,6 +11,7 @@ export type AppSettingStoreProps = {
|
|
|
10
11
|
};
|
|
11
12
|
export interface AppSettingStoreState extends AppSettingStoreProps {
|
|
12
13
|
setAttachmentsAccept: (attachmentsAccept: string) => void;
|
|
14
|
+
setEnableCalls: (enableCalls: boolean) => void;
|
|
13
15
|
setEnableUserStatuses: (enableUserStatuses: boolean) => void;
|
|
14
16
|
setEnableLastSeen: (enableLastSeen: boolean) => void;
|
|
15
17
|
setEnableContentReporting: (enableContentReporting: boolean) => void;
|
|
@@ -17,6 +19,7 @@ export interface AppSettingStoreState extends AppSettingStoreProps {
|
|
|
17
19
|
setEnableUrlPreview: (enableUrlPreview: boolean) => void;
|
|
18
20
|
setLimitUrlsPreviews: (limitUrlsPreviews: number) => void;
|
|
19
21
|
resetAttachmentsAccept: () => void;
|
|
22
|
+
resetEnableCalls: () => void;
|
|
20
23
|
resetEnableUserStatuses: () => void;
|
|
21
24
|
resetEnableLastSeen: () => void;
|
|
22
25
|
resetEnableContentReporting: () => void;
|
|
@@ -16,6 +16,7 @@ export type AppPresets = {
|
|
|
16
16
|
webPushVapidPublicKey?: string;
|
|
17
17
|
serviceWorkerPath?: string | URL;
|
|
18
18
|
attachmentsAccept?: string;
|
|
19
|
+
enableCalls?: boolean;
|
|
19
20
|
enableUserStatuses?: boolean;
|
|
20
21
|
enableLastSeen?: boolean;
|
|
21
22
|
enableContentReporting?: boolean;
|
|
@@ -30,5 +31,5 @@ export type AppPresets = {
|
|
|
30
31
|
onOnlineUsersCountChange?: (count: number) => void;
|
|
31
32
|
onOpenChange?: (open: boolean) => void;
|
|
32
33
|
};
|
|
33
|
-
declare const useAppPresets: ({ embedView, open, splitView, showChatStatus, showOnlineUsersTab, hideNewChatButton, hideNewUserChatOption, hideNewGroupChatOption, muted, showNotifications, playSound, webPushNotifications, serviceWorkerPath, webPushVapidPublicKey, attachmentsAccept, enableUserStatuses, enableLastSeen, enableContentReporting, enableBlockList, enableUrlPreview, limitUrlsPreviews, quickActions, defaultChat, enableOnlineUsersBadge, getOnlineUsersInterval, onUnreadCountChange, onOnlineUsersCountChange, onOpenChange, }: AppPresets) => void;
|
|
34
|
+
declare const useAppPresets: ({ embedView, open, splitView, showChatStatus, showOnlineUsersTab, hideNewChatButton, hideNewUserChatOption, hideNewGroupChatOption, muted, showNotifications, playSound, webPushNotifications, serviceWorkerPath, webPushVapidPublicKey, attachmentsAccept, enableCalls, enableUserStatuses, enableLastSeen, enableContentReporting, enableBlockList, enableUrlPreview, limitUrlsPreviews, quickActions, defaultChat, enableOnlineUsersBadge, getOnlineUsersInterval, onUnreadCountChange, onOnlineUsersCountChange, onOpenChange, }: AppPresets) => void;
|
|
34
35
|
export default useAppPresets;
|
|
@@ -62,7 +62,13 @@ declare const _default: {
|
|
|
62
62
|
"Available": "Διαθέσιμος/η",
|
|
63
63
|
"Busy": "Απασχολημένος/η",
|
|
64
64
|
"Away": "Απουσιάζω",
|
|
65
|
-
"Online": "Συνδεδεμένος/η"
|
|
65
|
+
"Online": "Συνδεδεμένος/η",
|
|
66
|
+
"IncomingAudioCall": "Εισερχόμενη κλήση ήχου από τον χρήστη {{name}}",
|
|
67
|
+
"IncomingVideoCall": "Εισερχόμενη κλήση βίντεο από τον χρήστη {{name}}",
|
|
68
|
+
"Accept": "Αποδοχή",
|
|
69
|
+
"Reject": "Απόρριψη",
|
|
70
|
+
"RejectedCall": "Ο χρήστης {{name}} απέρριψε την κλήση",
|
|
71
|
+
"MissedCall": "Αναπάντητη κλήση από τον χρήστη {{name}}"
|
|
66
72
|
}
|
|
67
73
|
;
|
|
68
74
|
|
|
@@ -62,7 +62,13 @@ declare const _default: {
|
|
|
62
62
|
"Available": "Available",
|
|
63
63
|
"Busy": "Busy",
|
|
64
64
|
"Away": "Away",
|
|
65
|
-
"Online": "Online"
|
|
65
|
+
"Online": "Online",
|
|
66
|
+
"IncomingAudioCall": "Incoming audio call from {{name}}",
|
|
67
|
+
"IncomingVideoCall": "Incoming video call from {{name}}",
|
|
68
|
+
"Accept": "Accept",
|
|
69
|
+
"Reject": "Reject",
|
|
70
|
+
"RejectedCall": "{{name}} rejected the call",
|
|
71
|
+
"MissedCall": "Messed call from {{name}}"
|
|
66
72
|
}
|
|
67
73
|
;
|
|
68
74
|
|
|
@@ -62,7 +62,13 @@ declare const _default: {
|
|
|
62
62
|
"Available": "Присутній",
|
|
63
63
|
"Busy": "Зайнятий",
|
|
64
64
|
"Away": "Відсутній",
|
|
65
|
-
"Online": "В мережі"
|
|
65
|
+
"Online": "В мережі",
|
|
66
|
+
"IncomingAudioCall": "Вхідний аудіо виклик від {{name}}",
|
|
67
|
+
"IncomingVideoCall": "Вхідний відео виклик від {{name}}",
|
|
68
|
+
"Accept": "Прийняти",
|
|
69
|
+
"Reject": "Відхилити",
|
|
70
|
+
"RejectedCall": "{{name}} відхилив виклик",
|
|
71
|
+
"MissedCall": "Пропущений виклик від {{name}}"
|
|
66
72
|
}
|
|
67
73
|
;
|
|
68
74
|
|
|
@@ -44,3 +44,4 @@ export declare const generateConnectyCubeLogin: (userId?: string) => string;
|
|
|
44
44
|
export declare const createUserReport: (reportedUserId: number, reason: string) => Promise<import("connectycube/types").Data.DataRecord>;
|
|
45
45
|
export declare const subscribeToPushNotifications: (pushSubscriptionData?: PushSubscriptionData) => Promise<PushNotifications.Subscription | undefined>;
|
|
46
46
|
export declare const unsubscribeFromPushNotifications: () => Promise<EmptyResponse[]>;
|
|
47
|
+
export declare const isCallsSupported: boolean;
|
|
@@ -15,6 +15,7 @@ export { default as useUnreadCountStore } from './store/useUnreadCountStore';
|
|
|
15
15
|
export { default as useUserSettingsStore } from './store/useUserSettingsStore';
|
|
16
16
|
export { default as useAppAuthorization } from './useAppAuthorization';
|
|
17
17
|
export { default as useAppPresets } from './useAppPresets';
|
|
18
|
+
export { default as useAudio } from './useAudio';
|
|
18
19
|
export { default as useLastActivity } from './useLastActivity';
|
|
19
20
|
export { default as useNotification } from './useNotification';
|
|
20
21
|
export { default as usePageFocus } from './usePageFocus';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export type AppSettingStoreProps = {
|
|
2
2
|
attachmentsAccept: string;
|
|
3
3
|
attachmentsAcceptList: string[];
|
|
4
|
+
enableCalls: boolean;
|
|
4
5
|
enableUserStatuses: boolean;
|
|
5
6
|
enableLastSeen: boolean;
|
|
6
7
|
enableContentReporting: boolean;
|
|
@@ -10,6 +11,7 @@ export type AppSettingStoreProps = {
|
|
|
10
11
|
};
|
|
11
12
|
export interface AppSettingStoreState extends AppSettingStoreProps {
|
|
12
13
|
setAttachmentsAccept: (attachmentsAccept: string) => void;
|
|
14
|
+
setEnableCalls: (enableCalls: boolean) => void;
|
|
13
15
|
setEnableUserStatuses: (enableUserStatuses: boolean) => void;
|
|
14
16
|
setEnableLastSeen: (enableLastSeen: boolean) => void;
|
|
15
17
|
setEnableContentReporting: (enableContentReporting: boolean) => void;
|
|
@@ -17,6 +19,7 @@ export interface AppSettingStoreState extends AppSettingStoreProps {
|
|
|
17
19
|
setEnableUrlPreview: (enableUrlPreview: boolean) => void;
|
|
18
20
|
setLimitUrlsPreviews: (limitUrlsPreviews: number) => void;
|
|
19
21
|
resetAttachmentsAccept: () => void;
|
|
22
|
+
resetEnableCalls: () => void;
|
|
20
23
|
resetEnableUserStatuses: () => void;
|
|
21
24
|
resetEnableLastSeen: () => void;
|
|
22
25
|
resetEnableContentReporting: () => void;
|
|
@@ -16,6 +16,7 @@ export type AppPresets = {
|
|
|
16
16
|
webPushVapidPublicKey?: string;
|
|
17
17
|
serviceWorkerPath?: string | URL;
|
|
18
18
|
attachmentsAccept?: string;
|
|
19
|
+
enableCalls?: boolean;
|
|
19
20
|
enableUserStatuses?: boolean;
|
|
20
21
|
enableLastSeen?: boolean;
|
|
21
22
|
enableContentReporting?: boolean;
|
|
@@ -30,5 +31,5 @@ export type AppPresets = {
|
|
|
30
31
|
onOnlineUsersCountChange?: (count: number) => void;
|
|
31
32
|
onOpenChange?: (open: boolean) => void;
|
|
32
33
|
};
|
|
33
|
-
declare const useAppPresets: ({ embedView, open, splitView, showChatStatus, showOnlineUsersTab, hideNewChatButton, hideNewUserChatOption, hideNewGroupChatOption, muted, showNotifications, playSound, webPushNotifications, serviceWorkerPath, webPushVapidPublicKey, attachmentsAccept, enableUserStatuses, enableLastSeen, enableContentReporting, enableBlockList, enableUrlPreview, limitUrlsPreviews, quickActions, defaultChat, enableOnlineUsersBadge, getOnlineUsersInterval, onUnreadCountChange, onOnlineUsersCountChange, onOpenChange, }: AppPresets) => void;
|
|
34
|
+
declare const useAppPresets: ({ embedView, open, splitView, showChatStatus, showOnlineUsersTab, hideNewChatButton, hideNewUserChatOption, hideNewGroupChatOption, muted, showNotifications, playSound, webPushNotifications, serviceWorkerPath, webPushVapidPublicKey, attachmentsAccept, enableCalls, enableUserStatuses, enableLastSeen, enableContentReporting, enableBlockList, enableUrlPreview, limitUrlsPreviews, quickActions, defaultChat, enableOnlineUsersBadge, getOnlineUsersInterval, onUnreadCountChange, onOnlineUsersCountChange, onOpenChange, }: AppPresets) => void;
|
|
34
35
|
export default useAppPresets;
|
|
@@ -62,7 +62,13 @@ declare const _default: {
|
|
|
62
62
|
"Available": "Διαθέσιμος/η",
|
|
63
63
|
"Busy": "Απασχολημένος/η",
|
|
64
64
|
"Away": "Απουσιάζω",
|
|
65
|
-
"Online": "Συνδεδεμένος/η"
|
|
65
|
+
"Online": "Συνδεδεμένος/η",
|
|
66
|
+
"IncomingAudioCall": "Εισερχόμενη κλήση ήχου από τον χρήστη {{name}}",
|
|
67
|
+
"IncomingVideoCall": "Εισερχόμενη κλήση βίντεο από τον χρήστη {{name}}",
|
|
68
|
+
"Accept": "Αποδοχή",
|
|
69
|
+
"Reject": "Απόρριψη",
|
|
70
|
+
"RejectedCall": "Ο χρήστης {{name}} απέρριψε την κλήση",
|
|
71
|
+
"MissedCall": "Αναπάντητη κλήση από τον χρήστη {{name}}"
|
|
66
72
|
}
|
|
67
73
|
;
|
|
68
74
|
|
|
@@ -62,7 +62,13 @@ declare const _default: {
|
|
|
62
62
|
"Available": "Available",
|
|
63
63
|
"Busy": "Busy",
|
|
64
64
|
"Away": "Away",
|
|
65
|
-
"Online": "Online"
|
|
65
|
+
"Online": "Online",
|
|
66
|
+
"IncomingAudioCall": "Incoming audio call from {{name}}",
|
|
67
|
+
"IncomingVideoCall": "Incoming video call from {{name}}",
|
|
68
|
+
"Accept": "Accept",
|
|
69
|
+
"Reject": "Reject",
|
|
70
|
+
"RejectedCall": "{{name}} rejected the call",
|
|
71
|
+
"MissedCall": "Messed call from {{name}}"
|
|
66
72
|
}
|
|
67
73
|
;
|
|
68
74
|
|
|
@@ -62,7 +62,13 @@ declare const _default: {
|
|
|
62
62
|
"Available": "Присутній",
|
|
63
63
|
"Busy": "Зайнятий",
|
|
64
64
|
"Away": "Відсутній",
|
|
65
|
-
"Online": "В мережі"
|
|
65
|
+
"Online": "В мережі",
|
|
66
|
+
"IncomingAudioCall": "Вхідний аудіо виклик від {{name}}",
|
|
67
|
+
"IncomingVideoCall": "Вхідний відео виклик від {{name}}",
|
|
68
|
+
"Accept": "Прийняти",
|
|
69
|
+
"Reject": "Відхилити",
|
|
70
|
+
"RejectedCall": "{{name}} відхилив виклик",
|
|
71
|
+
"MissedCall": "Пропущений виклик від {{name}}"
|
|
66
72
|
}
|
|
67
73
|
;
|
|
68
74
|
|
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.
|
|
4
|
+
"version": "0.29.0",
|
|
5
5
|
"license": "GPL-3.0-only",
|
|
6
6
|
"homepage": "https://github.com/ConnectyCube/connectycube-chat-widget#readme",
|
|
7
7
|
"bugs": {
|
|
@@ -79,7 +79,8 @@
|
|
|
79
79
|
"version": "sh ./fetch-version.sh"
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
|
-
"@connectycube/use-
|
|
82
|
+
"@connectycube/use-calls": "^0.11.0",
|
|
83
|
+
"@connectycube/use-chat": "^0.23.2",
|
|
83
84
|
"@radix-ui/react-alert-dialog": "^1.1.14",
|
|
84
85
|
"@radix-ui/react-avatar": "^1.1.10",
|
|
85
86
|
"@radix-ui/react-dialog": "^1.1.14",
|
|
@@ -91,13 +92,13 @@
|
|
|
91
92
|
"@radix-ui/react-tooltip": "^1.2.7",
|
|
92
93
|
"class-variance-authority": "^0.7.1",
|
|
93
94
|
"clsx": "^2.1.1",
|
|
94
|
-
"connectycube": "^4.
|
|
95
|
+
"connectycube": "^4.4.0",
|
|
95
96
|
"get-browser-fingerprint": "^4.1.0",
|
|
96
97
|
"i18next": "^25.2.1",
|
|
97
98
|
"jsdom": "^26.1.0",
|
|
98
99
|
"linkify-react": "^4.3.1",
|
|
99
100
|
"linkifyjs": "^4.3.1",
|
|
100
|
-
"lucide-react": "^0.
|
|
101
|
+
"lucide-react": "^0.514.0",
|
|
101
102
|
"next-themes": "^0.4.6",
|
|
102
103
|
"react-hook-form": "^7.57.0",
|
|
103
104
|
"react-i18next": "^15.5.2",
|
|
@@ -113,32 +114,32 @@
|
|
|
113
114
|
},
|
|
114
115
|
"devDependencies": {
|
|
115
116
|
"@eslint/js": "^9.28.0",
|
|
116
|
-
"@tailwindcss/postcss": "^4.1.
|
|
117
|
-
"@tailwindcss/vite": "^4.1.
|
|
118
|
-
"@types/node": "^
|
|
119
|
-
"@types/react": "^19.1.
|
|
117
|
+
"@tailwindcss/postcss": "^4.1.9",
|
|
118
|
+
"@tailwindcss/vite": "^4.1.9",
|
|
119
|
+
"@types/node": "^24.0.0",
|
|
120
|
+
"@types/react": "^19.1.8",
|
|
120
121
|
"@types/react-dom": "^19.1.6",
|
|
121
|
-
"@vitejs/plugin-react": "^4.5.
|
|
122
|
+
"@vitejs/plugin-react": "^4.5.2",
|
|
122
123
|
"@vitest/coverage-v8": "^3.2.3",
|
|
123
124
|
"eslint": "^9.28.0",
|
|
124
125
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
125
126
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
126
127
|
"globals": "^16.2.0",
|
|
127
128
|
"prettier": "3.5.3",
|
|
128
|
-
"tailwind-merge": "^3.3.
|
|
129
|
+
"tailwind-merge": "^3.3.1",
|
|
129
130
|
"tailwind-scrollbar": "^4.0.2",
|
|
130
|
-
"tailwindcss": "^4.1.
|
|
131
|
+
"tailwindcss": "^4.1.9",
|
|
131
132
|
"tw-animate-css": "^1.3.4",
|
|
132
133
|
"typescript": "^5.8.3",
|
|
133
|
-
"typescript-eslint": "^8.
|
|
134
|
+
"typescript-eslint": "^8.34.0",
|
|
134
135
|
"vite": "^6.3.5",
|
|
135
136
|
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
136
137
|
"vite-plugin-dts": "^4.5.4",
|
|
137
138
|
"vitest": "^3.2.3"
|
|
138
139
|
},
|
|
139
140
|
"optionalDependencies": {
|
|
140
|
-
"@rollup/rollup-linux-x64-gnu": "4.
|
|
141
|
-
"@tailwindcss/oxide-linux-x64-gnu": "^4.1.
|
|
141
|
+
"@rollup/rollup-linux-x64-gnu": "4.43.0",
|
|
142
|
+
"@tailwindcss/oxide-linux-x64-gnu": "^4.1.9",
|
|
142
143
|
"lightningcss-linux-x64-gnu": "^1.30.1"
|
|
143
144
|
},
|
|
144
145
|
"engines": {
|