@bolttech/atoms-button 0.20.0 → 0.21.0

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 +3 -3
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -7,13 +7,13 @@ A customizable React button component.
7
7
  Use the package manager [npm](https://www.npmjs.com/) or [yarn](https://yarnpkg.com/) to install the component.
8
8
 
9
9
  ```bash
10
- npm install @edirect/frontend-foundations @bolttech/atoms-button
10
+ npm install @bolttech/frontend-foundations @bolttech/atoms-button
11
11
  ```
12
12
 
13
13
  or
14
14
 
15
15
  ```bash
16
- yarn add @edirect/frontend-foundations @bolttech/atoms-button
16
+ yarn add @bolttech/frontend-foundations @bolttech/atoms-button
17
17
  ```
18
18
 
19
19
  ## Props
@@ -38,7 +38,7 @@ The `Button` component accepts the following properties:
38
38
  ```jsx
39
39
  import React from 'react';
40
40
  import {Button} from '@bolttech/atoms-button';
41
- import {bolttechTheme, BolttechThemeProvider} from "@edirect/frontend-foundations";
41
+ import {bolttechTheme, BolttechThemeProvider} from "@bolttech/frontend-foundations";
42
42
 
43
43
  const ExampleComponent = () => {
44
44
  const handleButtonClick = () => {
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@bolttech/atoms-button",
3
- "version": "0.20.0",
3
+ "version": "0.21.0",
4
4
  "main": "./index.cjs",
5
5
  "type": "commonjs",
6
6
  "types": "./src/index.d.ts",
7
7
  "dependencies": {
8
- "@bolttech/atoms-icon": "0.20.0",
8
+ "@bolttech/atoms-icon": "0.21.0",
9
+ "@bolttech/default-theme": "0.0.1",
10
+ "@bolttech/frontend-foundations": "0.0.1",
9
11
  "@bolttech/ui-utils": "0.1.1",
10
- "@edirect/frontend-foundations": "0.0.70",
11
12
  "react": "18.2.0",
12
13
  "styled-components": "5.3.6"
13
14
  },