You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library is under active development and has not yet been published on npm. For now, you can clone the repository and install it locally.
26
-
27
-
### Building the bundle
28
-
29
-
```
30
-
npm install
31
-
npm run build
32
-
```
33
-
34
-
### Using npm link
35
-
36
-
When developing and testing locally with `npm link`, you may need to adjust your Webpack configuration to ensure compatibility with `styled-components` and `react`, which do not handle multiple instances well. Add the following alias configuration to the project that uses this library:
This library requires the following peer dependencies to be installed in your project:
@@ -129,3 +104,36 @@ The following table lists the supported CSS variables for color overriding, extr
129
104
```
130
105
131
106
If you need to override colors for specific components or add new variables, refer to the component's `styles.ts` file for implementation details.
107
+
108
+
## Installation
109
+
110
+
You can install the library directly from npm:
111
+
112
+
```bash
113
+
npm install @mconf/bbb-ui-components-react
114
+
```
115
+
116
+
## Local Development
117
+
118
+
If you want to build the library locally or contribute:
119
+
120
+
### Building the bundle
121
+
122
+
```
123
+
npm install
124
+
npm run build
125
+
```
126
+
127
+
### Using npm link
128
+
129
+
When developing and testing locally with `npm link`, you may need to adjust your Webpack configuration to ensure compatibility with `styled-components` and `react`, which do not handle multiple instances well. Add the following alias configuration to the project that uses this library:
0 commit comments