@beeq/react 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 +7 -7
  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/react
10
+ npm install @beeq/react
11
11
  ```
12
12
 
13
13
  - update the package
14
14
 
15
15
  ```
16
- npm install @bee-q/react@latest
16
+ npm install @beeq/react@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,react}
22
+ npm install @beeq/{core,react}
23
23
  ```
24
24
 
25
25
  ### Add BEEQ styles and assets
@@ -27,16 +27,16 @@ npm install @bee-q/{core,react}
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 React 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 React 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
 
37
37
  ```jsx
38
38
  import React from 'react';
39
- import { BqButton } from '@bee-q/react';
39
+ import { BqButton } from '@beeq/react';
40
40
 
41
41
  function App() {
42
42
  const handleButtonClick = (ev: CustomEvent) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beeq/react",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "license": "Apache-2.0",
5
5
  "description": "React specific wrapper for BEEQ Design System components",
6
6
  "main": "./src/index.js",