@fixefy/fixefy-ui-components 0.0.43 → 0.0.45

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.
@@ -2,10 +2,15 @@
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
- exports.ButtonStyled = void 0;
6
- const material_1 = require("@mui/material");
7
- const styles_1 = require("@mui/material/styles");
8
- exports.ButtonStyled = (0, styles_1.styled)(material_1.Button)(({ theme, variant })=>{
5
+ Object.defineProperty(exports, "ButtonStyled", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return ButtonStyled;
9
+ }
10
+ });
11
+ const _material = require("@mui/material");
12
+ const _styles = require("@mui/material/styles");
13
+ const ButtonStyled = (0, _styles.styled)(_material.Button)(({ theme, variant })=>{
9
14
  const border = variant === 'text' ? `0px solid #0000` : `1px solid ${theme.palette.primary.main}`;
10
15
  return {
11
16
  border,
package/package.json CHANGED
@@ -64,10 +64,10 @@
64
64
  "module": "./build/index.js",
65
65
  "exports": {
66
66
  ".": {
67
- "import": "./builds/index.js",
67
+ "import": "./build/index.js",
68
68
  "require": "./build/index.js"
69
69
  }
70
70
  },
71
- "types": "./build/index.ts",
72
- "version": "0.0.43"
71
+ "types": "./build/index.js",
72
+ "version": "0.0.45"
73
73
  }