@availity/element 0.6.0 → 0.7.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 +14 -0
- package/dist/index.d.ts +3 -9
- package/dist/index.js +3 -21
- package/dist/index.mjs +3 -13
- package/package.json +3 -1
- 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.1](https://github.com/Availity/element/compare/@availity/element@0.7.0...@availity/element@0.7.1) (2023-05-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **element:** add missing dependencies/exports ([12d88f4](https://github.com/Availity/element/commit/12d88f4b3ad213be6b4c3e47c6d6189c5a6dfe14))
|
|
11
|
+
|
|
12
|
+
## [0.7.0](https://github.com/Availity/element/compare/@availity/element@0.6.0...@availity/element@0.7.0) (2023-05-22)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **mui-paper:** add paper component ([4bf7776](https://github.com/Availity/element/commit/4bf7776a0f19e3566983e176901233a6292fa745))
|
|
18
|
+
|
|
5
19
|
## [0.6.0](https://github.com/Availity/element/compare/@availity/element@0.5.0...@availity/element@0.6.0) (2023-05-22)
|
|
6
20
|
|
|
7
21
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
export * from '@availity/mui-alert';
|
|
2
2
|
export * from '@availity/mui-badge';
|
|
3
|
-
|
|
4
|
-
import { ButtonProps as ButtonProps$1 } from '@mui/material';
|
|
3
|
+
export * from '@availity/mui-button';
|
|
5
4
|
export * from '@availity/mui-divider';
|
|
5
|
+
export * from '@availity/mui-icon';
|
|
6
|
+
export * from '@availity/mui-paper';
|
|
6
7
|
export * from '@availity/theme-provider';
|
|
7
8
|
export * from '@availity/mui-tooltip';
|
|
8
|
-
|
|
9
|
-
declare type ButtonProps = {
|
|
10
|
-
children: React.ReactNode;
|
|
11
|
-
} & ButtonProps$1;
|
|
12
|
-
declare const Button: ({ children, ...rest }: ButtonProps) => JSX.Element;
|
|
13
|
-
|
|
14
|
-
export { Button, ButtonProps };
|
package/dist/index.js
CHANGED
|
@@ -3,10 +3,6 @@ var __defProp = Object.defineProperty;
|
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
6
|
var __copyProps = (to, from, except, desc) => {
|
|
11
7
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
8
|
for (let key of __getOwnPropNames(from))
|
|
@@ -20,26 +16,12 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
16
|
|
|
21
17
|
// src/index.ts
|
|
22
18
|
var src_exports = {};
|
|
23
|
-
__export(src_exports, {
|
|
24
|
-
Button: () => Button
|
|
25
|
-
});
|
|
26
19
|
module.exports = __toCommonJS(src_exports);
|
|
27
20
|
__reExport(src_exports, require("@availity/mui-alert"), module.exports);
|
|
28
21
|
__reExport(src_exports, require("@availity/mui-badge"), module.exports);
|
|
29
|
-
|
|
30
|
-
// ../button/src/lib/Button.tsx
|
|
31
|
-
var import_material = require("@mui/material");
|
|
32
|
-
var import_jsx_runtime = require("react/jsx-runtime");
|
|
33
|
-
var Button = ({ children, ...rest }) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_material.Button, {
|
|
34
|
-
...rest,
|
|
35
|
-
children
|
|
36
|
-
});
|
|
37
|
-
|
|
38
|
-
// src/index.ts
|
|
22
|
+
__reExport(src_exports, require("@availity/mui-button"), module.exports);
|
|
39
23
|
__reExport(src_exports, require("@availity/mui-divider"), module.exports);
|
|
24
|
+
__reExport(src_exports, require("@availity/mui-icon"), module.exports);
|
|
25
|
+
__reExport(src_exports, require("@availity/mui-paper"), module.exports);
|
|
40
26
|
__reExport(src_exports, require("@availity/theme-provider"), module.exports);
|
|
41
27
|
__reExport(src_exports, require("@availity/mui-tooltip"), module.exports);
|
|
42
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
43
|
-
0 && (module.exports = {
|
|
44
|
-
Button
|
|
45
|
-
});
|
package/dist/index.mjs
CHANGED
|
@@ -1,19 +1,9 @@
|
|
|
1
1
|
// src/index.ts
|
|
2
2
|
export * from "@availity/mui-alert";
|
|
3
3
|
export * from "@availity/mui-badge";
|
|
4
|
-
|
|
5
|
-
// ../button/src/lib/Button.tsx
|
|
6
|
-
import { Button as MUIButton } from "@mui/material";
|
|
7
|
-
import { jsx } from "react/jsx-runtime";
|
|
8
|
-
var Button = ({ children, ...rest }) => /* @__PURE__ */ jsx(MUIButton, {
|
|
9
|
-
...rest,
|
|
10
|
-
children
|
|
11
|
-
});
|
|
12
|
-
|
|
13
|
-
// src/index.ts
|
|
4
|
+
export * from "@availity/mui-button";
|
|
14
5
|
export * from "@availity/mui-divider";
|
|
6
|
+
export * from "@availity/mui-icon";
|
|
7
|
+
export * from "@availity/mui-paper";
|
|
15
8
|
export * from "@availity/theme-provider";
|
|
16
9
|
export * from "@availity/mui-tooltip";
|
|
17
|
-
export {
|
|
18
|
-
Button
|
|
19
|
-
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/element",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"browser": "./dist/index.js",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -16,8 +16,10 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@availity/mui-alert": "0.2.0",
|
|
18
18
|
"@availity/mui-badge": "0.1.4",
|
|
19
|
+
"@availity/mui-button": "0.1.3",
|
|
19
20
|
"@availity/mui-divider": "0.1.0",
|
|
20
21
|
"@availity/mui-icon": "0.2.0",
|
|
22
|
+
"@availity/mui-paper": "0.1.0",
|
|
21
23
|
"@availity/mui-tooltip": "0.1.0",
|
|
22
24
|
"@availity/theme-provider": "0.2.2",
|
|
23
25
|
"@mui/material": "^5.11.9"
|
package/src/index.ts
CHANGED
|
@@ -2,5 +2,7 @@ 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-icon';
|
|
6
|
+
export * from '@availity/mui-paper';
|
|
5
7
|
export * from '@availity/theme-provider';
|
|
6
8
|
export * from '@availity/mui-tooltip';
|