@realtimexsco/live-chat 1.4.13 → 1.4.15
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/README.md +5 -3
- package/dist/index.cjs +112 -67
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +112 -67
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +9 -6
- package/package.json +1 -9
package/dist/styles.css
CHANGED
|
@@ -449,14 +449,16 @@
|
|
|
449
449
|
.chat-date-divider-pill {
|
|
450
450
|
display: inline-flex;
|
|
451
451
|
align-items: center;
|
|
452
|
-
|
|
452
|
+
justify-content: center;
|
|
453
|
+
gap: 0.3rem;
|
|
454
|
+
height: 1.5rem;
|
|
453
455
|
border-radius: 9999px;
|
|
454
456
|
border: 1px solid color-mix(in srgb, var(--chat-text) 10%, var(--chat-border));
|
|
455
457
|
background: color-mix(in srgb, var(--chat-surface) 92%, transparent);
|
|
456
|
-
padding: 0
|
|
457
|
-
font-size: 0.
|
|
458
|
+
padding: 0 0.65rem;
|
|
459
|
+
font-size: 0.75rem;
|
|
458
460
|
font-weight: 600;
|
|
459
|
-
line-height: 1
|
|
461
|
+
line-height: 1;
|
|
460
462
|
color: var(--chat-text);
|
|
461
463
|
box-shadow: 0 6px 18px color-mix(in srgb, var(--chat-text) 8%, transparent);
|
|
462
464
|
backdrop-filter: blur(10px);
|
|
@@ -475,10 +477,11 @@
|
|
|
475
477
|
}
|
|
476
478
|
|
|
477
479
|
.chat-date-divider-chevron {
|
|
478
|
-
width: 0.
|
|
479
|
-
height: 0.
|
|
480
|
+
width: 0.75rem;
|
|
481
|
+
height: 0.75rem;
|
|
480
482
|
opacity: 0.8;
|
|
481
483
|
flex-shrink: 0;
|
|
484
|
+
display: block;
|
|
482
485
|
transition: transform 0.15s ease;
|
|
483
486
|
}
|
|
484
487
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@realtimexsco/live-chat",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.15",
|
|
4
4
|
"types": "./dist/index.d.ts",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -95,14 +95,6 @@
|
|
|
95
95
|
"access": "public",
|
|
96
96
|
"registry": "https://registry.npmjs.org/"
|
|
97
97
|
},
|
|
98
|
-
"repository": {
|
|
99
|
-
"type": "git",
|
|
100
|
-
"url": "git+https://bitbucket.org/software-co/realtimex-npm-package.git"
|
|
101
|
-
},
|
|
102
|
-
"bugs": {
|
|
103
|
-
"url": "https://bitbucket.org/software-co/realtimex-npm-package/issues"
|
|
104
|
-
},
|
|
105
|
-
"homepage": "https://bitbucket.org/software-co/realtimex-npm-package",
|
|
106
98
|
"packageManager": "pnpm@10.33.2",
|
|
107
99
|
"keywords": [
|
|
108
100
|
"react",
|