fix(amis-saas-8191): 细节完善

Change-Id: Icc449a40bdb079f346d7c05f7946a3b27f58866b
This commit is contained in:
wibetter 2022-11-18 19:22:43 +08:00
parent 957c53c528
commit 77b288c6c5
4 changed files with 9 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "amis-editor", "name": "amis-editor",
"version": "5.2.1-beta.10", "version": "5.2.1-beta.13",
"description": "amis 可视化编辑器", "description": "amis 可视化编辑器",
"main": "lib/index.js", "main": "lib/index.js",
"module": "esm/index.js", "module": "esm/index.js",

View File

@ -3399,7 +3399,7 @@ extendLocale('en-US', {
'6f420734edfaff00a8210a4c762a9207': '6f420734edfaff00a8210a4c762a9207':
'The maximum height is the display height with the most current elements', 'The maximum height is the display height with the most current elements',
'411f9d120093314cd38e6dd5cce398c6': '411f9d120093314cd38e6dd5cce398c6':
'The minimum width is the smallest vertical display area of the current element', 'The minimum height is the smallest vertical display area of the current element',
'b31c6aaa78f8e24df665ce80ab5301e2': 'b31c6aaa78f8e24df665ce80ab5301e2':
'Scroll mode for setting the vertical direction', 'Scroll mode for setting the vertical direction',
'4fc0e68b093db41b45a4ea706fbe56f3': 'Center Display', '4fc0e68b093db41b45a4ea706fbe56f3': 'Center Display',
@ -3531,5 +3531,7 @@ extendLocale('en-US', {
'd6ecb32a380c91887a9346653c2427e9': 'd6ecb32a380c91887a9346653c2427e9':
'Customized option rendering template, supporting the use of JSX and data field variables', 'Customized option rendering template, supporting the use of JSX and data field variables',
'cb048b2d8426afd464dc01b72c446342': 'Block level (default)', 'cb048b2d8426afd464dc01b72c446342': 'Block level (default)',
'3b6e8d54b7b2ae890d5357b7eaaeaaf2': 'No line breaks (default)' '3b6e8d54b7b2ae890d5357b7eaaeaaf2': 'No line breaks (default)',
'0611733b53e0098e6fd880bd44b2806f':
'The minimum height is the smallest vertical display area of the current element'
}); });

View File

@ -3002,7 +3002,7 @@ extendLocale('zh-CN', {
'55becc96b40692cc9cf898b331d16976': '自动适配', '55becc96b40692cc9cf898b331d16976': '自动适配',
'ede82efb4a69c35743185c6c73ab771e': '最小宽度即当前元素最小的水平展示区域', 'ede82efb4a69c35743185c6c73ab771e': '最小宽度即当前元素最小的水平展示区域',
'6f420734edfaff00a8210a4c762a9207': '最大高度即当前元素最多的展示高度', '6f420734edfaff00a8210a4c762a9207': '最大高度即当前元素最多的展示高度',
'411f9d120093314cd38e6dd5cce398c6': '最小度即当前元素最小的垂直展示区域', '411f9d120093314cd38e6dd5cce398c6': '最小度即当前元素最小的垂直展示区域',
'ff9e9329fe186be342ef59ee711b9371': ' y轴滚动模式', 'ff9e9329fe186be342ef59ee711b9371': ' y轴滚动模式',
'b31c6aaa78f8e24df665ce80ab5301e2': '用于设置垂直方向的滚动模式', 'b31c6aaa78f8e24df665ce80ab5301e2': '用于设置垂直方向的滚动模式',
'4fc0e68b093db41b45a4ea706fbe56f3': '居中显示', '4fc0e68b093db41b45a4ea706fbe56f3': '居中显示',
@ -3122,5 +3122,6 @@ extendLocale('zh-CN', {
'd6ecb32a380c91887a9346653c2427e9': 'd6ecb32a380c91887a9346653c2427e9':
'自定义选项渲染模板支持JSX、数据域变量使用', '自定义选项渲染模板支持JSX、数据域变量使用',
'cb048b2d8426afd464dc01b72c446342': '块级(默认)', 'cb048b2d8426afd464dc01b72c446342': '块级(默认)',
'3b6e8d54b7b2ae890d5357b7eaaeaaf2': '不换行(默认)' '3b6e8d54b7b2ae890d5357b7eaaeaaf2': '不换行(默认)',
'0611733b53e0098e6fd880bd44b2806f': '最小高度即当前元素最小的垂直展示区域'
}); });

View File

@ -941,7 +941,7 @@ setSchemaTpl(
type: 'input-number', type: 'input-number',
label: label:
config?.label || config?.label ||
tipedLabel('最小高度', '最小度即当前元素最小的垂直展示区域'), tipedLabel('最小高度', '最小度即当前元素最小的垂直展示区域'),
name: config?.name || 'style.minHeight', name: config?.name || 'style.minHeight',
value: config?.value, value: config?.value,
max: '${style.maxHeight | toInt}', max: '${style.maxHeight | toInt}',