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 +1 -1
- package/package.json +1 -1
- package/src/components/PlansAndPricing.js +1 -1
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
|
|
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
|
@@ -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
|
|
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
|
|