@cloudbase/weda-ui 3.26.0 → 3.26.1
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-drawer.d.ts +2 -2
- package/dist/configs/components/wd-drawer.js +4 -4
- package/dist/configs/index.d.ts +4 -4
- package/dist/configs/type-utils/type-form.js +1 -1
- package/dist/style/weda-ui.min.css +3 -3
- package/dist/web/components/wd-drawer/wd-drawer.js +0 -24
- package/dist/web/components/wd-select/hooks/useChooseList.js +0 -1
- package/dist/web/components/wd-select/relationSelect/relationSelect.js +28 -8
- package/dist/web/components/wd-table/components/FieldRender/Form/Enum.js +3 -2
- package/package.json +1 -1
|
@@ -116,8 +116,8 @@ declare const config: {
|
|
|
116
116
|
readonly title: "抽屉";
|
|
117
117
|
readonly description: "屏幕边缘滑出的浮层面板。";
|
|
118
118
|
readonly propertyPanelTips: "在小程序中使用时,不建议嵌套在其他容器/组件中,以免抽屉被遮盖";
|
|
119
|
-
readonly figureIcon: "../figureIcons/
|
|
120
|
-
readonly icon: "../icons/
|
|
119
|
+
readonly figureIcon: "../figureIcons/WdDrawer.svg";
|
|
120
|
+
readonly icon: "../icons/WdDrawer.svg";
|
|
121
121
|
readonly category: "布局";
|
|
122
122
|
readonly categoryOrder: 200;
|
|
123
123
|
readonly componentOrder: 150;
|
|
@@ -85,7 +85,7 @@ const data = Type.Object({
|
|
|
85
85
|
closeType: Type.Array(Type.String(), {
|
|
86
86
|
title: '关闭方式',
|
|
87
87
|
default: ['outerClick'],
|
|
88
|
-
description: '多选模式,outerClick
|
|
88
|
+
description: '多选模式,outerClick-点击蒙层关闭,esc-点击键盘ESC关闭(仅在PC端生效)',
|
|
89
89
|
'x-index': 30,
|
|
90
90
|
'x-category': '高级属性',
|
|
91
91
|
'x-helper-text': '点击键盘ESC键关闭抽屉仅在PC端生效',
|
|
@@ -94,7 +94,7 @@ const data = Type.Object({
|
|
|
94
94
|
defaultValue: ['outerClick'],
|
|
95
95
|
options: Tuple([
|
|
96
96
|
{
|
|
97
|
-
label: '
|
|
97
|
+
label: '点击蒙层关闭',
|
|
98
98
|
value: 'outerClick',
|
|
99
99
|
},
|
|
100
100
|
{
|
|
@@ -324,8 +324,8 @@ const config = defineConfig({
|
|
|
324
324
|
title: '抽屉',
|
|
325
325
|
description: '屏幕边缘滑出的浮层面板。',
|
|
326
326
|
propertyPanelTips: '在小程序中使用时,不建议嵌套在其他容器/组件中,以免抽屉被遮盖',
|
|
327
|
-
figureIcon: '../figureIcons/
|
|
328
|
-
icon: '../icons/
|
|
327
|
+
figureIcon: '../figureIcons/WdDrawer.svg',
|
|
328
|
+
icon: '../icons/WdDrawer.svg',
|
|
329
329
|
category: '布局',
|
|
330
330
|
categoryOrder: 200,
|
|
331
331
|
componentOrder: 150,
|
package/dist/configs/index.d.ts
CHANGED
|
@@ -2061,8 +2061,8 @@ export declare const components: {
|
|
|
2061
2061
|
readonly title: "抽屉";
|
|
2062
2062
|
readonly description: "屏幕边缘滑出的浮层面板。";
|
|
2063
2063
|
readonly propertyPanelTips: "在小程序中使用时,不建议嵌套在其他容器/组件中,以免抽屉被遮盖";
|
|
2064
|
-
readonly figureIcon: "../figureIcons/
|
|
2065
|
-
readonly icon: "../icons/
|
|
2064
|
+
readonly figureIcon: "../figureIcons/WdDrawer.svg";
|
|
2065
|
+
readonly icon: "../icons/WdDrawer.svg";
|
|
2066
2066
|
readonly category: "布局";
|
|
2067
2067
|
readonly categoryOrder: 200;
|
|
2068
2068
|
readonly componentOrder: 150;
|
|
@@ -21675,8 +21675,8 @@ declare const _default: {
|
|
|
21675
21675
|
readonly title: "抽屉";
|
|
21676
21676
|
readonly description: "屏幕边缘滑出的浮层面板。";
|
|
21677
21677
|
readonly propertyPanelTips: "在小程序中使用时,不建议嵌套在其他容器/组件中,以免抽屉被遮盖";
|
|
21678
|
-
readonly figureIcon: "../figureIcons/
|
|
21679
|
-
readonly icon: "../icons/
|
|
21678
|
+
readonly figureIcon: "../figureIcons/WdDrawer.svg";
|
|
21679
|
+
readonly icon: "../icons/WdDrawer.svg";
|
|
21680
21680
|
readonly category: "布局";
|
|
21681
21681
|
readonly categoryOrder: 200;
|
|
21682
21682
|
readonly componentOrder: 150;
|
|
@@ -1864,7 +1864,7 @@ export const FORM_ITEM_DATA = {
|
|
|
1864
1864
|
target: 'selectFieldLabel',
|
|
1865
1865
|
condition: '{{ Boolean($value) }}',
|
|
1866
1866
|
schema: {
|
|
1867
|
-
enum: '{{getDataSourceValueOptions($form?.values?.dataSourceName, true, true).filter(i=>i.type==="string")}}',
|
|
1867
|
+
enum: '{{getDataSourceValueOptions($form?.values?.dataSourceName, true, true).filter(i=>i.type==="string"&&"x-enum"!==i.format)}}',
|
|
1868
1868
|
},
|
|
1869
1869
|
},
|
|
1870
1870
|
],
|