dlzn-ui 1.69.0 → 1.71.0
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/components/input/src/input.vue.d.ts +3 -3
- package/components/input-number/src/input-number.vue.d.ts +2 -2
- package/components/range-input/src/range-input.vue.d.ts +1 -1
- package/components/select/src/select.vue.d.ts +4 -4
- package/components/textarea/src/textarea.vue.d.ts +2 -2
- package/components/tree/src/tree.vue.d.ts +2 -2
- package/components/tree-select/src/tree-select.vue.d.ts +1 -1
- package/components/upload/src/upload.vue.d.ts +1 -1
- package/package.json +7 -6
|
@@ -6,11 +6,11 @@ declare const __VLS_export: import("vue").DefineComponent<InputProps$1, {}, {},
|
|
|
6
6
|
}, string, import("vue").PublicProps, Readonly<InputProps$1> & Readonly<{
|
|
7
7
|
"onUpdate:modelValue"?: ((value: InputValue) => any) | undefined;
|
|
8
8
|
}>, {
|
|
9
|
-
disabled: boolean;
|
|
10
|
-
readonly: boolean;
|
|
11
|
-
placeholder: string;
|
|
12
9
|
autocomplete: string;
|
|
13
10
|
clearable: boolean;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
placeholder: string;
|
|
13
|
+
readonly: boolean;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const _default: typeof __VLS_export;
|
|
16
16
|
//#endregion
|
|
@@ -6,11 +6,11 @@ declare const __VLS_export: import("vue").DefineComponent<InputNumberProps$1, {}
|
|
|
6
6
|
}, string, import("vue").PublicProps, Readonly<InputNumberProps$1> & Readonly<{
|
|
7
7
|
"onUpdate:modelValue"?: ((value: InputNumberValue) => any) | undefined;
|
|
8
8
|
}>, {
|
|
9
|
-
|
|
9
|
+
autoWidth: boolean;
|
|
10
10
|
disabled: boolean;
|
|
11
11
|
readonly: boolean;
|
|
12
|
+
theme: "normal" | "row";
|
|
12
13
|
min: InputNumberValue;
|
|
13
|
-
autoWidth: boolean;
|
|
14
14
|
decimalPlaces: import("tdesign-vue-next").InputNumberDecimalPlaces;
|
|
15
15
|
useGrouping: boolean;
|
|
16
16
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -12,8 +12,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
12
12
|
"onUpdate:modelValue"?: ((value: RangeInputValue) => any) | undefined;
|
|
13
13
|
}>, {
|
|
14
14
|
disabled: boolean | Array<boolean>;
|
|
15
|
-
max: number;
|
|
16
15
|
readonly: boolean;
|
|
16
|
+
max: number;
|
|
17
17
|
min: number;
|
|
18
18
|
decimalPlaces: number;
|
|
19
19
|
isNumberRange: boolean;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { SelectProps } from "./select.js";
|
|
2
2
|
//#region ../../packages/dlzn-ui/components/select/src/select.vue.d.ts
|
|
3
3
|
declare const __VLS_export: import("vue").DefineComponent<SelectProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectProps> & Readonly<{}>, {
|
|
4
|
-
|
|
4
|
+
clearable: boolean;
|
|
5
5
|
disabled: boolean;
|
|
6
|
+
placeholder: string;
|
|
6
7
|
readonly: boolean;
|
|
7
|
-
|
|
8
|
+
keys: import("tdesign-vue-next").KeysType;
|
|
8
9
|
showArrow: boolean;
|
|
9
10
|
scroll: import("tdesign-vue-next").InfinityScroll;
|
|
10
|
-
|
|
11
|
-
clearable: boolean;
|
|
11
|
+
showCheckAll: boolean;
|
|
12
12
|
filterable: boolean;
|
|
13
13
|
inputValue: string;
|
|
14
14
|
minCollapsedNum: number;
|
|
@@ -7,9 +7,9 @@ declare const __VLS_export: import("vue").DefineComponent<TextareaProps$1, {}, {
|
|
|
7
7
|
"onUpdate:modelValue"?: ((value: TextareaValue) => any) | undefined;
|
|
8
8
|
}>, {
|
|
9
9
|
disabled: boolean;
|
|
10
|
-
readonly: boolean;
|
|
11
|
-
placeholder: string;
|
|
12
10
|
maxlength: string | number;
|
|
11
|
+
placeholder: string;
|
|
12
|
+
readonly: boolean;
|
|
13
13
|
autosize: boolean | {
|
|
14
14
|
minRows?: number;
|
|
15
15
|
maxRows?: number;
|
|
@@ -2,10 +2,10 @@ import { TreeProps as TreeProps$1 } from "./tree.js";
|
|
|
2
2
|
import { TreeInstanceFunctions } from "tdesign-vue-next";
|
|
3
3
|
//#region ../../packages/dlzn-ui/components/tree/src/tree.vue.d.ts
|
|
4
4
|
declare const __VLS_export: import("vue").DefineComponent<TreeProps$1, TreeInstanceFunctions<import("tdesign-vue-next").TreeOptionData>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TreeProps$1> & Readonly<{}>, {
|
|
5
|
-
lazy: boolean;
|
|
6
5
|
disabled: boolean;
|
|
7
|
-
icon: boolean | ((h: typeof import("vue").h, props: import("tdesign-vue-next").TreeNodeModel<import("tdesign-vue-next/es/tree/utils/adapt").TypeTreeOptionData>) => import("tdesign-vue-next").TNodeReturnValue);
|
|
8
6
|
label: string | boolean | ((h: typeof import("vue").h, props: import("tdesign-vue-next").TreeNodeModel<import("tdesign-vue-next/es/tree/utils/adapt").TypeTreeOptionData>) => import("tdesign-vue-next").TNodeReturnValue);
|
|
7
|
+
lazy: boolean;
|
|
8
|
+
icon: boolean | ((h: typeof import("vue").h, props: import("tdesign-vue-next").TreeNodeModel<import("tdesign-vue-next/es/tree/utils/adapt").TypeTreeOptionData>) => import("tdesign-vue-next").TNodeReturnValue);
|
|
9
9
|
hover: boolean;
|
|
10
10
|
checkable: boolean;
|
|
11
11
|
expandOnClickNode: boolean;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { TreeSelectProps } from "./tree-select.js";
|
|
2
2
|
//#region ../../packages/dlzn-ui/components/tree-select/src/tree-select.vue.d.ts
|
|
3
3
|
declare const __VLS_export: import("vue").DefineComponent<TreeSelectProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TreeSelectProps> & Readonly<{}>, {
|
|
4
|
+
clearable: boolean;
|
|
4
5
|
disabled: boolean;
|
|
5
6
|
readonly: boolean;
|
|
6
|
-
clearable: boolean;
|
|
7
7
|
filterable: boolean;
|
|
8
8
|
popupVisible: boolean;
|
|
9
9
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -3,8 +3,8 @@ import { UploadInstanceFunctions, UploadProps } from "./upload.js";
|
|
|
3
3
|
declare var __VLS_10: string, __VLS_11: any;
|
|
4
4
|
type __VLS_Slots = {} & { [K in NonNullable<typeof __VLS_10>]?: (props: typeof __VLS_11) => any; };
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<UploadProps, UploadInstanceFunctions, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<UploadProps> & Readonly<{}>, {
|
|
6
|
-
theme: "custom" | "file" | "file-input" | "file-flow" | "image" | "image-flow";
|
|
7
6
|
disabled: boolean;
|
|
7
|
+
theme: "custom" | "file" | "file-input" | "file-flow" | "image" | "image-flow";
|
|
8
8
|
multiple: boolean;
|
|
9
9
|
accept: string;
|
|
10
10
|
useMockProgress: boolean;
|
package/package.json
CHANGED
|
@@ -2,13 +2,14 @@
|
|
|
2
2
|
"name": "dlzn-ui",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"sideEffects":
|
|
6
|
-
"**/*.css"
|
|
7
|
-
],
|
|
5
|
+
"sideEffects": false,
|
|
8
6
|
"exports": {
|
|
9
7
|
".": {
|
|
10
|
-
"types": "./index.d.ts"
|
|
11
|
-
|
|
8
|
+
"types": "./index.d.ts"
|
|
9
|
+
},
|
|
10
|
+
"./components/*": {
|
|
11
|
+
"types": "./components/*/index.d.ts",
|
|
12
|
+
"import": "./components/*/index.mjs"
|
|
12
13
|
},
|
|
13
14
|
"./utils": {
|
|
14
15
|
"types": "./utils/index.d.ts",
|
|
@@ -66,5 +67,5 @@
|
|
|
66
67
|
"> 1%",
|
|
67
68
|
"not dead"
|
|
68
69
|
],
|
|
69
|
-
"version": "1.
|
|
70
|
+
"version": "1.71.0"
|
|
70
71
|
}
|