@availity/element 0.1.3 → 0.2.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/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.2.1](https://github.com/Availity/element/compare/@availity/element@0.2.0...@availity/element@0.2.1) (2023-03-06)
6
+
7
+ ## [0.2.0](https://github.com/Availity/element/compare/@availity/element@0.1.3...@availity/element@0.2.0) (2023-03-01)
8
+
9
+
10
+ ### Features
11
+
12
+ * **buttons:** create new buttons ([d2dfb1a](https://github.com/Availity/element/commit/d2dfb1af0491adbcdb7d86c5a65d90d23dec5b4a))
13
+
5
14
  ## [0.1.3](https://github.com/Availity/element/compare/@availity/element@0.1.2...@availity/element@0.1.3) (2023-02-28)
6
15
 
7
16
  ## [0.1.2](https://github.com/Availity/element/compare/@availity/element@0.1.1...@availity/element@0.1.2) (2023-02-22)
package/dist/index.d.ts CHANGED
@@ -1,3 +1,13 @@
1
1
  export * from '@availity/mui-alert';
2
2
  export * from '@availity/mui-badge';
3
+ import React from 'react';
4
+ import { ButtonProps as ButtonProps$1 } from '@mui/material';
3
5
  export * from '@availity/theme-provider';
6
+
7
+ declare type ButtonProps = {
8
+ children: React.ReactNode;
9
+ } & ButtonProps$1;
10
+ declare const Button: ({ children, ...rest }: ButtonProps) => JSX.Element;
11
+ declare const LoadingButton: ({ children, ...rest }: ButtonProps) => JSX.Element;
12
+
13
+ export { Button, ButtonProps, LoadingButton };