@bigbinary/neeto-integrations-frontend 1.0.0 → 1.0.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/dist/index.js CHANGED
@@ -3555,6 +3555,8 @@ var Finish = function Finish(_ref) {
3555
3555
  onClick = _ref$onClick === void 0 ? noop$1 : _ref$onClick,
3556
3556
  _ref$title = _ref.title,
3557
3557
  title = _ref$title === void 0 ? "" : _ref$title,
3558
+ _ref$buttonProps = _ref.buttonProps,
3559
+ buttonProps = _ref$buttonProps === void 0 ? {} : _ref$buttonProps,
3558
3560
  _ref$secondaryButtonP = _ref.secondaryButtonProps,
3559
3561
  secondaryButtonProps = _ref$secondaryButtonP === void 0 ? {} : _ref$secondaryButtonP,
3560
3562
  children = _ref.children;
@@ -3568,10 +3570,10 @@ var Finish = function Finish(_ref) {
3568
3570
  weight: "semibold"
3569
3571
  }, title), children, /*#__PURE__*/React__default.createElement("div", {
3570
3572
  className: "flex w-full items-start space-x-2"
3571
- }, /*#__PURE__*/React__default.createElement(Button, {
3573
+ }, /*#__PURE__*/React__default.createElement(Button, _extends$1({
3572
3574
  label: t("common.continue"),
3573
3575
  onClick: onClick
3574
- }), isNotEmpty(secondaryButtonProps) && /*#__PURE__*/React__default.createElement(Button, _extends$1({
3576
+ }, buttonProps)), isNotEmpty(secondaryButtonProps) && /*#__PURE__*/React__default.createElement(Button, _extends$1({
3575
3577
  style: "secondary"
3576
3578
  }, secondaryButtonProps))));
3577
3579
  };
@@ -3584,6 +3586,10 @@ Finish.prototypes = {
3584
3586
  * To show the title of the Finish component
3585
3587
  */
3586
3588
  title: propTypes.exports.string,
3589
+ /**
3590
+ * To specify props for primary button
3591
+ */
3592
+ buttonProps: propTypes.exports.object,
3587
3593
  /**
3588
3594
  * To specify props for secondary button
3589
3595
  */