tutor-pro-ui-vue 1.3.56 → 1.3.60

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.
@@ -4,6 +4,7 @@ declare let __VLS_typeProps: {
4
4
  isSearch?: boolean;
5
5
  formItemConfig?: Partial<FormItemProps>;
6
6
  menuHeight?: number;
7
+ defaultExpand?: boolean;
7
8
  };
8
9
  type __VLS_PublicProps = {
9
10
  modelValue?: any;
@@ -0,0 +1,16 @@
1
+ import { FormItemProps } from 'element-plus';
2
+ declare let __VLS_typeProps: {
3
+ isSearch?: boolean;
4
+ formItemConfig?: Partial<FormItemProps>;
5
+ };
6
+ type __VLS_PublicProps = {
7
+ modelValue?: any;
8
+ } & typeof __VLS_typeProps;
9
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ "update:modelValue": (modelValue: any) => any;
11
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
12
+ "onUpdate:modelValue"?: ((modelValue: any) => any) | undefined;
13
+ }>, {
14
+ isSearch: boolean;
15
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
+ export default _default;
@@ -39,7 +39,7 @@ export declare const useValue: (value?: Ref<string | number | (string | number)[
39
39
  * @param showFooter
40
40
  * @returns
41
41
  */
42
- export declare const useTreeSelect: (options: Ref<any[]>, value: Ref<any[]>, showFooter: ComputedRef<boolean>, valueKey?: string, checkStrictly?: boolean) => {
42
+ export declare const useTreeSelect: (options: Ref<any[]>, value: Ref<any[]>, showFooter: ComputedRef<boolean> | boolean, valueKey?: string, checkStrictly?: boolean) => {
43
43
  checkAll: Ref<boolean, boolean>;
44
44
  isIndeterminate: Ref<boolean, boolean>;
45
45
  handleReverse: () => void;
@@ -14,7 +14,8 @@ export declare enum FiledType {
14
14
  SWITCH = "switch",
15
15
  TREE_SELECT = "tree_select",
16
16
  COLOR_PICKER = "color_picker",
17
- TIME_PICKER = "time_pick"
17
+ TIME_PICKER = "time_pick",
18
+ REMOTE_SELECT = "remote_select"
18
19
  }
19
20
  /**
20
21
  * 元素类型
@@ -6,6 +6,7 @@ declare function __VLS_template(): {
6
6
  row: any;
7
7
  }): any;
8
8
  expand?(_: any): any;
9
+ right?(_: {}): any;
9
10
  };
10
11
  refs: {
11
12
  commonFormContainerRef: HTMLDivElement;
@@ -371,6 +372,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
371
372
  getTableRef: () => any;
372
373
  getTotal: () => number;
373
374
  getComponentRefs: () => any;
375
+ getFormRef: () => any;
374
376
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
375
377
  "update:formState": (...args: any[]) => void;
376
378
  "update:selectData": (...args: any[]) => void;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tutor-pro-ui-vue",
3
3
  "private": false,
4
- "version": "1.3.56",
4
+ "version": "1.3.60",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",