@memori.ai/memori-webcomponent 8.2.1 → 8.2.3
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/dist/index.html +4 -4
- package/dist/memori-webcomponent.js +29 -29
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [8.2.3](https://github.com/memori-ai/memori-webcomponent/compare/v8.2.2...v8.2.3) (2026-02-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* update memori-react ([d71d5d8](https://github.com/memori-ai/memori-webcomponent/commit/d71d5d8881a4e49fa39eb9813eefa9a42452aa05))
|
|
9
|
+
|
|
10
|
+
## [8.2.2](https://github.com/memori-ai/memori-webcomponent/compare/v8.2.1...v8.2.2) (2026-02-25)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Maintenance
|
|
14
|
+
|
|
15
|
+
* update memori-react ([2a00340](https://github.com/memori-ai/memori-webcomponent/commit/2a00340868158f7e8356dd2d72b236ec6582413a))
|
|
16
|
+
|
|
3
17
|
## [8.2.1](https://github.com/memori-ai/memori-webcomponent/compare/v8.2.0...v8.2.1) (2026-02-20)
|
|
4
18
|
|
|
5
19
|
|
package/dist/index.html
CHANGED
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
<title>Memori WebComponent Example</title>
|
|
8
8
|
|
|
9
9
|
<!-- Dev: load from source so Parcel bundles it (avoids "exports undefined" with pre-built dist). -->
|
|
10
|
-
<script defer="" src="/index.
|
|
10
|
+
<!-- <script defer type="module" src="../src/index.tsx"></script> -->
|
|
11
11
|
<!-- Production / published demo:
|
|
12
|
-
<script defer type="module" src="../dist/memori-webcomponent.js"></script>
|
|
13
|
-
<script
|
|
14
|
-
|
|
12
|
+
<script defer type="module" src="../dist/memori-webcomponent.js"></script> -->
|
|
13
|
+
<script src="https://cdn.jsdelivr.net/npm/@memori.ai/memori-webcomponent/dist/memori-webcomponent.js" defer=""></script>
|
|
14
|
+
|
|
15
15
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@memori.ai/memori-react/dist/styles.min.css">
|
|
16
16
|
</head>
|
|
17
17
|
|