authscape 1.0.580 → 1.0.582

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/index.js CHANGED
@@ -5382,7 +5382,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
5382
5382
  Object.defineProperty(exports, "__esModule", {
5383
5383
  value: true
5384
5384
  });
5385
- exports["default"] = Pricing;
5385
+ exports.Pricing = Pricing;
5386
5386
  var _react = _interopRequireWildcard(require("react"));
5387
5387
  var _system = require("@mui/system");
5388
5388
  var _material = require("@mui/material");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authscape",
3
- "version": "1.0.580",
3
+ "version": "1.0.582",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -8,7 +8,7 @@ import FormControl from '@mui/material/FormControl';
8
8
  import Select from '@mui/material/Select';
9
9
  import { useForm, Controller } from 'react-hook-form';
10
10
 
11
- export default function Pricing({title = null, tiers = [], features = null, onButtonClicked = null}) {
11
+ export function Pricing({title = null, tiers = [], features = null, onButtonClicked = null}) {
12
12
 
13
13
  const {control, register, handleSubmit, formState: { errors }, watch, setValue } = useForm();
14
14