@keepeek/keepicker-react 1.21.0-beta.3 → 1.22.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/README.md +3 -3
- package/dist/index.js +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Integration
|
|
1
|
+
# Integration.
|
|
2
2
|
|
|
3
3
|
## Steps to use the Keepicker.
|
|
4
4
|
|
|
@@ -96,7 +96,7 @@ To get a picture, use the following code:
|
|
|
96
96
|
|
|
97
97
|
```js
|
|
98
98
|
const url = event.detail.element.permalinks.find(
|
|
99
|
-
(permalink) => permalink.title === "whr"
|
|
99
|
+
(permalink) => permalink.title === "whr",
|
|
100
100
|
)?.url;
|
|
101
101
|
```
|
|
102
102
|
|
|
@@ -151,7 +151,7 @@ To get preview video, use the following code:
|
|
|
151
151
|
|
|
152
152
|
```js
|
|
153
153
|
const url = event.detail.element.permalinks.find(
|
|
154
|
-
(permalink) => permalink.title === "preview"
|
|
154
|
+
(permalink) => permalink.title === "preview",
|
|
155
155
|
)?.url;
|
|
156
156
|
```
|
|
157
157
|
|