@asyncapi/react-component 1.0.0-next.40 → 1.0.0-next.41
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 +5 -4
- package/browser/index.js +3 -3
- package/browser/standalone/index.js +3 -3
- package/browser/standalone/without-parser.js +2 -2
- package/browser/without-parser.js +2 -2
- package/lib/cjs/config/config.js.map +1 -1
- package/lib/cjs/config/default.js +3 -0
- package/lib/cjs/config/default.js.map +1 -1
- package/lib/cjs/constants.js +4 -2
- package/lib/cjs/constants.js.map +1 -1
- package/lib/cjs/containers/Operations/Operation.js +4 -1
- package/lib/cjs/containers/Operations/Operation.js.map +1 -1
- package/lib/cjs/containers/Sidebar/Sidebar.js +5 -2
- package/lib/cjs/containers/Sidebar/Sidebar.js.map +1 -1
- package/lib/esm/config/config.js.map +1 -1
- package/lib/esm/config/default.js +3 -0
- package/lib/esm/config/default.js.map +1 -1
- package/lib/esm/constants.js +2 -0
- package/lib/esm/constants.js.map +1 -1
- package/lib/esm/containers/Operations/Operation.js +5 -2
- package/lib/esm/containers/Operations/Operation.js.map +1 -1
- package/lib/esm/containers/Sidebar/Sidebar.js +6 -3
- package/lib/esm/containers/Sidebar/Sidebar.js.map +1 -1
- package/lib/types/config/config.d.ts +2 -0
- package/lib/types/config/config.d.ts.map +1 -1
- package/lib/types/config/default.d.ts.map +1 -1
- package/lib/types/constants.d.ts +2 -0
- package/lib/types/constants.d.ts.map +1 -1
- package/lib/types/containers/Operations/Operation.d.ts.map +1 -1
- package/lib/types/containers/Sidebar/Sidebar.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@ A official [React](https://reactjs.org/) component for AsyncAPI 2.0 specificatio
|
|
|
20
20
|
|
|
21
21
|
<!-- toc -->
|
|
22
22
|
|
|
23
|
+
- [Overview](#overview)
|
|
23
24
|
- [Prerequisites](#prerequisites)
|
|
24
25
|
- [Installation](#installation)
|
|
25
26
|
- [Using in React](#using-in-react)
|
|
@@ -27,9 +28,9 @@ A official [React](https://reactjs.org/) component for AsyncAPI 2.0 specificatio
|
|
|
27
28
|
- [Props](#props)
|
|
28
29
|
- [Features](#features)
|
|
29
30
|
- [Styles](#styles)
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
- [Default styles](#default-styles)
|
|
32
|
+
- [Custom styles](#custom-styles)
|
|
33
|
+
- [Custom logo](#custom-logo)
|
|
33
34
|
- [Playground](#playground)
|
|
34
35
|
- [Modules](#modules)
|
|
35
36
|
- [Development](#development)
|
|
@@ -48,7 +49,7 @@ A official [React](https://reactjs.org/) component for AsyncAPI 2.0 specificatio
|
|
|
48
49
|
Run this command to install the component in your project:
|
|
49
50
|
|
|
50
51
|
```sh
|
|
51
|
-
npm install --save @asyncapi/react-component
|
|
52
|
+
npm install --save @asyncapi/react-component@next
|
|
52
53
|
```
|
|
53
54
|
|
|
54
55
|
Check out this simple sandbox application that uses the React component:
|