kupos-ui-components-lib 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 copy.md +5 -5
- package/README.md +5 -5
- package/package.json +1 -1
package/README copy.md
CHANGED
|
@@ -6,9 +6,9 @@ booking applications.
|
|
|
6
6
|
## Installation
|
|
7
7
|
|
|
8
8
|
```bash
|
|
9
|
-
npm install
|
|
9
|
+
npm install kupos-ui-components-lib
|
|
10
10
|
# or
|
|
11
|
-
yarn add
|
|
11
|
+
yarn add kupos-ui-components-lib
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
## Usage
|
|
@@ -18,8 +18,8 @@ yarn add service-item-package
|
|
|
18
18
|
The `KuposUIComponent` is a versatile component that can render different UI components based on the `typeOfComponent` prop:
|
|
19
19
|
|
|
20
20
|
```jsx
|
|
21
|
-
import { KuposUIComponent } from "
|
|
22
|
-
import "
|
|
21
|
+
import { KuposUIComponent } from "kupos-ui-components-lib";
|
|
22
|
+
import "kupos-ui-components-lib/dist/styles.css"; // If you add CSS in the future
|
|
23
23
|
|
|
24
24
|
// Sample data
|
|
25
25
|
const serviceItem = {
|
|
@@ -77,7 +77,7 @@ function App() {
|
|
|
77
77
|
You can also use the individual components directly:
|
|
78
78
|
|
|
79
79
|
```jsx
|
|
80
|
-
import { ServiceItemPB } from "
|
|
80
|
+
import { ServiceItemPB } from "kupos-ui-components-lib";
|
|
81
81
|
|
|
82
82
|
function App() {
|
|
83
83
|
return (
|
package/README.md
CHANGED
|
@@ -6,9 +6,9 @@ booking applications.
|
|
|
6
6
|
## Installation
|
|
7
7
|
|
|
8
8
|
```bash
|
|
9
|
-
npm install
|
|
9
|
+
npm install kupos-ui-components-lib
|
|
10
10
|
# or
|
|
11
|
-
yarn add
|
|
11
|
+
yarn add kupos-ui-components-lib
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
## Usage
|
|
@@ -18,8 +18,8 @@ yarn add service-item-package
|
|
|
18
18
|
The `KuposUIComponent` is a versatile component that can render different UI components based on the `typeOfComponent` prop:
|
|
19
19
|
|
|
20
20
|
```jsx
|
|
21
|
-
import { KuposUIComponent } from "
|
|
22
|
-
import "
|
|
21
|
+
import { KuposUIComponent } from "kupos-ui-components-lib";
|
|
22
|
+
import "kupos-ui-components-lib/dist/styles.css"; // If you add CSS in the future
|
|
23
23
|
|
|
24
24
|
// Sample data
|
|
25
25
|
const serviceItem = {
|
|
@@ -77,7 +77,7 @@ function App() {
|
|
|
77
77
|
You can also use the individual components directly:
|
|
78
78
|
|
|
79
79
|
```jsx
|
|
80
|
-
import { ServiceItemPB } from "
|
|
80
|
+
import { ServiceItemPB } from "kupos-ui-components-lib";
|
|
81
81
|
|
|
82
82
|
function App() {
|
|
83
83
|
return (
|