@cloudbase/weda-ui 3.6.3 → 3.6.6
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-upload-file.d.ts +1 -0
- package/dist/configs/components/wd-upload-file.js +4 -1
- package/dist/configs/components/wd-upload-image.d.ts +2 -0
- package/dist/configs/components/wd-upload-image.js +4 -1
- package/dist/configs/index.d.ts +4 -0
- package/dist/style/index.scss +1 -1
- package/dist/web/components/form/uploader/uploader.h5.js +3 -3
- package/dist/web/components/form/uploader/uploader.pc.js +3 -3
- package/dist/web/components/form-input-hooks/validator.js +2 -2
- package/dist/web/components/listView/index.js +4 -1
- package/dist/web/components/navigationBar/common.js +1 -1
- package/dist/web/components/richTextView/index.css +2 -1
- package/dist/web/components/wd-input/wd-input.d.ts +2 -2
- package/dist/web/components/wd-input-phone/wd-input-phone.js +2 -2
- package/dist/web/components/wd-table/utils/index.js +20 -8
- package/dist/web/components/wd-table/wd-table.js +4 -2
- package/dist/web/components/wd-textarea/calcTextareaHeight.d.ts +1 -0
- package/dist/web/components/wd-textarea/calcTextareaHeight.js +45 -0
- package/dist/web/components/wd-textarea/wd-textarea.js +4 -6
- package/package.json +1 -1
|
@@ -109,6 +109,7 @@ declare const config: {
|
|
|
109
109
|
} | {
|
|
110
110
|
detail: import("@sinclair/typebox").TObject<{
|
|
111
111
|
value: import("@sinclair/typebox").TUnknown;
|
|
112
|
+
isDelete: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
112
113
|
}>;
|
|
113
114
|
name: string;
|
|
114
115
|
title: string;
|
|
@@ -76,7 +76,10 @@ const classes = [
|
|
|
76
76
|
CLASSES.item_error,
|
|
77
77
|
CLASSES.item_help,
|
|
78
78
|
];
|
|
79
|
-
const paramValueType = Type.Object({
|
|
79
|
+
const paramValueType = Type.Object({
|
|
80
|
+
value: Type.Unknown({ title: '值' }),
|
|
81
|
+
isDelete: Type.Optional(Type.Boolean({ title: '是否删除动作' })),
|
|
82
|
+
});
|
|
80
83
|
// export default
|
|
81
84
|
const config = defineConfig({
|
|
82
85
|
$schema: 'https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/schema/lcds_component.json',
|
|
@@ -49,6 +49,7 @@ export type EventsType = {
|
|
|
49
49
|
}) => void;
|
|
50
50
|
change: (arg: {
|
|
51
51
|
value: unknown;
|
|
52
|
+
isDelete?: boolean;
|
|
52
53
|
}) => void;
|
|
53
54
|
error: (err: unknown) => void;
|
|
54
55
|
}>;
|
|
@@ -119,6 +120,7 @@ declare const config: {
|
|
|
119
120
|
} | {
|
|
120
121
|
detail: import("@sinclair/typebox").TObject<{
|
|
121
122
|
value: import("@sinclair/typebox").TUnknown;
|
|
123
|
+
isDelete: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
122
124
|
}>;
|
|
123
125
|
name: string;
|
|
124
126
|
title: string;
|
|
@@ -105,7 +105,10 @@ const data = Type.Partial(Type.Object({
|
|
|
105
105
|
},
|
|
106
106
|
}),
|
|
107
107
|
}));
|
|
108
|
-
const paramValueType = Type.Object({
|
|
108
|
+
const paramValueType = Type.Object({
|
|
109
|
+
value: Type.Unknown({ title: '值' }),
|
|
110
|
+
isDelete: Type.Optional(Type.Boolean({ title: '是否删除动作' })),
|
|
111
|
+
});
|
|
109
112
|
const events = [
|
|
110
113
|
{ ...{}, ...FORM_ITEM_EVENTS.change, detail: paramValueType },
|
|
111
114
|
FORM_ITEM_EVENTS.success,
|
package/dist/configs/index.d.ts
CHANGED
|
@@ -15382,6 +15382,7 @@ export declare const components: {
|
|
|
15382
15382
|
} | {
|
|
15383
15383
|
detail: import("@sinclair/typebox").TObject<{
|
|
15384
15384
|
value: import("@sinclair/typebox").TUnknown;
|
|
15385
|
+
isDelete: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15385
15386
|
}>;
|
|
15386
15387
|
name: string;
|
|
15387
15388
|
title: string;
|
|
@@ -15550,6 +15551,7 @@ export declare const components: {
|
|
|
15550
15551
|
} | {
|
|
15551
15552
|
detail: import("@sinclair/typebox").TObject<{
|
|
15552
15553
|
value: import("@sinclair/typebox").TUnknown;
|
|
15554
|
+
isDelete: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15553
15555
|
}>;
|
|
15554
15556
|
name: string;
|
|
15555
15557
|
title: string;
|
|
@@ -34658,6 +34660,7 @@ declare const _default: {
|
|
|
34658
34660
|
} | {
|
|
34659
34661
|
detail: import("@sinclair/typebox").TObject<{
|
|
34660
34662
|
value: import("@sinclair/typebox").TUnknown;
|
|
34663
|
+
isDelete: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34661
34664
|
}>;
|
|
34662
34665
|
name: string;
|
|
34663
34666
|
title: string;
|
|
@@ -34826,6 +34829,7 @@ declare const _default: {
|
|
|
34826
34829
|
} | {
|
|
34827
34830
|
detail: import("@sinclair/typebox").TObject<{
|
|
34828
34831
|
value: import("@sinclair/typebox").TUnknown;
|
|
34832
|
+
isDelete: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34829
34833
|
}>;
|
|
34830
34834
|
name: string;
|
|
34831
34835
|
title: string;
|