@luscii-healthtech/web-ui 2.44.0 → 2.44.2
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/components/Breadcrumbs/Breadcrumbs.d.ts +1 -0
- package/dist/web-ui.cjs.development.js +4 -2
- package/dist/web-ui.cjs.development.js.map +1 -1
- package/dist/web-ui.cjs.production.min.js +1 -1
- package/dist/web-ui.cjs.production.min.js.map +1 -1
- package/dist/web-ui.esm.js +4 -2
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/web-ui.esm.js
CHANGED
|
@@ -2828,6 +2828,7 @@ var ConfirmationDialog = function ConfirmationDialog(props) {
|
|
|
2828
2828
|
|
|
2829
2829
|
return /*#__PURE__*/React__default.createElement(ModalBase, {
|
|
2830
2830
|
size: "small",
|
|
2831
|
+
dataTestId: "confirmation-dialog-modal",
|
|
2831
2832
|
isOpen: props.isOpen,
|
|
2832
2833
|
withExtraMarginTop: true,
|
|
2833
2834
|
onCloseClick: handleOnCloseClick,
|
|
@@ -6130,9 +6131,10 @@ var Breadcrumbs = function Breadcrumbs(_ref) {
|
|
|
6130
6131
|
var crumbs = _ref.crumbs;
|
|
6131
6132
|
var breadcrumbItems = crumbs.map(function (_ref2) {
|
|
6132
6133
|
var name = _ref2.name,
|
|
6133
|
-
link = _ref2.link
|
|
6134
|
+
link = _ref2.link,
|
|
6135
|
+
key = _ref2.key;
|
|
6134
6136
|
return /*#__PURE__*/React__default.createElement("li", {
|
|
6135
|
-
key: name,
|
|
6137
|
+
key: key || name,
|
|
6136
6138
|
className: "flex flex-row items-center slash-split "
|
|
6137
6139
|
}, link ? /*#__PURE__*/React__default.createElement(Link, {
|
|
6138
6140
|
to: link
|