@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.cjs.js +8 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +1 -0
package/dist/index.cjs.js
CHANGED
|
@@ -3582,6 +3582,8 @@ var Finish = function Finish(_ref) {
|
|
|
3582
3582
|
onClick = _ref$onClick === void 0 ? pure.noop : _ref$onClick,
|
|
3583
3583
|
_ref$title = _ref.title,
|
|
3584
3584
|
title = _ref$title === void 0 ? "" : _ref$title,
|
|
3585
|
+
_ref$buttonProps = _ref.buttonProps,
|
|
3586
|
+
buttonProps = _ref$buttonProps === void 0 ? {} : _ref$buttonProps,
|
|
3585
3587
|
_ref$secondaryButtonP = _ref.secondaryButtonProps,
|
|
3586
3588
|
secondaryButtonProps = _ref$secondaryButtonP === void 0 ? {} : _ref$secondaryButtonP,
|
|
3587
3589
|
children = _ref.children;
|
|
@@ -3595,10 +3597,10 @@ var Finish = function Finish(_ref) {
|
|
|
3595
3597
|
weight: "semibold"
|
|
3596
3598
|
}, title), children, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
3597
3599
|
className: "flex w-full items-start space-x-2"
|
|
3598
|
-
}, /*#__PURE__*/React__default["default"].createElement(neetoui.Button, {
|
|
3600
|
+
}, /*#__PURE__*/React__default["default"].createElement(neetoui.Button, _extends$1({
|
|
3599
3601
|
label: t("common.continue"),
|
|
3600
3602
|
onClick: onClick
|
|
3601
|
-
}), pure.isNotEmpty(secondaryButtonProps) && /*#__PURE__*/React__default["default"].createElement(neetoui.Button, _extends$1({
|
|
3603
|
+
}, buttonProps)), pure.isNotEmpty(secondaryButtonProps) && /*#__PURE__*/React__default["default"].createElement(neetoui.Button, _extends$1({
|
|
3602
3604
|
style: "secondary"
|
|
3603
3605
|
}, secondaryButtonProps))));
|
|
3604
3606
|
};
|
|
@@ -3611,6 +3613,10 @@ Finish.prototypes = {
|
|
|
3611
3613
|
* To show the title of the Finish component
|
|
3612
3614
|
*/
|
|
3613
3615
|
title: propTypes.exports.string,
|
|
3616
|
+
/**
|
|
3617
|
+
* To specify props for primary button
|
|
3618
|
+
*/
|
|
3619
|
+
buttonProps: propTypes.exports.object,
|
|
3614
3620
|
/**
|
|
3615
3621
|
* To specify props for secondary button
|
|
3616
3622
|
*/
|