@oceanbase/ui 0.4.18 → 0.4.20

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.
@@ -155,3 +155,26 @@
155
155
  }
156
156
  }
157
157
  }
158
+
159
+ .@{prefix}-history-menu-item {
160
+ .@{prefix}-menu-text-btn-wrapper {
161
+ justify-content: space-between;
162
+ height: 0;
163
+ transition: height 0.2s;
164
+ overflow: hidden;
165
+ }
166
+ &:hover {
167
+ .@{prefix}-menu-text-btn-wrapper {
168
+ height: 22px;
169
+ }
170
+ }
171
+ }
172
+
173
+ .@{prefix}-menu-text-btn {
174
+ width: 72px;
175
+
176
+ background-color: @colorFillSecondary !important;
177
+ &:hover {
178
+ background-color: @colorFill !important;
179
+ }
180
+ }
@@ -110,7 +110,11 @@ function ProTable({
110
110
  [`${proCardCls}-contain-tabs`]: !!(cardProps == null ? void 0 : cardProps.tabs)
111
111
  },
112
112
  cardProps == null ? void 0 : cardProps.className
113
- )
113
+ ),
114
+ bodyStyle: {
115
+ paddingBlock: 0,
116
+ ...cardProps == null ? void 0 : cardProps.bodyStyle
117
+ }
114
118
  },
115
119
  expandable: expandable ? {
116
120
  columnWidth: !size || size === "large" ? 40 : 32,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oceanbase/ui",
3
- "version": "0.4.18",
3
+ "version": "0.4.20",
4
4
  "description": "The UI library based on OceanBase Design",
5
5
  "keywords": [
6
6
  "oceanbase",
@@ -32,8 +32,7 @@
32
32
  ],
33
33
  "sideEffects": [
34
34
  "**/*.less",
35
- "**/*.css",
36
- "es/index.js"
35
+ "**/*.css"
37
36
  ],
38
37
  "scripts": {
39
38
  "build": "NODE_OPTIONS=--max_old_space_size=4096 father build"
@@ -42,12 +41,12 @@
42
41
  "@ant-design/cssinjs": "^1.24.0",
43
42
  "@ant-design/pro-components": "^2.8.10",
44
43
  "@antv/g6": "3.4.10",
45
- "@oceanbase/design": "^0.4.15",
44
+ "@oceanbase/design": "^0.4.17",
46
45
  "@oceanbase/icons": "^0.4.7",
47
- "@oceanbase/util": "^0.4.4",
46
+ "@oceanbase/util": "^0.4.5",
48
47
  "ahooks": "^2.10.14",
49
48
  "classnames": "^2.5.1",
50
- "dayjs": "^1.11.13",
49
+ "dayjs": "^1.11.18",
51
50
  "diff": "^5.2.0",
52
51
  "highlight.js": "^11.11.1",
53
52
  "highlightjs-solidity": "^2.0.6",
@@ -71,5 +70,5 @@
71
70
  "react": ">=16.9.0",
72
71
  "react-dom": ">=16.9.0"
73
72
  },
74
- "gitHead": "b88518b0f25b30d616d829813ba50eff7830499a"
73
+ "gitHead": "17cf4a2e042c5c3a2b099b8f4d305eb3b543ca66"
75
74
  }