@linktr.ee/messaging-react 3.5.5-rc-1782984704 → 3.5.5-rc-1782987115
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/dist/assets/index.css +1 -1
- package/package.json +2 -2
- package/src/styles.css +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@linktr.ee/messaging-react",
|
|
3
|
-
"version": "3.5.5-rc-
|
|
3
|
+
"version": "3.5.5-rc-1782987115",
|
|
4
4
|
"description": "React messaging components built on messaging-core for web applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@linktr.ee/component-library": "11.8.6",
|
|
41
|
-
"@linktr.ee/messaging-core": "2.3.0-rc-
|
|
41
|
+
"@linktr.ee/messaging-core": "2.3.0-rc-1782987115",
|
|
42
42
|
"@phosphor-icons/react": "^2.1.10"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
package/src/styles.css
CHANGED
|
@@ -675,7 +675,7 @@
|
|
|
675
675
|
}
|
|
676
676
|
|
|
677
677
|
.str-chat__message--other .str-chat__message-bubble {
|
|
678
|
-
border-end-start-radius:
|
|
678
|
+
border-end-start-radius: 0;
|
|
679
679
|
}
|
|
680
680
|
|
|
681
681
|
.str-chat__message--other
|
|
@@ -687,9 +687,9 @@
|
|
|
687
687
|
content: '';
|
|
688
688
|
position: absolute;
|
|
689
689
|
inset-block-end: 0;
|
|
690
|
-
inset-inline-start: calc(-1 * 0.
|
|
691
|
-
width: 1.
|
|
692
|
-
height: 1.
|
|
690
|
+
inset-inline-start: calc(-1 * 0.25rem);
|
|
691
|
+
width: 1.375rem;
|
|
692
|
+
height: 1.5rem;
|
|
693
693
|
background-color: var(--str-chat__message-bubble-background-color);
|
|
694
694
|
pointer-events: none;
|
|
695
695
|
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='25 22 20 23'%3E%3Cpath d='M45 22H30C30 32.1934 29.1413 37.2345 25.8323 43.4893C25.4732 44.168 25.9613 44.9917 26.7255 44.9178C39.8236 43.6506 44.6803 28.0737 45 22Z'/%3E%3C/svg%3E")
|
|
@@ -708,9 +708,9 @@
|
|
|
708
708
|
content: '';
|
|
709
709
|
position: absolute;
|
|
710
710
|
inset-block-end: 0;
|
|
711
|
-
inset-inline-end: calc(-1 * 0.
|
|
712
|
-
width: 1.
|
|
713
|
-
height: 1.
|
|
711
|
+
inset-inline-end: calc(-1 * 0.25rem);
|
|
712
|
+
width: 1.375rem;
|
|
713
|
+
height: 1.5rem;
|
|
714
714
|
background-color: var(--str-chat__own-message-bubble-background-color);
|
|
715
715
|
pointer-events: none;
|
|
716
716
|
transform: scaleX(-1);
|
|
@@ -723,7 +723,7 @@
|
|
|
723
723
|
}
|
|
724
724
|
|
|
725
725
|
.str-chat__message--me .str-chat__message-bubble {
|
|
726
|
-
border-end-end-radius:
|
|
726
|
+
border-end-end-radius: 0;
|
|
727
727
|
}
|
|
728
728
|
}
|
|
729
729
|
|