@movable/ui 0.28.1 → 0.28.3
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/lib/index.mjs +11 -9
- package/lib/index.mjs.map +1 -1
- package/package.json +3 -3
package/lib/index.mjs
CHANGED
|
@@ -8757,6 +8757,7 @@ function w0({ Breadcrumbs: e, Subtitle: t, Metadata: r, Chips: n, ButtonGroup: o
|
|
|
8757
8757
|
return R.jsx("header", { children: R.jsxs(Ze, { direction: "column", spacing: 2, sx: {
|
|
8758
8758
|
borderBottom: 1,
|
|
8759
8759
|
borderColor: "divider",
|
|
8760
|
+
background: (c) => c.palette.neutral00,
|
|
8760
8761
|
px: 3,
|
|
8761
8762
|
py: 3,
|
|
8762
8763
|
...i && { pb: -3 },
|
|
@@ -8797,7 +8798,8 @@ function P0({ subtitle: e }) {
|
|
|
8797
8798
|
function k0({ label: e, Stepper: t, ButtonGroup: r }) {
|
|
8798
8799
|
return R.jsx("header", { children: R.jsxs(Ze, { direction: "row", spacing: 2, justifyContent: "space-between", alignItems: "center", sx: {
|
|
8799
8800
|
borderBottom: "1px solid divider",
|
|
8800
|
-
p: 3
|
|
8801
|
+
p: 3,
|
|
8802
|
+
background: (n) => n.palette.neutral00
|
|
8801
8803
|
}, children: [R.jsx(lt, { "data-test-worflow-header-label": !0, variant: "subtitle1", component: "h1", sx: { fontWeight: "600", flexGrow: "1" }, children: e }), t && R.jsx(Qt, { sx: { flexGrow: "2" }, "data-test-worflow-header-stepper": !0, children: t }), r && R.jsx(Qt, { sx: { flexGrow: "1", justifyContent: "end", display: "flex" }, "data-test-worflow-header-button-group": !0, children: r })] }) });
|
|
8802
8804
|
}
|
|
8803
8805
|
const La = Rd({
|
|
@@ -8881,19 +8883,19 @@ const A0 = ({ name: e, options: t, onChange: r, onBlur: n, value: o, ref: i, dir
|
|
|
8881
8883
|
px: 3,
|
|
8882
8884
|
py: 2,
|
|
8883
8885
|
height: "100%",
|
|
8884
|
-
|
|
8885
|
-
borderWidth: o === u ? 2 : 1,
|
|
8886
|
-
borderStyle: "solid",
|
|
8886
|
+
border: 0,
|
|
8887
8887
|
bgcolor: o === u ? "primary.selected" : "inherit",
|
|
8888
|
+
outlineWidth: o === u ? 2 : 1,
|
|
8888
8889
|
"&:hover": {
|
|
8889
|
-
bgcolor: "primary.hover",
|
|
8890
|
-
|
|
8890
|
+
bgcolor: o === u ? "primary.selected" : "primary.hover",
|
|
8891
|
+
outlineColor: (v) => v.palette.primary.outlinedBorder
|
|
8891
8892
|
},
|
|
8892
8893
|
"&:focus-within": {
|
|
8893
|
-
bgcolor: "white"
|
|
8894
|
-
borderColor: "primary.focus",
|
|
8895
|
-
borderWidth: 2
|
|
8894
|
+
bgcolor: "white"
|
|
8896
8895
|
},
|
|
8896
|
+
outlineStyle: "solid",
|
|
8897
|
+
borderRadius: 1,
|
|
8898
|
+
outlineColor: (v) => o === u ? v.palette.blue800 : v.palette.neutral200,
|
|
8897
8899
|
...c
|
|
8898
8900
|
}, children: R.jsxs(Ze, { direction: "column", alignItems: "center", width: "100%", children: [d && R.jsx(Qt, { sx: {
|
|
8899
8901
|
color: o === u ? "text.primary" : "action.active",
|