storyly-placement 1.2.1 → 1.4.1
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 +10 -7
- package/dist/storyly-placement.js +8103 -7845
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,24 +1,27 @@
|
|
|
1
1
|
# Storyly Web Placement
|
|
2
2
|
|
|
3
3
|
```Text Yarn
|
|
4
|
-
yarn add storyly-
|
|
4
|
+
yarn add storyly-placement
|
|
5
5
|
```
|
|
6
6
|
|
|
7
7
|
or
|
|
8
8
|
|
|
9
9
|
```Text npm
|
|
10
|
-
npm install storyly-
|
|
10
|
+
npm install storyly-placement
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
Import `storyly-
|
|
14
|
+
Import `storyly-placement` to where you register global components, like **main.js**.
|
|
15
15
|
|
|
16
|
-
That way, you would not need to import `storyly-
|
|
16
|
+
That way, you would not need to import `storyly-placement` under different pages several times.
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
```Text HTML
|
|
20
|
-
import 'storyly-
|
|
20
|
+
import 'storyly-placement';
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
For further information regarding the usage of `storyly-placement`, please check out [docs](https://docs.storyly.io/v3.0/docs/placement-web-initial-setup).
|
|
24
|
+
|
|
25
|
+
# Change Log
|
|
26
|
+
|
|
27
|
+
check out [release notes](https://github.com/Netvent/storyly-sdk/blob/master/placement-web/RELEASENOTES.md).
|