amp-workflow-ui 0.1.13 → 0.1.14
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 +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -308,9 +308,11 @@ function SendBackDialog({
|
|
|
308
308
|
autoHideDuration: 3e3,
|
|
309
309
|
onClose: handleCloseSnackbar,
|
|
310
310
|
anchorOrigin: { vertical: "top", horizontal: "right" },
|
|
311
|
+
sx: { zIndex: 9999999 },
|
|
311
312
|
children: /* @__PURE__ */ jsx(
|
|
312
313
|
Alert,
|
|
313
314
|
{
|
|
315
|
+
variant: "filled",
|
|
314
316
|
onClose: handleCloseSnackbar,
|
|
315
317
|
severity: snackbar.severity,
|
|
316
318
|
sx: {
|
|
@@ -466,9 +468,11 @@ function ApproveDialog({
|
|
|
466
468
|
autoHideDuration: 3e3,
|
|
467
469
|
onClose: handleCloseSnackbar,
|
|
468
470
|
anchorOrigin: { vertical: "top", horizontal: "right" },
|
|
471
|
+
sx: { zIndex: 9999999 },
|
|
469
472
|
children: /* @__PURE__ */ jsx(
|
|
470
473
|
Alert,
|
|
471
474
|
{
|
|
475
|
+
variant: "filled",
|
|
472
476
|
onClose: handleCloseSnackbar,
|
|
473
477
|
severity: snackbar.severity,
|
|
474
478
|
sx: {
|
|
@@ -683,9 +687,11 @@ function RejectDialog({
|
|
|
683
687
|
autoHideDuration: 3e3,
|
|
684
688
|
onClose: handleCloseSnackbar,
|
|
685
689
|
anchorOrigin: { vertical: "top", horizontal: "right" },
|
|
690
|
+
sx: { zIndex: 9999999 },
|
|
686
691
|
children: /* @__PURE__ */ jsx(
|
|
687
692
|
Alert,
|
|
688
693
|
{
|
|
694
|
+
variant: "filled",
|
|
689
695
|
onClose: handleCloseSnackbar,
|
|
690
696
|
severity: snackbar.severity,
|
|
691
697
|
sx: {
|
|
@@ -841,9 +847,11 @@ function OnHoldDialog({
|
|
|
841
847
|
autoHideDuration: 3e3,
|
|
842
848
|
onClose: handleCloseSnackbar,
|
|
843
849
|
anchorOrigin: { vertical: "top", horizontal: "right" },
|
|
850
|
+
sx: { zIndex: 9999999 },
|
|
844
851
|
children: /* @__PURE__ */ jsx(
|
|
845
852
|
Alert,
|
|
846
853
|
{
|
|
854
|
+
variant: "filled",
|
|
847
855
|
onClose: handleCloseSnackbar,
|
|
848
856
|
severity: snackbar.severity,
|
|
849
857
|
sx: {
|