sinking-antd 1.0.0 → 1.0.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/index.mjs CHANGED
@@ -485,7 +485,7 @@ var Body = React.memo((props) => {
485
485
  animation = true
486
486
  } = props;
487
487
  const { styles: { body, load, gutter }, cx } = useStyles3();
488
- return /* @__PURE__ */ jsx(App, { children: loading ? /* @__PURE__ */ jsx(Spin, { spinning: true, size: "large", className: load }) : /* @__PURE__ */ jsx(Layout, { style, children: /* @__PURE__ */ jsx("div", { className: cx("ant-layout-body", className || body), children: /* @__PURE__ */ jsx(animation_default, { animate: animation ? Animate.FadeUp : Animate.None, children: space ? /* @__PURE__ */ jsx(Space, { direction: "vertical", size: "middle", className: gutter, children }) : children }) }) }) });
488
+ return /* @__PURE__ */ jsx(App, { children: loading ? /* @__PURE__ */ jsx(Spin, { spinning: true, size: "large", className: load }) : /* @__PURE__ */ jsx(Layout, { style, children: /* @__PURE__ */ jsx("div", { className: cx("ant-layout-body", className || body), children: /* @__PURE__ */ jsx(animation_default, { animate: animation ? Animate.FadeUp : Animate.None, children: space ? /* @__PURE__ */ jsx(Space, { orientation: "vertical", size: "middle", className: gutter, children }) : children }) }) }) });
489
489
  });
490
490
  var body_default = Body;
491
491
  var Footer = React.memo(({ children }) => {
@@ -587,7 +587,9 @@ var useStyles5 = createStyles(({ token, isDarkMode }) => {
587
587
  transition: "background 0.3s !important",
588
588
  display: "flex",
589
589
  justifyContent: "center",
590
- alignItems: "center"
590
+ alignItems: "center",
591
+ flexWrap: "nowrap",
592
+ whiteSpace: "nowrap"
591
593
  },
592
594
  logoClose: {
593
595
  margin: "0px -10px"
@@ -1610,7 +1612,7 @@ var ProTableComponent = forwardRef((props, ref) => {
1610
1612
  Tag,
1611
1613
  {
1612
1614
  color: colorMap[color] || color || "default",
1613
- bordered: false,
1615
+ variant: "filled",
1614
1616
  ...props2,
1615
1617
  children: label
1616
1618
  }