@beeq/vue 1.0.0 → 1.0.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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,19 +7,19 @@ A lightweight utility that wraps BEEQ custom elements ("web components") so they
|
|
|
7
7
|
- install the package
|
|
8
8
|
|
|
9
9
|
```
|
|
10
|
-
npm install @
|
|
10
|
+
npm install @beeq/vue
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
- update the package
|
|
14
14
|
|
|
15
15
|
```
|
|
16
|
-
npm install @
|
|
16
|
+
npm install @beeq/vue@latest
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
if `@
|
|
19
|
+
if `@beeq/core` package is installed you should update both
|
|
20
20
|
|
|
21
21
|
```
|
|
22
|
-
npm install @
|
|
22
|
+
npm install @beeq/{core,vue}
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
### Add BEEQ styles and assets
|
|
@@ -27,10 +27,10 @@ npm install @bee-q/{core,vue}
|
|
|
27
27
|
Make sure that BEEQ main style is imported into your application's main style file:
|
|
28
28
|
|
|
29
29
|
```css
|
|
30
|
-
@import "@
|
|
30
|
+
@import "@beeq/core/dist/beeq/beeq";
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
-
> ❗️The icons SVG are shipped in a separate folder. Depending on your stack, your project will need to include `node_modules/@
|
|
33
|
+
> ❗️The icons SVG are shipped in a separate folder. Depending on your stack, your project will need to include `node_modules/@beeq/core/dist/beeq/svg` in the build in such a way that it respond to: `http://<domain>/svg`
|
|
34
34
|
|
|
35
35
|
## Usage
|
|
36
36
|
|