@blocklet/discuss-kit 1.5.104 → 1.5.106

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.
@@ -3,7 +3,7 @@ const react = require("react");
3
3
  const PropTypes = require("prop-types");
4
4
  const Theme = require("@arcblock/ux/lib/Theme");
5
5
  const IconButton = require("@mui/material/IconButton");
6
- const MoreVertIcon = require("@mui/icons-material/MoreVert");
6
+ const iconsMaterial = require("@mui/icons-material");
7
7
  const Box = require("@mui/material/Box");
8
8
  const MuiMenu = require("@mui/material/Menu");
9
9
  const MuiMenuItem = require("@mui/material/MenuItem");
@@ -11,7 +11,6 @@ const jsxRuntime = require("react/jsx-runtime");
11
11
  const _interopDefaultLegacy = (e) => e && typeof e === "object" && "default" in e ? e : { default: e };
12
12
  const PropTypes__default = /* @__PURE__ */ _interopDefaultLegacy(PropTypes);
13
13
  const IconButton__default = /* @__PURE__ */ _interopDefaultLegacy(IconButton);
14
- const MoreVertIcon__default = /* @__PURE__ */ _interopDefaultLegacy(MoreVertIcon);
15
14
  const Box__default = /* @__PURE__ */ _interopDefaultLegacy(Box);
16
15
  const MuiMenu__default = /* @__PURE__ */ _interopDefaultLegacy(MuiMenu);
17
16
  const MuiMenuItem__default = /* @__PURE__ */ _interopDefaultLegacy(MuiMenuItem);
@@ -32,7 +31,7 @@ function Menu({
32
31
  children: [/* @__PURE__ */ jsxRuntime.jsx(IconButton__default.default, {
33
32
  size: "medium",
34
33
  onClick: handleClick,
35
- children: /* @__PURE__ */ jsxRuntime.jsx(MoreVertIcon__default.default, {
34
+ children: /* @__PURE__ */ jsxRuntime.jsx(iconsMaterial.MoreVert, {
36
35
  sx: {
37
36
  fontSize: 18
38
37
  }
@@ -2,7 +2,7 @@ import { useState } from "react";
2
2
  import PropTypes from "prop-types";
3
3
  import { styled } from "@arcblock/ux/lib/Theme";
4
4
  import IconButton from "@mui/material/IconButton";
5
- import MoreVertIcon from "@mui/icons-material/MoreVert";
5
+ import { MoreVert } from "@mui/icons-material";
6
6
  import Box from "@mui/material/Box";
7
7
  import MuiMenu from "@mui/material/Menu";
8
8
  import MuiMenuItem from "@mui/material/MenuItem";
@@ -24,7 +24,7 @@ function Menu({
24
24
  children: [/* @__PURE__ */ jsx(IconButton, {
25
25
  size: "medium",
26
26
  onClick: handleClick,
27
- children: /* @__PURE__ */ jsx(MoreVertIcon, {
27
+ children: /* @__PURE__ */ jsx(MoreVert, {
28
28
  sx: {
29
29
  fontSize: 18
30
30
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/discuss-kit",
3
- "version": "1.5.104",
3
+ "version": "1.5.106",
4
4
  "description": "A react component for Discuss Kit blocklet.",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/es/index.js",
@@ -37,8 +37,8 @@
37
37
  "@arcblock/did-connect": "^2.7.20",
38
38
  "@arcblock/ux": "^2.7.20",
39
39
  "@arcblock/ws": "^1.18.90",
40
- "@blocklet/discuss-kit-ux": "1.5.104",
41
- "@blocklet/editor": "1.5.104",
40
+ "@blocklet/discuss-kit-ux": "1.5.106",
41
+ "@blocklet/editor": "1.5.106",
42
42
  "@emotion/react": "^11.10.5",
43
43
  "@emotion/styled": "^11.10.5",
44
44
  "@mui/icons-material": "^5.14.9",
@@ -77,5 +77,5 @@
77
77
  "vite-plugin-build": "^0.7.1",
78
78
  "vite-plugin-svgr": "^2.2.2"
79
79
  },
80
- "gitHead": "bb975e76610079884743cb86fa95900d3d3b577a"
80
+ "gitHead": "2e218ee7e2e90fae745289ebff0f0e2476b3d131"
81
81
  }