@beppla/tapas-ui 1.0.61 → 1.0.62
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.
|
@@ -137,8 +137,8 @@ const useStyles = makeStyles((theme) => ({
|
|
|
137
137
|
// Modal 模式样式
|
|
138
138
|
modalContainer: {
|
|
139
139
|
display: "flex",
|
|
140
|
-
flexGrow:
|
|
141
|
-
flexShrink:
|
|
140
|
+
flexGrow: 0,
|
|
141
|
+
flexShrink: 0,
|
|
142
142
|
flexBasis: "auto",
|
|
143
143
|
flexDirection: "column",
|
|
144
144
|
justifyContent: "flex-start", // 改为顶部对齐,与 CustomDropdown 保持一致
|
package/package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@
|
|
|
5
5
|
格式基于 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.0.0/),
|
|
6
6
|
版本号遵循 [语义化版本](https://semver.org/lang/zh-CN/)。
|
|
7
7
|
|
|
8
|
+
## [1.0.62] - 2024-12-19
|
|
9
|
+
|
|
10
|
+
### 维护
|
|
11
|
+
- 🔧 **版本更新**:发布版本 1.0.62
|
|
12
|
+
- 基于当前稳定代码状态发布补丁版本
|
|
13
|
+
- 确保组件库的持续更新和维护
|
|
14
|
+
|
|
8
15
|
## [1.0.61] - 2024-12-19
|
|
9
16
|
|
|
10
17
|
### 修复
|
|
@@ -62,8 +62,8 @@ const useStyles = (0, _themed.makeStyles)(theme => ({
|
|
|
62
62
|
// Modal 模式样式
|
|
63
63
|
modalContainer: {
|
|
64
64
|
display: "flex",
|
|
65
|
-
flexGrow:
|
|
66
|
-
flexShrink:
|
|
65
|
+
flexGrow: 0,
|
|
66
|
+
flexShrink: 0,
|
|
67
67
|
flexBasis: "auto",
|
|
68
68
|
flexDirection: "column",
|
|
69
69
|
justifyContent: "flex-start",
|
package/package/package.json
CHANGED