@das-fed/ui 6.4.0-dev.112 → 6.4.0-dev.114
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/package.json +5 -5
- package/packages/business-components/change-pwd/index.js +13 -10
- package/packages/business-components/change-pwd/index.js.gz +0 -0
- package/packages/business-components/change-pwd/style.css +1 -1
- package/packages/business-components/device-panel/index.js +2 -2
- package/packages/business-components/device-panel/index.js.gz +0 -0
- package/packages/business-components/device-panel/style.css +1 -1
- package/packages/business-components/device-panel/style.css.gz +0 -0
- package/packages/business-components/process-search-form/hooks/useService.d.ts +1 -1
- package/packages/business-components/video-dialog/index.js +193 -186
- package/packages/business-components/video-dialog/index.js.gz +0 -0
- package/packages/business-components/video-dialog/src/component/Player/index.vue.d.ts +1 -0
- package/packages/business-components/video-dialog/style.css +1 -1
- package/packages/business-components/video-dialog/style.css.gz +0 -0
- package/packages/components/scrollbar/index.js +1 -1
- package/packages/components/scrollbar/index.js.gz +0 -0
- package/packages/components/scrollbar/style.css +1 -1
- package/packages/components/scrollbar/style.css.gz +0 -0
- package/packages/components/select/index.js +58 -57
- package/packages/components/select/index.js.gz +0 -0
- package/packages/components/select/src/type.d.ts +2 -0
- package/packages/components/select/style.css +1 -1
- package/packages/components/select/style.css.gz +0 -0
- package/packages/components/tree-select/src/App.vue.d.ts +2 -0
- package/packages/components/tree-select/src/hooks/use-tree-select.d.ts +2 -0
|
Binary file
|
|
@@ -37,6 +37,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
|
37
37
|
readonly errorModelZIndex?: number | undefined;
|
|
38
38
|
readonly isExterControlCount?: boolean | undefined;
|
|
39
39
|
readonly dropdownMode?: "multiple" | "tags" | "combobox" | "custom" | undefined;
|
|
40
|
+
readonly inputAttrs?: any;
|
|
40
41
|
readonly onChange?: ((currValue: any, options: any) => any) | undefined;
|
|
41
42
|
readonly onFocus?: ((val: any) => any) | undefined;
|
|
42
43
|
readonly onBlur?: ((val: any) => any) | undefined;
|
|
@@ -223,6 +224,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
|
223
224
|
readonly errorModelZIndex?: number | undefined;
|
|
224
225
|
readonly isExterControlCount?: boolean | undefined;
|
|
225
226
|
readonly dropdownMode?: "multiple" | "tags" | "combobox" | "custom" | undefined;
|
|
227
|
+
readonly inputAttrs?: any;
|
|
226
228
|
readonly onChange?: ((currValue: any, options: any) => any) | undefined;
|
|
227
229
|
readonly onFocus?: ((val: any) => any) | undefined;
|
|
228
230
|
readonly onBlur?: ((val: any) => any) | undefined;
|
|
@@ -6382,6 +6382,7 @@ export declare const useTreeSelect: (props: Props, emit: Emits, nodeKey: any, at
|
|
|
6382
6382
|
readonly errorModelZIndex?: number | undefined;
|
|
6383
6383
|
readonly isExterControlCount?: boolean | undefined;
|
|
6384
6384
|
readonly dropdownMode?: "multiple" | "tags" | "combobox" | "custom" | undefined;
|
|
6385
|
+
readonly inputAttrs?: any;
|
|
6385
6386
|
readonly onChange?: ((currValue: any, options: any) => any) | undefined;
|
|
6386
6387
|
readonly onFocus?: ((val: any) => any) | undefined;
|
|
6387
6388
|
readonly onBlur?: ((val: any) => any) | undefined;
|
|
@@ -6568,6 +6569,7 @@ export declare const useTreeSelect: (props: Props, emit: Emits, nodeKey: any, at
|
|
|
6568
6569
|
readonly errorModelZIndex?: number | undefined;
|
|
6569
6570
|
readonly isExterControlCount?: boolean | undefined;
|
|
6570
6571
|
readonly dropdownMode?: "multiple" | "tags" | "combobox" | "custom" | undefined;
|
|
6572
|
+
readonly inputAttrs?: any;
|
|
6571
6573
|
readonly onChange?: ((currValue: any, options: any) => any) | undefined;
|
|
6572
6574
|
readonly onFocus?: ((val: any) => any) | undefined;
|
|
6573
6575
|
readonly onBlur?: ((val: any) => any) | undefined;
|