@availity/mui-badge 0.1.0 → 0.1.2

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.1.2](https://github.com/Availity/element/compare/@availity/mui-badge@0.1.1...@availity/mui-badge@0.1.2) (2023-03-23)
6
+
7
+ ## [0.1.1](https://github.com/Availity/element/compare/@availity/mui-badge@0.1.0...@availity/mui-badge@0.1.1) (2023-03-06)
8
+
5
9
  ## 0.1.0 (2023-02-28)
6
10
 
7
11
 
package/README.md CHANGED
@@ -4,11 +4,11 @@
4
4
 
5
5
  [![Version](https://img.shields.io/npm/v/@availity/mui-badge.svg?style=for-the-badge)](https://www.npmjs.com/package/@availity/mui-badge)
6
6
  [![NPM Downloads](https://img.shields.io/npm/dt/@availity/mui-badge.svg?style=for-the-badge)](https://www.npmjs.com/package/@availity/mui-badge)
7
- [![Dependency Status](https://img.shields.io/librariesio/release/npm/@availity/mui-badge?style=for-the-badge)](https://github.com/Availity/availity-react/blob/master/packages/mui-badge/package.json)
7
+ [![Dependency Status](https://img.shields.io/librariesio/release/npm/@availity/mui-badge?style=for-the-badge)](https://github.com/Availity/element/blob/main/packages/badge/package.json)
8
8
 
9
9
  ## Documentation
10
10
 
11
- This package extends the MUI Badge component: [MUI Badge Docs](https://v4.mui.com/components/badges/)
11
+ This package extends the MUI Badge component: [MUI Badge Docs](https://mui.com/components/badge/)
12
12
 
13
13
  Live demo and documentation in our [Storybook](https://availity.github.io/element/?path=/docs/components-badge-introduction--docs)
14
14
 
@@ -53,5 +53,5 @@ import { Badge } from '@availity/element';
53
53
  #### Direct import
54
54
 
55
55
  ```tsx
56
- import Badge from '@availity/mui-badge';
56
+ import { Badge } from '@availity/mui-badge';
57
57
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-badge",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Availity MUI Badge Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
package/tsconfig.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "extends": "../../tsconfig.json",
2
+ "extends": "../../tsconfig.base.json",
3
3
  "include": ["."],
4
4
  "exclude": ["dist", "build", "node_modules", "*.mdx", "src/lib/*.stories.tsx"]
5
5
  }