datastake-daf 0.6.201 → 0.6.203

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.
@@ -21154,7 +21154,9 @@ const WidgetCard = _ref => {
21154
21154
  flex: 1,
21155
21155
  display: "flex",
21156
21156
  alignItems: "flex-start",
21157
- minHeight: "0"
21157
+ minHeight: "0",
21158
+ color: '#6C737F',
21159
+ fontSize: '14px'
21158
21160
  },
21159
21161
  children: description
21160
21162
  }) : /*#__PURE__*/jsxRuntime.jsx("div", {
@@ -21184,6 +21186,10 @@ const WidgetCard = _ref => {
21184
21186
  }) : /*#__PURE__*/jsxRuntime.jsx("span", {
21185
21187
  children: item.label
21186
21188
  }), /*#__PURE__*/jsxRuntime.jsx("span", {
21189
+ style: {
21190
+ fontSize: '12px',
21191
+ color: '#6C737F'
21192
+ },
21187
21193
  children: item.value
21188
21194
  })]
21189
21195
  }, item))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datastake-daf",
3
- "version": "0.6.201",
3
+ "version": "0.6.203",
4
4
  "dependencies": {
5
5
  "@ant-design/icons": "^5.2.5",
6
6
  "@antv/g2": "^5.1.1",
@@ -70,7 +70,9 @@ const WidgetCard = ({
70
70
  flex: 1,
71
71
  display: "flex",
72
72
  alignItems: "flex-start",
73
- minHeight: "0"
73
+ minHeight: "0",
74
+ color: '#6C737F',
75
+ fontSize: '14px'
74
76
  }}>
75
77
  {description}
76
78
  </p>
@@ -84,7 +86,7 @@ const WidgetCard = ({
84
86
  {data.map((item) => (
85
87
  <div key={item} style={{display: "flex", justifyContent: "space-between"}}>
86
88
  {item.isTag ? <Tag style={{width: '90px', textAlign: 'center', borderRadius: '10px'}} color={item.tagColor || 'default'}>{item.label}</Tag> : <span>{item.label}</span>}
87
- <span>{item.value}</span>
89
+ <span style={{fontSize: '12px', color: '#6C737F'}}>{item.value}</span>
88
90
  </div>
89
91
  ))}
90
92
  </div>