@memori.ai/memori-webcomponent 7.5.0 → 7.6.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 +14 -0
- package/README.md +2 -2
- package/dist/memori-webcomponent.js +13 -13
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [7.6.0](https://github.com/memori-ai/memori-webcomponent/compare/v7.5.1...v7.6.0) (2024-10-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update memori-react ([9fb1e4c](https://github.com/memori-ai/memori-webcomponent/commit/9fb1e4c85697861b728112eb26c328fb08e7aca2))
|
|
9
|
+
|
|
10
|
+
## [7.5.1](https://github.com/memori-ai/memori-webcomponent/compare/v7.5.0...v7.5.1) (2024-09-24)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Maintenance
|
|
14
|
+
|
|
15
|
+
* update memori-react ([479dbb8](https://github.com/memori-ai/memori-webcomponent/commit/479dbb85b628d971686f6363c934dd7161b8baa8))
|
|
16
|
+
|
|
3
17
|
## [7.5.0](https://github.com/memori-ai/memori-webcomponent/compare/v7.4.6...v7.5.0) (2024-09-23)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ npm i --save @memori.ai/memori-webcomponent
|
|
|
42
42
|
uiLang="it"
|
|
43
43
|
multilingual="true"
|
|
44
44
|
showShare="true"
|
|
45
|
-
|
|
45
|
+
></memori-client>
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
For more details on attributes, see [memori-react](https://github.com/memori-ai/memori-react) component props.
|
|
@@ -56,7 +56,7 @@ As for [memori-react](https://github.com/memori-ai/memori-react) component, it i
|
|
|
56
56
|
With this WebComponent that is slightly different, as the context is not passed as a JSON but as a string in the `context` attribute as comma-separated `KEY:VALUE` pairs:
|
|
57
57
|
|
|
58
58
|
```html
|
|
59
|
-
<memori-client ... context="VAR1:VALUE1,VAR2:VALUE2"
|
|
59
|
+
<memori-client ... context="VAR1:VALUE1,VAR2:VALUE2"></memori-client>
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
## Styling
|