@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.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. 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 @bee-q/vue
10
+ npm install @beeq/vue
11
11
  ```
12
12
 
13
13
  - update the package
14
14
 
15
15
  ```
16
- npm install @bee-q/vue@latest
16
+ npm install @beeq/vue@latest
17
17
  ```
18
18
 
19
- if `@bee-q/core` package is installed you should update both
19
+ if `@beeq/core` package is installed you should update both
20
20
 
21
21
  ```
22
- npm install @bee-q/{core,vue}
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 "@bee-q/core/dist/bee-q/bee-q";
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/@bee-q/core/dist/bee-q/svg` in the build in such a way that it respond to: `http://<domain>/svg`
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beeq/vue",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Vue specific wrapper for BEEQ Design System components",
6
6
  "main": "./src/index.js",