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 CHANGED
@@ -6,9 +6,9 @@ booking applications.
6
6
  ## Installation
7
7
 
8
8
  ```bash
9
- npm install service-item-package
9
+ npm install kupos-ui-components-lib
10
10
  # or
11
- yarn add service-item-package
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 "service-item-package";
22
- import "service-item-package/dist/styles.css"; // If you add CSS in the future
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 "service-item-package";
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 service-item-package
9
+ npm install kupos-ui-components-lib
10
10
  # or
11
- yarn add service-item-package
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 "service-item-package";
22
- import "service-item-package/dist/styles.css"; // If you add CSS in the future
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 "service-item-package";
80
+ import { ServiceItemPB } from "kupos-ui-components-lib";
81
81
 
82
82
  function App() {
83
83
  return (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kupos-ui-components-lib",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A reusable UI components package",
5
5
  "publishConfig": {
6
6
  "access": "public"