@arcblock/ux 2.1.8 → 2.1.9

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.
@@ -108,7 +108,7 @@ Header.propTypes = {
108
108
  onToggleMenu: _propTypes.default.func.isRequired,
109
109
  brand: _propTypes.default.string.isRequired,
110
110
  brandAddon: _propTypes.default.object,
111
- description: _propTypes.default.string.isRequired,
111
+ description: _propTypes.default.any.isRequired,
112
112
  children: _propTypes.default.any,
113
113
  addons: _propTypes.default.any,
114
114
  homeUrl: _propTypes.default.string,
@@ -131,7 +131,7 @@ Dashboard.propTypes = {
131
131
  links: _propTypes.default.array.isRequired,
132
132
  images: _propTypes.default.object.isRequired,
133
133
  brandAddon: _propTypes.default.object,
134
- description: _propTypes.default.string.isRequired,
134
+ description: _propTypes.default.any.isRequired,
135
135
  headerAddon: _propTypes.default.any,
136
136
  prefix: _propTypes.default.string,
137
137
  // 兼容旧版的设置,新版使用 fullWidth 进行设置
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcblock/ux",
3
- "version": "2.1.8",
3
+ "version": "2.1.9",
4
4
  "description": "Common used react components for arcblock products",
5
5
  "keywords": [
6
6
  "react",
@@ -52,10 +52,10 @@
52
52
  "react": ">=18.1.0",
53
53
  "react-ga": "^2.7.0"
54
54
  },
55
- "gitHead": "3c91cd679fef62a21839887f72870b43833c7d39",
55
+ "gitHead": "7a3efb456e1dbe3318ab8757feb9e58a88c08d8e",
56
56
  "dependencies": {
57
- "@arcblock/icons": "^2.1.8",
58
- "@arcblock/react-hooks": "^2.1.8",
57
+ "@arcblock/icons": "^2.1.9",
58
+ "@arcblock/react-hooks": "^2.1.9",
59
59
  "@babel/plugin-syntax-dynamic-import": "^7.8.3",
60
60
  "@emotion/react": "^11.9.0",
61
61
  "@emotion/styled": "^11.8.1",
@@ -141,7 +141,7 @@ Header.propTypes = {
141
141
  onToggleMenu: PropTypes.func.isRequired,
142
142
  brand: PropTypes.string.isRequired,
143
143
  brandAddon: PropTypes.object,
144
- description: PropTypes.string.isRequired,
144
+ description: PropTypes.any.isRequired,
145
145
  children: PropTypes.any,
146
146
  addons: PropTypes.any,
147
147
  homeUrl: PropTypes.string,
@@ -126,7 +126,7 @@ Dashboard.propTypes = {
126
126
  links: PropTypes.array.isRequired,
127
127
  images: PropTypes.object.isRequired,
128
128
  brandAddon: PropTypes.object,
129
- description: PropTypes.string.isRequired,
129
+ description: PropTypes.any.isRequired,
130
130
  headerAddon: PropTypes.any,
131
131
  prefix: PropTypes.string,
132
132
  // 兼容旧版的设置,新版使用 fullWidth 进行设置