@dazhicheng/ui 1.6.25 → 1.6.26

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.
Files changed (130) hide show
  1. package/dist/components/tt-api-component/index.d.ts +35 -24
  2. package/dist/components/tt-api-component/index.vue.d.ts +34 -0
  3. package/dist/components/tt-area/TtArea.vue.d.ts +2 -0
  4. package/dist/components/tt-area/index.d.ts +1 -1
  5. package/dist/components/tt-button/components/AddButton.vue.d.ts +2 -0
  6. package/dist/components/tt-button/index.d.ts +589 -260
  7. package/dist/components/tt-button/index.vue.d.ts +466 -0
  8. package/dist/components/tt-checkbox/index.d.ts +35 -26
  9. package/dist/components/tt-checkbox/index.vue.d.ts +28 -0
  10. package/dist/components/tt-drawer/index.d.ts +299 -306
  11. package/dist/components/tt-drawer/src/{RenderDrawer.d.ts → RenderDrawer.vue.d.ts} +146 -149
  12. package/dist/components/tt-drawer/src/components/{DrawerFooter.d.ts → DrawerFooter.vue.d.ts} +16 -18
  13. package/dist/components/tt-drawer/src/components/{DrawerHeader.d.ts → DrawerHeader.vue.d.ts} +3 -4
  14. package/dist/components/tt-drawer/src/hooks/useDrawerRender.d.ts +2 -2
  15. package/dist/components/tt-drawer/src/hooks/useResizable.d.ts +2 -2
  16. package/dist/components/tt-drawer/src/utils/drawer-api.d.ts +2 -4
  17. package/dist/components/tt-empty/index.d.ts +8 -10
  18. package/dist/components/tt-form/src/components/{ExpandableArrow.d.ts → ExpandableArrow.vue.d.ts} +4 -5
  19. package/dist/components/tt-form/src/components/{FormActions.d.ts → FormActions.vue.d.ts} +5 -6
  20. package/dist/components/tt-form/src/components/{FormElInput.d.ts → FormElInput.vue.d.ts} +101 -105
  21. package/dist/components/tt-form/src/components/Slot.d.ts +4 -4
  22. package/dist/components/tt-form/src/form/{FormControl.d.ts → FormControl.vue.d.ts} +1 -2
  23. package/dist/components/tt-form/src/form/{FormDescription.d.ts → FormDescription.vue.d.ts} +1 -2
  24. package/dist/components/tt-form/src/form/{FormItem.d.ts → FormItem.vue.d.ts} +1 -2
  25. package/dist/components/tt-form/src/form/{FormLabel.d.ts → FormLabel.vue.d.ts} +1 -2
  26. package/dist/components/tt-form/src/form/FormMessage.vue.d.ts +2 -0
  27. package/dist/components/tt-form/src/form/FormMessageToolTip.vue.d.ts +8 -0
  28. package/dist/components/tt-form/src/form/{FormWarnMessage.d.ts → FormWarnMessage.vue.d.ts} +1 -2
  29. package/dist/components/tt-form/src/form/{RenderContent.d.ts → RenderContent.vue.d.ts} +4 -4
  30. package/dist/components/tt-form/src/form/index.d.ts +8 -8
  31. package/dist/components/tt-form/src/form/useFormField.d.ts +5 -6
  32. package/dist/components/tt-form/src/form-render/{FormField.d.ts → FormField.vue.d.ts} +1 -2
  33. package/dist/components/tt-form/src/form-render/FormFieldContact.d.ts +6 -6
  34. package/dist/components/tt-form/src/form-render/{FormLabel.d.ts → FormLabel.vue.d.ts} +2 -3
  35. package/dist/components/tt-form/src/form-render/array-register/FormArrayRegister.d.ts +11 -14
  36. package/dist/components/tt-form/src/form-render/context.d.ts +4 -5
  37. package/dist/components/tt-form/src/form-render/dependencies.d.ts +6 -7
  38. package/dist/components/tt-form/src/form-render/expandable.d.ts +3 -4
  39. package/dist/components/tt-form/src/form-render/{form.d.ts → form.vue.d.ts} +8 -9
  40. package/dist/components/tt-form/src/form-render/index.d.ts +3 -3
  41. package/dist/components/tt-form/src/formApi.d.ts +3 -3
  42. package/dist/components/tt-form/src/group-form/{GroupForm.d.ts → GroupForm.vue.d.ts} +5 -7
  43. package/dist/components/tt-form/src/group-form/{GroupSection.d.ts → GroupSection.vue.d.ts} +5 -7
  44. package/dist/components/tt-form/src/group-form/{LazyFormField.d.ts → LazyFormField.vue.d.ts} +3 -5
  45. package/dist/components/tt-form/src/group-form/groupFormApi.d.ts +5 -7
  46. package/dist/components/tt-form/src/hooks/useFormFieldBus.d.ts +2 -3
  47. package/dist/components/tt-form/src/hooks/useForwardProps.d.ts +2 -2
  48. package/dist/components/tt-form/src/hooks/useForwardPropsEmits.d.ts +2 -2
  49. package/dist/components/tt-form/src/index.vue.d.ts +216 -0
  50. package/dist/components/tt-form/src/useForm.d.ts +1 -2
  51. package/dist/components/tt-form/src/useFormContext.d.ts +1 -2
  52. package/dist/components/tt-form-item-error-tooltip/index.d.ts +337 -61
  53. package/dist/components/tt-form-item-error-tooltip/index.vue.d.ts +298 -0
  54. package/dist/components/tt-icon/components/AddIcon.vue.d.ts +7 -0
  55. package/dist/components/tt-icon/components/SubIcon.vue.d.ts +7 -0
  56. package/dist/components/tt-icon/index.d.ts +115 -24
  57. package/dist/components/tt-icon/index.vue.d.ts +32 -0
  58. package/dist/components/tt-image/index.d.ts +41 -45
  59. package/dist/components/tt-image/src/components/ImageViewer.d.ts +26 -30
  60. package/dist/components/tt-image/tt-image.d.ts +34 -36
  61. package/dist/components/tt-loading/index.d.ts +2 -5
  62. package/dist/components/tt-loading/src/loading.vue.d.ts +12 -0
  63. package/dist/components/tt-log/index.d.ts +6 -7
  64. package/dist/components/tt-log/index.vue.d.ts +5 -0
  65. package/dist/components/tt-modal/index.d.ts +364 -371
  66. package/dist/components/tt-modal/src/{RenderModal.d.ts → RenderModal.vue.d.ts} +115 -118
  67. package/dist/components/tt-modal/src/components/{ModalFooter.d.ts → ModalFooter.vue.d.ts} +23 -26
  68. package/dist/components/tt-modal/src/components/{ModalHeader.d.ts → ModalHeader.vue.d.ts} +3 -4
  69. package/dist/components/tt-modal/src/components/{ModalWrapper.d.ts → ModalWrapper.vue.d.ts} +24 -27
  70. package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +29 -32
  71. package/dist/components/tt-modal/src/typing.d.ts +2 -2
  72. package/dist/components/tt-modal/src/utils/modal-api.d.ts +1 -2
  73. package/dist/components/tt-modal-form/hooks/useModalFormSlot.d.ts +2 -3
  74. package/dist/components/tt-modal-form/index.d.ts +2 -46
  75. package/dist/components/tt-modal-form/index.vue.d.ts +45 -0
  76. package/dist/components/tt-modal-form/useModalForm.d.ts +3 -4
  77. package/dist/components/tt-nav-anchor/index.d.ts +12 -15
  78. package/dist/components/tt-nav-anchor/src/{TtNavAnchor.d.ts → TtNavAnchor.vue.d.ts} +4 -4
  79. package/dist/components/tt-panel-select/index.d.ts +1 -1
  80. package/dist/components/tt-panel-select/src/components/{PanelLeft.d.ts → PanelLeft.vue.d.ts} +3 -4
  81. package/dist/components/tt-panel-select/src/components/{PanelMiddle.d.ts → PanelMiddle.vue.d.ts} +80 -83
  82. package/dist/components/tt-panel-select/src/components/{PanelRight.d.ts → PanelRight.vue.d.ts} +32 -34
  83. package/dist/components/tt-panel-select/src/hooks/usePanelData.d.ts +6 -7
  84. package/dist/components/tt-panel-select/src/hooks/usePanelSelection.d.ts +5 -5
  85. package/dist/components/tt-panel-select/src/{index.d.ts → index.vue.d.ts} +80 -84
  86. package/dist/components/tt-radio-group/index.d.ts +50 -31
  87. package/dist/components/tt-radio-group/index.vue.d.ts +33 -0
  88. package/dist/components/tt-select/index.d.ts +1 -1
  89. package/dist/components/tt-select/src/{Select.d.ts → Select.vue.d.ts} +141 -146
  90. package/dist/components/tt-select/src/components/{SelectTable.d.ts → SelectTable.vue.d.ts} +36 -40
  91. package/dist/components/tt-select/src/components/{Table.d.ts → Table.vue.d.ts} +38 -41
  92. package/dist/components/tt-select/src/hooks/useGrid.d.ts +2 -2
  93. package/dist/components/tt-select/src/hooks/usePagination.d.ts +3 -4
  94. package/dist/components/tt-select/src/hooks/useSelect.d.ts +2 -2
  95. package/dist/components/tt-select/src/hooks/useSelectTableEvent.d.ts +1 -1
  96. package/dist/components/tt-table/index.d.ts +279 -287
  97. package/dist/components/tt-table/src/{Table.d.ts → Table.vue.d.ts} +204 -209
  98. package/dist/components/tt-table/src/{TableForm.d.ts → TableForm.vue.d.ts} +80 -83
  99. package/dist/components/tt-table/src/components/RowContext.d.ts +5 -5
  100. package/dist/components/tt-table/src/components/{TableAction.d.ts → TableAction.vue.d.ts} +4 -4
  101. package/dist/components/tt-table/src/components/TableButtons.d.ts +5 -5
  102. package/dist/components/tt-table/src/components/{TableColumnModal.d.ts → TableColumnModal.vue.d.ts} +4 -5
  103. package/dist/components/tt-table/src/components/{TableToolbarTools.d.ts → TableToolbarTools.vue.d.ts} +6 -7
  104. package/dist/components/tt-table/src/hooks/useColumns.d.ts +44 -45
  105. package/dist/components/tt-table/src/hooks/usePagination.d.ts +33 -33
  106. package/dist/components/tt-table/src/hooks/useQuery.d.ts +2 -2
  107. package/dist/components/tt-table/src/hooks/useRowSelection.d.ts +2 -2
  108. package/dist/components/tt-table/src/hooks/useSideSlot.d.ts +110 -112
  109. package/dist/components/tt-table/src/hooks/useTableData.d.ts +2 -2
  110. package/dist/components/tt-table/src/props.d.ts +17 -19
  111. package/dist/components/tt-table/src/utils/table-api.d.ts +4 -4
  112. package/dist/components/tt-table/src/utils/table-form-api.d.ts +1 -2
  113. package/dist/components/tt-text/index.d.ts +59 -34
  114. package/dist/components/tt-text/index.vue.d.ts +50 -0
  115. package/dist/components/tt-upload/index.d.ts +311 -317
  116. package/dist/components/tt-upload/src/TtUpload.vue.d.ts +517 -0
  117. package/dist/components/tt-upload/src/typing.d.ts +47 -49
  118. package/dist/hooks/useLoading.d.ts +2 -2
  119. package/dist/hooks/useScreenshotOss.d.ts +2 -2
  120. package/dist/index.d.ts +1 -2
  121. package/package.json +3 -3
  122. package/dist/components/tt-area/TtArea.d.ts +0 -3
  123. package/dist/components/tt-button/components/AddButton.d.ts +0 -3
  124. package/dist/components/tt-form/src/form/FormMessage.d.ts +0 -3
  125. package/dist/components/tt-form/src/form/FormMessageToolTip.d.ts +0 -9
  126. package/dist/components/tt-form/src/index.d.ts +0 -217
  127. package/dist/components/tt-icon/components/AddIcon.d.ts +0 -8
  128. package/dist/components/tt-icon/components/SubIcon.d.ts +0 -8
  129. package/dist/components/tt-loading/src/loading.d.ts +0 -13
  130. package/dist/components/tt-upload/src/TtUpload.d.ts +0 -519
