@availity/element 0.5.0 → 0.7.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.
- package/CHANGELOG.md +14 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +4 -2
- package/src/index.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.7.0](https://github.com/Availity/element/compare/@availity/element@0.6.0...@availity/element@0.7.0) (2023-05-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **mui-paper:** add paper component ([4bf7776](https://github.com/Availity/element/commit/4bf7776a0f19e3566983e176901233a6292fa745))
|
|
11
|
+
|
|
12
|
+
## [0.6.0](https://github.com/Availity/element/compare/@availity/element@0.5.0...@availity/element@0.6.0) (2023-05-22)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* create Tooltip component UXDS-187 ([5f50f13](https://github.com/Availity/element/commit/5f50f13b17d3f75a107bbee1a83ac35cfc326b81))
|
|
18
|
+
|
|
5
19
|
## [0.5.0](https://github.com/Availity/element/compare/@availity/element@0.4.0...@availity/element@0.5.0) (2023-05-16)
|
|
6
20
|
|
|
7
21
|
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,9 @@ export * from '@availity/mui-badge';
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { ButtonProps as ButtonProps$1 } from '@mui/material';
|
|
5
5
|
export * from '@availity/mui-divider';
|
|
6
|
+
export * from '@availity/mui-paper';
|
|
6
7
|
export * from '@availity/theme-provider';
|
|
8
|
+
export * from '@availity/mui-tooltip';
|
|
7
9
|
|
|
8
10
|
declare type ButtonProps = {
|
|
9
11
|
children: React.ReactNode;
|
package/dist/index.js
CHANGED
|
@@ -37,7 +37,9 @@ var Button = ({ children, ...rest }) => /* @__PURE__ */ (0, import_jsx_runtime.j
|
|
|
37
37
|
|
|
38
38
|
// src/index.ts
|
|
39
39
|
__reExport(src_exports, require("@availity/mui-divider"), module.exports);
|
|
40
|
+
__reExport(src_exports, require("@availity/mui-paper"), module.exports);
|
|
40
41
|
__reExport(src_exports, require("@availity/theme-provider"), module.exports);
|
|
42
|
+
__reExport(src_exports, require("@availity/mui-tooltip"), module.exports);
|
|
41
43
|
// Annotate the CommonJS export names for ESM import in node:
|
|
42
44
|
0 && (module.exports = {
|
|
43
45
|
Button
|
package/dist/index.mjs
CHANGED
|
@@ -12,7 +12,9 @@ var Button = ({ children, ...rest }) => /* @__PURE__ */ jsx(MUIButton, {
|
|
|
12
12
|
|
|
13
13
|
// src/index.ts
|
|
14
14
|
export * from "@availity/mui-divider";
|
|
15
|
+
export * from "@availity/mui-paper";
|
|
15
16
|
export * from "@availity/theme-provider";
|
|
17
|
+
export * from "@availity/mui-tooltip";
|
|
16
18
|
export {
|
|
17
19
|
Button
|
|
18
20
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/element",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"browser": "./dist/index.js",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -15,9 +15,11 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@availity/mui-alert": "0.2.0",
|
|
18
|
-
"@availity/mui-badge": "0.1.
|
|
18
|
+
"@availity/mui-badge": "0.1.4",
|
|
19
19
|
"@availity/mui-divider": "0.1.0",
|
|
20
20
|
"@availity/mui-icon": "0.2.0",
|
|
21
|
+
"@availity/mui-paper": "0.1.0",
|
|
22
|
+
"@availity/mui-tooltip": "0.1.0",
|
|
21
23
|
"@availity/theme-provider": "0.2.2",
|
|
22
24
|
"@mui/material": "^5.11.9"
|
|
23
25
|
},
|
package/src/index.ts
CHANGED
|
@@ -2,4 +2,6 @@ export * from '@availity/mui-alert';
|
|
|
2
2
|
export * from '@availity/mui-badge';
|
|
3
3
|
export * from '@availity/mui-button';
|
|
4
4
|
export * from '@availity/mui-divider';
|
|
5
|
+
export * from '@availity/mui-paper';
|
|
5
6
|
export * from '@availity/theme-provider';
|
|
7
|
+
export * from '@availity/mui-tooltip';
|