@memori.ai/memori-webcomponent 2.0.3 → 2.0.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
+ ## [2.0.4](https://github.com/memori-ai/memori-webcomponent/compare/v2.0.3...v2.0.4) (2023-04-24)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * upgrade to memori-react@2 ([a51fcd0](https://github.com/memori-ai/memori-webcomponent/commit/a51fcd0a68936eb7406deb77d6983e9f6562447a))
9
+
3
10
  ## [2.0.3](https://github.com/memori-ai/memori-webcomponent/compare/v2.0.2...v2.0.3) (2023-04-03)
4
11
 
5
12
 
package/README.md CHANGED
@@ -13,23 +13,19 @@ See [demo](https://memori-ai.github.io/memori-webcomponent/example/).
13
13
  ## Installation from npm
14
14
 
15
15
  ```bash
16
- yarn add @memori.ai/memori-webcomponent
16
+ npm i --save @memori.ai/memori-webcomponent
17
17
  ```
18
18
 
19
- ```bash
20
- npm install @memori.ai/memori-webcomponent
21
- ```
22
-
23
- ## Embed or usage from CDN
19
+ ## Embed or usage from CDN (suggested)
24
20
 
25
21
  ```html
26
22
  <script
27
23
  type="module"
28
- src="https://unpkg.com/@memori.ai/memori-webcomponent/dist/memori-webcomponent.js"
24
+ src="https://esm.run/@memori.ai/memori-webcomponent/dist/memori-webcomponent.js"
29
25
  ></script>
30
26
  <link
31
27
  rel="stylesheet"
32
- href="https://unpkg.com/@memori.ai/memori-react/dist/styles.css"
28
+ href="https://cdn.jsdelivr.net/npm/@memori.ai/memori-react/dist/styles.min.css"
33
29
  />
34
30
  ```
35
31