@@ -1,4 +1,4 @@
1
- import { VNodeChild, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
1
+ import { VNodeChild } from 'vue';
2
2
  import { NavAnchorItemScope, TtNavAnchorProps } from './types';
3
3
  declare function __VLS_template(): {
4
4
  attrs: Partial<{}>;
@@ -17,10 +17,10 @@ declare function __VLS_template(): {
17
17
  rootEl: any;
18
18
  };
19
19
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
20
- declare const __VLS_component: DefineComponent<TtNavAnchorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
20
+ declare const __VLS_component: import('vue').DefineComponent<TtNavAnchorProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
21
21
  change: (key: string) => any;
22
22
  "update:modelValue": (key: string) => any;
23
- }, string, PublicProps, Readonly<TtNavAnchorProps> & Readonly<{
23
+ }, string, import('vue').PublicProps, Readonly<TtNavAnchorProps> & Readonly<{
24
24
  onChange?: ((key: string) => any) | undefined;
25
25
  "onUpdate:modelValue"?: ((key: string) => any) | undefined;
26
26
  }>, {
@@ -33,7 +33,7 @@ declare const __VLS_component: DefineComponent<TtNavAnchorProps, {}, {}, {}, {},
33
33
  modelValue: string;
34
34
  badgeCounts: Record<string, number>;
35
35
  teleportTo: string | HTMLElement;
36
- }, {}, {}, {}, string, ComponentProvideOptions, false, {
36
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
37
37
  sourceRef: HTMLSpanElement;
38
38
  navRef: HTMLDivElement;
39
39
  headerRef: HTMLDivElement;
@@ -1,5 +1,5 @@
1
1
  import { SFCWithInstall } from '../../../../utils/src';
2
- import { default as TtPanelSelectConstructor } from './src/index';
2
+ import { default as TtPanelSelectConstructor } from './src/index.vue';
3
3
  export declare const TtPanelSelect: SFCWithInstall<typeof TtPanelSelectConstructor>;
4
4
  export * from './src/types';
5
5
  export type TtPanelSelectInsp = InstanceType<typeof TtPanelSelectConstructor>;
@@ -1,6 +1,5 @@
1
1
  import { PanelSelectValue } from '../types';
2
2
  import { PanelTreeNode } from '../hooks/usePanelData';
3
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
4
3
  type __VLS_Props = {
5
4
  prefixCls: string;
6
5
  keyword: string;
@@ -8,11 +7,11 @@ type __VLS_Props = {
8
7
  expandedKeys: PanelSelectValue[];
9
8
  leftPlaceholder: string;
10
9
  };
11
- declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
11
  select: (node: PanelTreeNode) => any;
13
12
  "update:keyword": (value: string) => any;
14
- }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
13
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
15
14
  onSelect?: ((node: PanelTreeNode) => any) | undefined;
16
15
  "onUpdate:keyword"?: ((value: string) => any) | undefined;
17
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
16
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
18
17
  export default _default;
@@ -1,20 +1,17 @@
1
- import { nextTick, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, StyleValue, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, ShallowRef, ComputedRef, Ref, CSSProperties, GlobalComponents, GlobalDirectives, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
2
- import { PanelSelectValue, PanelMiddleProps, PanelSelectSeparator } from '../types';
3
- import { ComponentSize, InputModelModifiers, InputType, InputAutoSize, InputProps, ScrollbarDirection, ScrollbarProps } from 'element-plus';
4
- import { IconPropType } from 'element-plus/es/utils/index.mjs';
5
- import { OnCleanup } from '@vue/reactivity';
1
+ import { nextTick } from 'vue';
2
+ import { PanelSelectValue, PanelMiddleProps } from '../types';
6
3
  declare function scrollToGroup(groupValue: PanelSelectValue): Promise<void>;
7
- declare const _default: DefineComponent<PanelMiddleProps, {
4
+ declare const _default: import('vue').DefineComponent<PanelMiddleProps, {
8
5
  scrollToGroup: typeof scrollToGroup;
9
6
  inputFocus: () => void;
10
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
7
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
8
  "update:keyword": (value: string) => any;
12
9
  checkAll: (checked: boolean) => any;
13
10
  allCheck: (checked: boolean) => any;
14
11
  groupCheck: (groupValue: PanelSelectValue, checked: boolean) => any;
15
12
  optionCheck: (value: PanelSelectValue, checked: boolean) => any;
16
13
  optionsCheck: (values: PanelSelectValue[], checked: boolean) => any;
17
- }, string, PublicProps, Readonly<PanelMiddleProps> & Readonly<{
14
+ }, string, import('vue').PublicProps, Readonly<PanelMiddleProps> & Readonly<{
18
15
  "onUpdate:keyword"?: ((value: string) => any) | undefined;
19
16
  onCheckAll?: ((checked: boolean) => any) | undefined;
20
17
  onAllCheck?: ((checked: boolean) => any) | undefined;
@@ -25,22 +22,22 @@ declare const _default: DefineComponent<PanelMiddleProps, {
25
22
  disabled: boolean;
26
23
  scrollToGroupValue: PanelSelectValue;
27
24
  pasteSearch: boolean;
28
- separator: PanelSelectSeparator;
29
- }, {}, {}, {}, string, ComponentProvideOptions, false, {
25
+ separator: import('../types').PanelSelectSeparator;
26
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
30
27
  searchInputRef: ({
31
- $: ComponentInternalInstance;
28
+ $: import('vue').ComponentInternalInstance;
32
29
  $data: {};
33
30
  $props: {
34
31
  readonly id?: string | undefined;
35
- readonly size?: ComponentSize | undefined;
32
+ readonly size?: import('element-plus').ComponentSize | undefined;
36
33
  readonly disabled?: boolean | undefined;
37
34
  readonly modelValue?: string | number | null | undefined | undefined;
38
- readonly modelModifiers?: InputModelModifiers | undefined;
35
+ readonly modelModifiers?: import('element-plus').InputModelModifiers | undefined;
39
36
  readonly maxlength?: string | number | undefined;
40
37
  readonly minlength?: string | number | undefined;
41
- readonly type?: InputType | undefined;
38
+ readonly type?: import('element-plus').InputType | undefined;
42
39
  readonly resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
43
- readonly autosize?: InputAutoSize | undefined;
40
+ readonly autosize?: import('element-plus').InputAutoSize | undefined;
44
41
  readonly autocomplete?: string | undefined;
45
42
  readonly formatter?: ((value: string) => string) | undefined;
46
43
  readonly parser?: ((value: string) => string) | undefined;
@@ -48,16 +45,16 @@ declare const _default: DefineComponent<PanelMiddleProps, {
48
45
  readonly form?: string | undefined;
49
46
  readonly readonly?: boolean | undefined;
50
47
  readonly clearable?: boolean | undefined;
51
- readonly clearIcon?: IconPropType | undefined;
48
+ readonly clearIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
52
49
  readonly showPassword?: boolean | undefined;
53
50
  readonly showWordLimit?: boolean | undefined;
54
51
  readonly wordLimitPosition?: "inside" | "outside" | undefined;
55
- readonly suffixIcon?: IconPropType | undefined;
56
- readonly prefixIcon?: IconPropType | undefined;
52
+ readonly suffixIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
53
+ readonly prefixIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
57
54
  readonly containerRole?: string | undefined;
58
55
  readonly tabindex?: string | number | undefined;
59
56
  readonly validateEvent?: boolean | undefined;
60
- readonly inputStyle?: StyleValue;
57
+ readonly inputStyle?: import('vue').StyleValue;
61
58
  readonly autofocus?: boolean | undefined;
62
59
  readonly rows?: number | undefined;
63
60
  readonly ariaLabel?: string | undefined;
@@ -76,7 +73,7 @@ declare const _default: DefineComponent<PanelMiddleProps, {
76
73
  readonly onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
77
74
  readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
78
75
  readonly onClear?: ((evt: MouseEvent | undefined) => any) | undefined | undefined;
79
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
76
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
80
77
  $attrs: {
81
78
  [x: string]: unknown;
82
79
  };
@@ -84,14 +81,14 @@ declare const _default: DefineComponent<PanelMiddleProps, {
84
81
  [x: string]: unknown;
85
82
  };
86
83
  $slots: Readonly<{
87
- [name: string]: Slot<any> | undefined;
84
+ [name: string]: import('vue').Slot<any> | undefined;
88
85
  }>;
89
- $root: ComponentPublicInstance | null;
90
- $parent: ComponentPublicInstance | null;
86
+ $root: import('vue').ComponentPublicInstance | null;
87
+ $parent: import('vue').ComponentPublicInstance | null;
91
88
  $host: Element | null;
92
89
  $emit: ((event: "input", value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "change", value: string, evt?: Event | undefined) => void) & ((event: "compositionend", evt: CompositionEvent) => void) & ((event: "compositionstart", evt: CompositionEvent) => void) & ((event: "compositionupdate", evt: CompositionEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "keydown", evt: Event | KeyboardEvent) => void) & ((event: "mouseenter", evt: MouseEvent) => void) & ((event: "mouseleave", evt: MouseEvent) => void) & ((event: "clear", evt: MouseEvent | undefined) => void) & ((event: "update:modelValue", value: string) => void);
93
90
  $el: any;
94
- $options: ComponentOptionsBase<Readonly< InputProps> & Readonly<{
91
+ $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').InputProps> & Readonly<{
95
92
  onBlur?: ((evt: FocusEvent) => any) | undefined;
96
93
  onChange?: ((value: string, evt?: Event | undefined) => any) | undefined;
97
94
  onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
@@ -105,19 +102,19 @@ declare const _default: DefineComponent<PanelMiddleProps, {
105
102
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
106
103
  onClear?: ((evt: MouseEvent | undefined) => any) | undefined;
107
104
  }>, {
108
- input: ShallowRef<HTMLInputElement | undefined, HTMLInputElement | undefined>;
109
- textarea: ShallowRef<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
110
- ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
111
- textareaStyle: ComputedRef<StyleValue>;
112
- autosize: Ref< InputAutoSize | undefined, InputAutoSize | undefined>;
113
- isComposing: Ref<boolean, boolean>;
114
- passwordVisible: Ref<boolean, boolean>;
105
+ input: import('vue').ShallowRef<HTMLInputElement | undefined, HTMLInputElement | undefined>;
106
+ textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
107
+ ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
108
+ textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
109
+ autosize: import('vue').Ref<import('element-plus').InputAutoSize | undefined, import('element-plus').InputAutoSize | undefined>;
110
+ isComposing: import('vue').Ref<boolean, boolean>;
111
+ passwordVisible: import('vue').Ref<boolean, boolean>;
115
112
  focus: () => void | undefined;
116
113
  blur: () => void | undefined;
117
114
  select: () => void;
118
115
  clear: (evt?: MouseEvent) => void;
119
116
  resizeTextarea: () => void;
120
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
117
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
121
118
  blur: (evt: FocusEvent) => void;
122
119
  change: (value: string, evt?: Event | undefined) => void;
123
120
  compositionend: (evt: CompositionEvent) => void;
@@ -131,18 +128,18 @@ declare const _default: DefineComponent<PanelMiddleProps, {
131
128
  "update:modelValue": (value: string) => void;
132
129
  clear: (evt: MouseEvent | undefined) => void;
133
130
  }, string, {
134
- type: InputType;
131
+ type: import('element-plus').InputType;
135
132
  disabled: boolean;
136
133
  modelValue: string | number | null;
137
- modelModifiers: InputModelModifiers;
134
+ modelModifiers: import('element-plus').InputModelModifiers;
138
135
  autocomplete: string;
139
- clearIcon: IconPropType;
136
+ clearIcon: import('element-plus/es/utils/index.mjs').IconPropType;
140
137
  wordLimitPosition: "inside" | "outside";
141
138
  tabindex: string | number;
142
139
  validateEvent: boolean;
143
- inputStyle: string | false | CSSProperties | StyleValue[] | null;
140
+ inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
144
141
  rows: number;
145
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
142
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
146
143
  beforeCreate?: (() => void) | (() => void)[];
147
144
  created?: (() => void) | (() => void)[];
148
145
  beforeMount?: (() => void) | (() => void)[];
@@ -155,26 +152,26 @@ declare const _default: DefineComponent<PanelMiddleProps, {
155
152
  beforeUnmount?: (() => void) | (() => void)[];
156
153
  destroyed?: (() => void) | (() => void)[];
157
154
  unmounted?: (() => void) | (() => void)[];
158
- renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
159
- renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
160
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
155
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
156
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
157
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
161
158
  };
162
159
  $forceUpdate: () => void;
163
160
  $nextTick: typeof nextTick;
164
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
161
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
165
162
  } & Readonly<{
166
- type: InputType;
163
+ type: import('element-plus').InputType;
167
164
  disabled: boolean;
168
165
  modelValue: string | number | null;
169
- modelModifiers: InputModelModifiers;
166
+ modelModifiers: import('element-plus').InputModelModifiers;
170
167
  autocomplete: string;
171
- clearIcon: IconPropType;
168
+ clearIcon: import('element-plus/es/utils/index.mjs').IconPropType;
172
169
  wordLimitPosition: "inside" | "outside";
173
170
  tabindex: string | number;
174
171
  validateEvent: boolean;
175
- inputStyle: string | false | CSSProperties | StyleValue[] | null;
172
+ inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
176
173
  rows: number;
177
- }> & Omit<Readonly< InputProps> & Readonly<{
174
+ }> & Omit<Readonly<import('element-plus').InputProps> & Readonly<{
178
175
  onBlur?: ((evt: FocusEvent) => any) | undefined;
179
176
  onChange?: ((value: string, evt?: Event | undefined) => any) | undefined;
180
177
  onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
@@ -187,20 +184,20 @@ declare const _default: DefineComponent<PanelMiddleProps, {
187
184
  onMouseleave?: ((evt: MouseEvent) => any) | undefined;
188
185
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
189
186
  onClear?: ((evt: MouseEvent | undefined) => any) | undefined;
190
- }>, "input" | "select" | "textarea" | "blur" | "focus" | "disabled" | "clear" | "type" | "ref" | "tabindex" | "modelValue" | "validateEvent" | "autocomplete" | "clearIcon" | "inputStyle" | "modelModifiers" | "autosize" | "wordLimitPosition" | "rows" | "textareaStyle" | "isComposing" | "passwordVisible" | "resizeTextarea"> & ShallowUnwrapRef<{
191
- input: ShallowRef<HTMLInputElement | undefined, HTMLInputElement | undefined>;
192
- textarea: ShallowRef<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
193
- ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
194
- textareaStyle: ComputedRef<StyleValue>;
195
- autosize: Ref< InputAutoSize | undefined, InputAutoSize | undefined>;
196
- isComposing: Ref<boolean, boolean>;
197
- passwordVisible: Ref<boolean, boolean>;
187
+ }>, "input" | "select" | "textarea" | "blur" | "focus" | "disabled" | "clear" | "type" | "ref" | "tabindex" | "modelValue" | "validateEvent" | "autocomplete" | "clearIcon" | "inputStyle" | "modelModifiers" | "autosize" | "wordLimitPosition" | "rows" | "textareaStyle" | "isComposing" | "passwordVisible" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
188
+ input: import('vue').ShallowRef<HTMLInputElement | undefined, HTMLInputElement | undefined>;
189
+ textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
190
+ ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
191
+ textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
192
+ autosize: import('vue').Ref<import('element-plus').InputAutoSize | undefined, import('element-plus').InputAutoSize | undefined>;
193
+ isComposing: import('vue').Ref<boolean, boolean>;
194
+ passwordVisible: import('vue').Ref<boolean, boolean>;
198
195
  focus: () => void | undefined;
199
196
  blur: () => void | undefined;
200
197
  select: () => void;
201
198
  clear: (evt?: MouseEvent) => void;
202
199
  resizeTextarea: () => void;
203
- }> & {} & ComponentCustomProperties & {} & {
200
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
204
201
  $slots: {
205
202
  prepend?: (props: {}) => any;
206
203
  } & {
@@ -216,17 +213,17 @@ declare const _default: DefineComponent<PanelMiddleProps, {
216
213
  };
217
214
  }) | null;
218
215
  scrollbarRef: ({
219
- $: ComponentInternalInstance;
216
+ $: import('vue').ComponentInternalInstance;
220
217
  $data: {};
221
218
  $props: {
222
219
  readonly distance?: number | undefined;
223
220
  readonly height?: number | string | undefined;
224
221
  readonly maxHeight?: number | string | undefined;
225
222
  readonly native?: boolean | undefined;
226
- readonly wrapStyle?: StyleValue;
223
+ readonly wrapStyle?: import('vue').StyleValue;
227
224
  readonly wrapClass?: string | string[] | undefined;
228
225
  readonly viewClass?: string | string[] | undefined;
229
- readonly viewStyle?: StyleValue;
226
+ readonly viewStyle?: import('vue').StyleValue;
230
227
  readonly noresize?: boolean | undefined;
231
228
  readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
232
229
  readonly always?: boolean | undefined;
@@ -240,8 +237,8 @@ declare const _default: DefineComponent<PanelMiddleProps, {
240
237
  scrollTop: number;
241
238
  scrollLeft: number;
242
239
  }) => any) | undefined | undefined;
243
- readonly "onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined | undefined;
244
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
240
+ readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
241
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
245
242
  $attrs: {
246
243
  [x: string]: unknown;
247
244
  };
@@ -249,24 +246,24 @@ declare const _default: DefineComponent<PanelMiddleProps, {
249
246
  [x: string]: unknown;
250
247
  };
251
248
  $slots: Readonly<{
252
- [name: string]: Slot<any> | undefined;
249
+ [name: string]: import('vue').Slot<any> | undefined;
253
250
  }>;
254
- $root: ComponentPublicInstance | null;
255
- $parent: ComponentPublicInstance | null;
251
+ $root: import('vue').ComponentPublicInstance | null;
252
+ $parent: import('vue').ComponentPublicInstance | null;
256
253
  $host: Element | null;
257
254
  $emit: ((event: "scroll", args_0: {
258
255
  scrollTop: number;
259
256
  scrollLeft: number;
260
- }) => void) & ((event: "end-reached", direction: ScrollbarDirection) => void);
257
+ }) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
261
258
  $el: any;
262
- $options: ComponentOptionsBase<Readonly< ScrollbarProps> & Readonly<{
259
+ $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
263
260
  onScroll?: ((args_0: {
264
261
  scrollTop: number;
265
262
  scrollLeft: number;
266
263
  }) => any) | undefined;
267
- "onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
264
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
268
265
  }>, {
269
- wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
266
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
270
267
  update: () => void;
271
268
  scrollTo: {
272
269
  (xCord: number, yCord?: number): void;
@@ -275,24 +272,24 @@ declare const _default: DefineComponent<PanelMiddleProps, {
275
272
  setScrollTop: (value: number) => void;
276
273
  setScrollLeft: (value: number) => void;
277
274
  handleScroll: () => void;
278
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
275
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
279
276
  scroll: (args_0: {
280
277
  scrollTop: number;
281
278
  scrollLeft: number;
282
279
  }) => void;
283
- "end-reached": (direction: ScrollbarDirection) => void;
280
+ "end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
284
281
  }, string, {
285
282
  tabindex: number | string;
286
283
  height: number | string;
287
284
  maxHeight: number | string;
288
285
  tag: keyof HTMLElementTagNameMap | (string & {});
289
286
  distance: number;
290
- wrapStyle: string | false | CSSProperties | StyleValue[] | null;
287
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
291
288
  wrapClass: string | string[];
292
289
  viewClass: string | string[];
293
- viewStyle: string | false | CSSProperties | StyleValue[] | null;
290
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
294
291
  minSize: number;
295
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
292
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
296
293
  beforeCreate?: (() => void) | (() => void)[];
297
294
  created?: (() => void) | (() => void)[];
298
295
  beforeMount?: (() => void) | (() => void)[];
@@ -305,32 +302,32 @@ declare const _default: DefineComponent<PanelMiddleProps, {
305
302
  beforeUnmount?: (() => void) | (() => void)[];
306
303
  destroyed?: (() => void) | (() => void)[];
307
304
  unmounted?: (() => void) | (() => void)[];
308
- renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
309
- renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
310
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
305
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
306
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
307
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
311
308
  };
312
309
  $forceUpdate: () => void;
313
310
  $nextTick: typeof nextTick;
314
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
311
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
315
312
  } & Readonly<{
316
313
  tabindex: number | string;
317
314
  height: number | string;
318
315
  maxHeight: number | string;
319
316
  tag: keyof HTMLElementTagNameMap | (string & {});
320
317
  distance: number;
321
- wrapStyle: string | false | CSSProperties | StyleValue[] | null;
318
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
322
319
  wrapClass: string | string[];
323
320
  viewClass: string | string[];
324
- viewStyle: string | false | CSSProperties | StyleValue[] | null;
321
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
325
322
  minSize: number;
326
- }> & Omit<Readonly< ScrollbarProps> & Readonly<{
323
+ }> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
327
324
  onScroll?: ((args_0: {
328
325
  scrollTop: number;
329
326
  scrollLeft: number;
330
327
  }) => any) | undefined;
331
- "onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
332
- }>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & ShallowUnwrapRef<{
333
- wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
328
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
329
+ }>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
330
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
334
331
  update: () => void;
335
332
  scrollTo: {
336
333
  (xCord: number, yCord?: number): void;
@@ -339,7 +336,7 @@ declare const _default: DefineComponent<PanelMiddleProps, {
339
336
  setScrollTop: (value: number) => void;
340
337
  setScrollLeft: (value: number) => void;
341
338
  handleScroll: () => void;
342
- }> & {} & ComponentCustomProperties & {} & {
339
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
343
340
  $slots: {
344
341
  default?: (props: {}) => any;
345
342
  };
@@ -1,33 +1,31 @@
1
- import { nextTick, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, StyleValue, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, Ref, CSSProperties, GlobalComponents, GlobalDirectives, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
1
+ import { nextTick } from 'vue';
2
2
  import { PanelTreeNode } from '../hooks/usePanelData';
3
3
  import { PanelSelectValue } from '../types';
4
- import { ScrollbarDirection, ScrollbarProps } from 'element-plus';
5
- import { OnCleanup } from '@vue/reactivity';
6
4
  type __VLS_Props = {
7
5
  prefixCls: string;
8
6
  multiple: boolean;
9
7
  selectedOptions: PanelTreeNode[];
10
8
  disabled: boolean;
11
9
  };
12
- declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
11
  remove: (value: PanelSelectValue) => any;
14
12
  clearAll: () => any;
15
- }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
13
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
16
14
  onRemove?: ((value: PanelSelectValue) => any) | undefined;
17
15
  onClearAll?: (() => any) | undefined;
18
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
16
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
19
17
  scrollbarRef: ({
20
- $: ComponentInternalInstance;
18
+ $: import('vue').ComponentInternalInstance;
21
19
  $data: {};
22
20
  $props: {
23
21
  readonly distance?: number | undefined;
24
22
  readonly height?: number | string | undefined;
25
23
  readonly maxHeight?: number | string | undefined;
26
24
  readonly native?: boolean | undefined;
27
- readonly wrapStyle?: StyleValue;
25
+ readonly wrapStyle?: import('vue').StyleValue;
28
26
  readonly wrapClass?: string | string[] | undefined;
29
27
  readonly viewClass?: string | string[] | undefined;
30
- readonly viewStyle?: StyleValue;
28
+ readonly viewStyle?: import('vue').StyleValue;
31
29
  readonly noresize?: boolean | undefined;
32
30
  readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
33
31
  readonly always?: boolean | undefined;
@@ -41,8 +39,8 @@ declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOp
41
39
  scrollTop: number;
42
40
  scrollLeft: number;
43
41
  }) => any) | undefined | undefined;
44
- readonly "onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined | undefined;
45
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
42
+ readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
43
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
46
44
  $attrs: {
47
45
  [x: string]: unknown;
48
46
  };
@@ -50,24 +48,24 @@ declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOp
50
48
  [x: string]: unknown;
51
49
  };
52
50
  $slots: Readonly<{
53
- [name: string]: Slot<any> | undefined;
51
+ [name: string]: import('vue').Slot<any> | undefined;
54
52
  }>;
55
- $root: ComponentPublicInstance | null;
56
- $parent: ComponentPublicInstance | null;
53
+ $root: import('vue').ComponentPublicInstance | null;
54
+ $parent: import('vue').ComponentPublicInstance | null;
57
55
  $host: Element | null;
58
56
  $emit: ((event: "scroll", args_0: {
59
57
  scrollTop: number;
60
58
  scrollLeft: number;
61
- }) => void) & ((event: "end-reached", direction: ScrollbarDirection) => void);
59
+ }) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
62
60
  $el: any;
63
- $options: ComponentOptionsBase<Readonly< ScrollbarProps> & Readonly<{
61
+ $options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
64
62
  onScroll?: ((args_0: {
65
63
  scrollTop: number;
66
64
  scrollLeft: number;
67
65
  }) => any) | undefined;
68
- "onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
66
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
69
67
  }>, {
70
- wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
68
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
71
69
  update: () => void;
72
70
  scrollTo: {
73
71
  (xCord: number, yCord?: number): void;
@@ -76,24 +74,24 @@ declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOp
76
74
  setScrollTop: (value: number) => void;
77
75
  setScrollLeft: (value: number) => void;
78
76
  handleScroll: () => void;
79
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
77
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
80
78
  scroll: (args_0: {
81
79
  scrollTop: number;
82
80
  scrollLeft: number;
83
81
  }) => void;
84
- "end-reached": (direction: ScrollbarDirection) => void;
82
+ "end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
85
83
  }, string, {
86
84
  tabindex: number | string;
87
85
  height: number | string;
88
86
  maxHeight: number | string;
89
87
  tag: keyof HTMLElementTagNameMap | (string & {});
90
88
  distance: number;
91
- wrapStyle: string | false | CSSProperties | StyleValue[] | null;
89
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
92
90
  wrapClass: string | string[];
93
91
  viewClass: string | string[];
94
- viewStyle: string | false | CSSProperties | StyleValue[] | null;
92
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
95
93
  minSize: number;
96
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
94
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
97
95
  beforeCreate?: (() => void) | (() => void)[];
98
96
  created?: (() => void) | (() => void)[];
99
97
  beforeMount?: (() => void) | (() => void)[];
@@ -106,32 +104,32 @@ declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOp
106
104
  beforeUnmount?: (() => void) | (() => void)[];
107
105
  destroyed?: (() => void) | (() => void)[];
108
106
  unmounted?: (() => void) | (() => void)[];
109
- renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
110
- renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
111
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
107
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
108
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
109
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
112
110
  };
113
111
  $forceUpdate: () => void;
114
112
  $nextTick: typeof nextTick;
115
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
113
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
116
114
  } & Readonly<{
117
115
  tabindex: number | string;
118
116
  height: number | string;
119
117
  maxHeight: number | string;
120
118
  tag: keyof HTMLElementTagNameMap | (string & {});
121
119
  distance: number;
122
- wrapStyle: string | false | CSSProperties | StyleValue[] | null;
120
+ wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
123
121
  wrapClass: string | string[];
124
122
  viewClass: string | string[];
125
- viewStyle: string | false | CSSProperties | StyleValue[] | null;
123
+ viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
126
124
  minSize: number;
127
- }> & Omit<Readonly< ScrollbarProps> & Readonly<{
125
+ }> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
128
126
  onScroll?: ((args_0: {
129
127
  scrollTop: number;
130
128
  scrollLeft: number;
131
129
  }) => any) | undefined;
132
- "onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
133
- }>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & ShallowUnwrapRef<{
134
- wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
130
+ "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
131
+ }>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
132
+ wrapRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
135
133
  update: () => void;
136
134
  scrollTo: {
137
135
  (xCord: number, yCord?: number): void;
@@ -140,7 +138,7 @@ declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOp
140
138
  setScrollTop: (value: number) => void;
141
139
  setScrollLeft: (value: number) => void;
142
140
  handleScroll: () => void;
143
- }> & {} & ComponentCustomProperties & {} & {
141
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
144
142
  $slots: {
145
143
  default?: (props: {}) => any;
146
144
  };
@@ -1,5 +1,4 @@
1
1
  import { PanelContainerProps, PanelSelectOption, PanelSelectValue } from '../types';
2
- import { Ref, ComputedRef } from 'vue';
3
2
  /**
4
3
  * 面板内部统一使用的树节点结构。
5
4
  */
@@ -26,13 +25,13 @@ export type OptionGroup = {
26
25
  * @param props 组件 props
27
26
  */
28
27
  export declare function usePanelSelectData(props: PanelContainerProps): {
29
- loading: Ref<boolean, boolean>;
28
+ loading: import('vue').Ref<boolean, boolean>;
30
29
  fetchApi: () => Promise<void>;
31
- treeOptions: ComputedRef<PanelTreeNode[]>;
32
- navTreeOptions: ComputedRef<PanelTreeNode[]>;
33
- navNodes: ComputedRef<PanelTreeNode[]>;
34
- leafNodes: ComputedRef<PanelTreeNode[]>;
30
+ treeOptions: import('vue').ComputedRef<PanelTreeNode[]>;
31
+ navTreeOptions: import('vue').ComputedRef<PanelTreeNode[]>;
32
+ navNodes: import('vue').ComputedRef<PanelTreeNode[]>;
33
+ leafNodes: import('vue').ComputedRef<PanelTreeNode[]>;
35
34
  filterNodes: (nodes: PanelTreeNode[], keyword: string) => PanelTreeNode[];
36
35
  buildOptionGroups: (nodes: PanelTreeNode[], keyword: string) => OptionGroup[];
37
- isFirstLoaded: Ref<boolean, boolean>;
36
+ isFirstLoaded: import('vue').Ref<boolean, boolean>;
38
37
  };