@memori.ai/memori-react 7.11.3 → 7.11.4

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 CHANGED
@@ -1,5 +1,12 @@
1
1
 
2
2
 
3
+ ## [7.11.4](https://github.com/memori-ai/memori-react/compare/v7.11.3...v7.11.4) (2024-12-10)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * links color in user chat bubbles ([813e557](https://github.com/memori-ai/memori-react/commit/813e5574bb32467f52f397a9ff3da1bfeb5b6b4c))
9
+
3
10
  ## [7.11.3](https://github.com/memori-ai/memori-react/compare/v7.11.2...v7.11.3) (2024-12-06)
4
11
 
5
12
 
@@ -94,6 +94,10 @@
94
94
  text-decoration: underline !important;
95
95
  }
96
96
 
97
+ .memori-chat--bubble.memori-chat--user-bubble a {
98
+ color: var(--memori-primary-text);
99
+ }
100
+
97
101
  @media (max-width: 600px) {
98
102
  .memori-chat--bubble p {
99
103
  font-size: 12px;
@@ -94,6 +94,10 @@
94
94
  text-decoration: underline !important;
95
95
  }
96
96
 
97
+ .memori-chat--bubble.memori-chat--user-bubble a {
98
+ color: var(--memori-primary-text);
99
+ }
100
+
97
101
  @media (max-width: 600px) {
98
102
  .memori-chat--bubble p {
99
103
  font-size: 12px;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "7.11.3",
2
+ "version": "7.11.4",
3
3
  "name": "@memori.ai/memori-react",
4
4
  "author": "Memori Srl",
5
5
  "main": "dist/index.js",
@@ -94,6 +94,10 @@
94
94
  text-decoration: underline !important;
95
95
  }
96
96
 
97
+ .memori-chat--bubble.memori-chat--user-bubble a {
98
+ color: var(--memori-primary-text);
99
+ }
100
+
97
101
  @media (max-width: 600px) {
98
102
  .memori-chat--bubble p {
99
103
  font-size: 12px;
@@ -80,6 +80,18 @@ FromUser.args = {
80
80
  },
81
81
  };
82
82
 
83
+ export const FromUserWithLink = Template.bind({});
84
+ FromUserWithLink.args = {
85
+ memori,
86
+ tenant,
87
+ message: {
88
+ fromUser: true,
89
+ text: 'Proin libero ante, dignissim sit amet turpis a, pretium condimentum dolor. [Vedi altro](https://memori.ai)',
90
+ initial: false,
91
+ },
92
+ };
93
+
94
+
83
95
  export const Initial = Template.bind({});
84
96
  Initial.args = {
85
97
  memori,