@realtimexsco/live-chat 1.4.15 → 1.4.17
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/PERMISSIONS.md +236 -0
- package/README.md +26 -18
- package/dist/index.cjs +118 -36
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +44 -3
- package/dist/index.d.ts +44 -3
- package/dist/index.mjs +117 -37
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +9 -1
- package/package.json +15 -10
package/dist/styles.css
CHANGED
|
@@ -464,6 +464,12 @@
|
|
|
464
464
|
backdrop-filter: blur(10px);
|
|
465
465
|
}
|
|
466
466
|
|
|
467
|
+
.chat-date-divider-pill > span {
|
|
468
|
+
display: inline-flex;
|
|
469
|
+
align-items: center;
|
|
470
|
+
line-height: 1;
|
|
471
|
+
}
|
|
472
|
+
|
|
467
473
|
.chat-date-divider-pill--interactive {
|
|
468
474
|
cursor: pointer;
|
|
469
475
|
transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
|
|
@@ -482,11 +488,13 @@
|
|
|
482
488
|
opacity: 0.8;
|
|
483
489
|
flex-shrink: 0;
|
|
484
490
|
display: block;
|
|
491
|
+
/* Optical vertical center — Lucide chevron sits slightly high */
|
|
492
|
+
transform: translateY(1px);
|
|
485
493
|
transition: transform 0.15s ease;
|
|
486
494
|
}
|
|
487
495
|
|
|
488
496
|
.chat-date-divider-pill--interactive[data-state="open"] .chat-date-divider-chevron {
|
|
489
|
-
transform: rotate(180deg);
|
|
497
|
+
transform: translateY(1px) rotate(180deg);
|
|
490
498
|
}
|
|
491
499
|
|
|
492
500
|
/* shadcn calendar inside chat popover */
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@realtimexsco/live-chat",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.17",
|
|
4
4
|
"types": "./dist/index.d.ts",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist",
|
|
9
9
|
"LICENSE",
|
|
10
|
-
"README.md"
|
|
10
|
+
"README.md",
|
|
11
|
+
"PERMISSIONS.md"
|
|
11
12
|
],
|
|
12
13
|
"exports": {
|
|
13
14
|
".": {
|
|
@@ -97,22 +98,26 @@
|
|
|
97
98
|
},
|
|
98
99
|
"packageManager": "pnpm@10.33.2",
|
|
99
100
|
"keywords": [
|
|
100
|
-
"
|
|
101
|
-
"react-component",
|
|
102
|
-
"nextjs",
|
|
103
|
-
"chat",
|
|
101
|
+
"realtimex",
|
|
104
102
|
"live-chat",
|
|
103
|
+
"chat",
|
|
104
|
+
"messaging",
|
|
105
105
|
"realtime",
|
|
106
106
|
"real-time",
|
|
107
|
-
"
|
|
107
|
+
"react",
|
|
108
|
+
"react-component",
|
|
109
|
+
"nextjs",
|
|
110
|
+
"typescript",
|
|
108
111
|
"socket.io",
|
|
109
112
|
"websocket",
|
|
113
|
+
"dm",
|
|
114
|
+
"group-chat",
|
|
115
|
+
"push-notifications",
|
|
110
116
|
"zustand",
|
|
111
117
|
"tailwindcss",
|
|
112
|
-
"ui"
|
|
113
|
-
"realtimex"
|
|
118
|
+
"chat-ui"
|
|
114
119
|
],
|
|
115
120
|
"author": "RealtimeX",
|
|
116
121
|
"license": "MIT",
|
|
117
|
-
"description": "Drop-in real-time chat UI for React and Next.js — DMs, groups, reactions, replies, forwarding, attachments, and
|
|
122
|
+
"description": "Drop-in real-time chat UI for React and Next.js — DMs, groups, reactions, replies, forwarding, attachments, push notifications, and admin permissions."
|
|
118
123
|
}
|