@arcblock/ux 2.12.57 → 2.12.58

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.
@@ -1,4 +1,4 @@
1
- import { type TypographyProps, type LinkProps } from '@mui/material';
1
+ import type { LinkProps, TypographyProps } from '@mui/material';
2
2
  export interface PoweredByArcBlockProps extends TypographyProps {
3
3
  linkProps?: LinkProps;
4
4
  showExtra?: boolean;
@@ -10,13 +10,11 @@ export default function PoweredByArcBlock({
10
10
  children: ["Powered by", ' ', /*#__PURE__*/_jsx(Link, {
11
11
  href: "https://www.arcblock.io",
12
12
  target: "_blank",
13
- underline: "hover",
14
13
  ...linkProps,
15
14
  children: "ArcBlock"
16
15
  }), "'s", ' ', /*#__PURE__*/_jsx(Link, {
17
16
  href: "https://www.blocklet.io",
18
17
  target: "_blank",
19
- underline: "hover",
20
18
  ...linkProps,
21
19
  children: "Blocklet Technology"
22
20
  }), showExtra ? ', the decentralized web engine.' : null]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcblock/ux",
3
- "version": "2.12.57",
3
+ "version": "2.12.58",
4
4
  "description": "Common used react components for arcblock products",
5
5
  "keywords": [
6
6
  "react",
@@ -70,12 +70,12 @@
70
70
  "react": ">=18.2.0",
71
71
  "react-router-dom": ">=6.22.3"
72
72
  },
73
- "gitHead": "3777c011368654b134e493f4a854df15d249caa5",
73
+ "gitHead": "6ef2b4adde037be07264380b57b43105f6fbb903",
74
74
  "dependencies": {
75
75
  "@arcblock/did-motif": "^1.1.13",
76
- "@arcblock/icons": "^2.12.57",
77
- "@arcblock/nft-display": "^2.12.57",
78
- "@arcblock/react-hooks": "^2.12.57",
76
+ "@arcblock/icons": "^2.12.58",
77
+ "@arcblock/nft-display": "^2.12.58",
78
+ "@arcblock/react-hooks": "^2.12.58",
79
79
  "@babel/plugin-syntax-dynamic-import": "^7.8.3",
80
80
  "@fontsource/roboto": "^5.2.5",
81
81
  "@fontsource/ubuntu-mono": "^5.0.18",
@@ -1,4 +1,5 @@
1
- import { Link, Typography, type TypographyProps, type LinkProps } from '@mui/material';
1
+ import type { LinkProps, TypographyProps } from '@mui/material';
2
+ import { Link, Typography } from '@mui/material';
2
3
 
3
4
  export interface PoweredByArcBlockProps extends TypographyProps {
4
5
  linkProps?: LinkProps;
@@ -9,11 +10,11 @@ export default function PoweredByArcBlock({ linkProps, showExtra, ...props }: Po
9
10
  return (
10
11
  <Typography {...props}>
11
12
  Powered by{' '}
12
- <Link href="https://www.arcblock.io" target="_blank" underline="hover" {...linkProps}>
13
+ <Link href="https://www.arcblock.io" target="_blank" {...linkProps}>
13
14
  ArcBlock
14
15
  </Link>
15
16
  's{' '}
16
- <Link href="https://www.blocklet.io" target="_blank" underline="hover" {...linkProps}>
17
+ <Link href="https://www.blocklet.io" target="_blank" {...linkProps}>
17
18
  Blocklet Technology
18
19
  </Link>
19
20
  {showExtra ? ', the decentralized web engine.' : null}