@mxenabled/connect-widget 2.17.6 → 2.17.7
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.es.js +9 -8
- package/dist/index.es.js.map +1 -1
- package/dist/lastBuild.txt +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -75899,8 +75899,8 @@ const TouchIndicator = ({
|
|
|
75899
75899
|
const { hover, selected } = theme.palette.action;
|
|
75900
75900
|
const styles = {
|
|
75901
75901
|
position: "absolute",
|
|
75902
|
-
height: "
|
|
75903
|
-
width: "
|
|
75902
|
+
height: "37px",
|
|
75903
|
+
width: "37px",
|
|
75904
75904
|
background: `radial-gradient(circle, ${hover} 0%, ${selected} 100%)`,
|
|
75905
75905
|
stroke: theme.palette.divider,
|
|
75906
75906
|
filter: "drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12))",
|
|
@@ -75914,7 +75914,7 @@ const TouchIndicator = ({
|
|
|
75914
75914
|
|
|
75915
75915
|
const ExampleCheckbox = ({ id, showTouchIndicator, pseudoFocusColor }) => {
|
|
75916
75916
|
const theme = useTheme();
|
|
75917
|
-
const checkboxSize = "
|
|
75917
|
+
const checkboxSize = "15px";
|
|
75918
75918
|
return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { "aria-hidden": "true", style: { position: "relative" }, children: [
|
|
75919
75919
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
75920
75920
|
"input",
|
|
@@ -75929,6 +75929,7 @@ const ExampleCheckbox = ({ id, showTouchIndicator, pseudoFocusColor }) => {
|
|
|
75929
75929
|
marginTop: "8px",
|
|
75930
75930
|
marginBottom: "8px",
|
|
75931
75931
|
marginRight: "12px",
|
|
75932
|
+
marginLeft: "4px",
|
|
75932
75933
|
width: checkboxSize,
|
|
75933
75934
|
height: checkboxSize
|
|
75934
75935
|
},
|
|
@@ -75936,7 +75937,7 @@ const ExampleCheckbox = ({ id, showTouchIndicator, pseudoFocusColor }) => {
|
|
|
75936
75937
|
type: "checkbox"
|
|
75937
75938
|
}
|
|
75938
75939
|
),
|
|
75939
|
-
showTouchIndicator && /* @__PURE__ */ jsxRuntimeExports.jsx(TouchIndicator, { style: { left: "-
|
|
75940
|
+
showTouchIndicator && /* @__PURE__ */ jsxRuntimeExports.jsx(TouchIndicator, { style: { left: "-8px", top: "-4px" } }),
|
|
75940
75941
|
showTouchIndicator && /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
75941
75942
|
"div",
|
|
75942
75943
|
{
|
|
@@ -76060,7 +76061,7 @@ function PredirectInstructions(props) {
|
|
|
76060
76061
|
break;
|
|
76061
76062
|
}
|
|
76062
76063
|
const isLastItem = index === checkboxItems.length - 1;
|
|
76063
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
76064
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsxs(React__default.Fragment, { children: [
|
|
76064
76065
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("li", { children: [
|
|
76065
76066
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
76066
76067
|
ExampleCheckbox,
|
|
@@ -76071,9 +76072,9 @@ function PredirectInstructions(props) {
|
|
|
76071
76072
|
}
|
|
76072
76073
|
),
|
|
76073
76074
|
/* @__PURE__ */ jsxRuntimeExports.jsx(L, { className: "psuedo-checkbox-label", variant: "body1", children: text })
|
|
76074
|
-
] }
|
|
76075
|
-
!isLastItem && /* @__PURE__ */ jsxRuntimeExports.jsx(Divider, {}
|
|
76076
|
-
] });
|
|
76075
|
+
] }),
|
|
76076
|
+
!isLastItem && /* @__PURE__ */ jsxRuntimeExports.jsx(Divider, {})
|
|
76077
|
+
] }, item);
|
|
76077
76078
|
}) }) })
|
|
76078
76079
|
] }) })
|
|
76079
76080
|
] });
|