@cloudbase/weda-ui 3.7.8 → 3.7.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.
- package/dist/configs/components/wd-image.d.ts +1 -0
- package/dist/configs/components/wd-image.js +1 -0
- package/dist/configs/index.d.ts +2 -0
- package/dist/configs/type-utils/type-form.js +3 -3
- package/dist/style/index.scss +1 -1
- package/dist/web/components/wd-form-obj/base-form-obj.js +1 -1
- package/package.json +1 -1
|
@@ -77,6 +77,7 @@ declare const config: {
|
|
|
77
77
|
readonly category: "展示";
|
|
78
78
|
readonly figureIcon: "../figureIcons/WdImage.svg";
|
|
79
79
|
readonly icon: "../icons/Image.svg";
|
|
80
|
+
readonly stylePanelTips: "如遇图片高度设置不生效,请在属性区将布局模式设置为非高度自适应";
|
|
80
81
|
readonly categoryOrder: 400;
|
|
81
82
|
readonly componentOrder: 230;
|
|
82
83
|
readonly visible: readonly ["APP"];
|
package/dist/configs/index.d.ts
CHANGED
|
@@ -12564,6 +12564,7 @@ export declare const components: {
|
|
|
12564
12564
|
readonly category: "展示";
|
|
12565
12565
|
readonly figureIcon: "../figureIcons/WdImage.svg";
|
|
12566
12566
|
readonly icon: "../icons/Image.svg";
|
|
12567
|
+
readonly stylePanelTips: "如遇图片高度设置不生效,请在属性区将布局模式设置为非高度自适应";
|
|
12567
12568
|
readonly categoryOrder: 400;
|
|
12568
12569
|
readonly componentOrder: 230;
|
|
12569
12570
|
readonly visible: readonly ["APP"];
|
|
@@ -32616,6 +32617,7 @@ declare const _default: {
|
|
|
32616
32617
|
readonly category: "展示";
|
|
32617
32618
|
readonly figureIcon: "../figureIcons/WdImage.svg";
|
|
32618
32619
|
readonly icon: "../icons/Image.svg";
|
|
32620
|
+
readonly stylePanelTips: "如遇图片高度设置不生效,请在属性区将布局模式设置为非高度自适应";
|
|
32619
32621
|
readonly categoryOrder: 400;
|
|
32620
32622
|
readonly componentOrder: 230;
|
|
32621
32623
|
readonly visible: readonly ["APP"];
|
|
@@ -620,24 +620,24 @@ export const FORM_ITEM_DATA = {
|
|
|
620
620
|
format: 'YYYY-MM-DD',
|
|
621
621
|
showTime: false,
|
|
622
622
|
placeholder: '请选择时间',
|
|
623
|
+
description: '默认选中的时间,格式为Unix 时间戳,例如:1718681637000',
|
|
623
624
|
},
|
|
624
625
|
}),
|
|
625
626
|
_valueInDateRange: Type.Unknown({
|
|
626
|
-
title: '选中日期区间',
|
|
627
|
-
description: '默认选中日期区间,数组格式',
|
|
628
627
|
'x-category': X_CATEGORY.COMMON,
|
|
629
628
|
'x-index': 20,
|
|
630
629
|
'x-component': 'daterange',
|
|
630
|
+
description: '默认选中日期区间,格式为Unix 时间戳数组,例如:[1718681637000,1719504000000]',
|
|
631
631
|
}),
|
|
632
632
|
_valueInTime: Type.Any({
|
|
633
633
|
title: '选中时间',
|
|
634
634
|
format: 'time',
|
|
635
635
|
'x-category': X_CATEGORY.COMMON,
|
|
636
636
|
'x-index': 20,
|
|
637
|
-
description: '默认选中的时间',
|
|
638
637
|
dataType: 'number',
|
|
639
638
|
'x-component': 'time',
|
|
640
639
|
'x-component-props': { format: 'HH:mm' },
|
|
640
|
+
description: '默认选中的时间,格式为时间毫秒数,例如:00:01的值为60000',
|
|
641
641
|
}),
|
|
642
642
|
_valueInSelectMultiple: Type.Array(Type.String({
|
|
643
643
|
type: 'string',
|