@antdv-next1/pro-field 1.0.13 → 1.0.15

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.
@@ -14,7 +14,7 @@ type ProFieldProps = RenderProps & {
14
14
  };
15
15
  declare const _ProField: _$vue.DefineSetupFnComponent<ProFieldProps, {}, CustomSlotsType<{
16
16
  default?: () => VueNode$1;
17
- }>, Omit<ProFieldFCRenderProps, "placeholder" | "text"> & ProRenderFieldPropsType<any> & {
17
+ }>, Omit<ProFieldFCRenderProps, "text" | "placeholder"> & ProRenderFieldPropsType<any> & {
18
18
  id?: string;
19
19
  request?: _$_antdv_next1_pro_utils0.ProFieldRequestData;
20
20
  emptyText?: VueNode$1;
@@ -8,7 +8,7 @@ import { CustomSlotsType, VueNode as VueNode$1 } from "@v-c/util/dist/type";
8
8
  //#region src/ProPureField.d.ts
9
9
  declare const ProPureField: _$vue.DefineSetupFnComponent<ProFieldProps, {}, CustomSlotsType<{
10
10
  default?: () => VueNode$1;
11
- }>, Omit<ProFieldFCRenderProps, "placeholder" | "text"> & ProRenderFieldPropsType<any> & {
11
+ }>, Omit<ProFieldFCRenderProps, "text" | "placeholder"> & ProRenderFieldPropsType<any> & {
12
12
  id?: string;
13
13
  request?: _$_antdv_next1_pro_utils0.ProFieldRequestData;
14
14
  emptyText?: VueNode$1;
@@ -35,6 +35,6 @@ declare const FieldCascader: _$vue.DefineSetupFnComponent<FieldCascaderProps, {}
35
35
  variant?: "outlined" | "borderless" | "filled";
36
36
  } & {
37
37
  id?: string;
38
- } & Omit<FieldSelectProps, "text" | "fieldProps" | "light" | "label" | "variant" | "id" | "lightLabel" | "labelTrigger" | "plain"> & {}, _$vue.PublicProps>;
38
+ } & Omit<FieldSelectProps, "variant" | "fieldProps" | "id" | "label" | "labelTrigger" | "lightLabel" | "text" | "light" | "plain"> & {}, _$vue.PublicProps>;
39
39
  //#endregion
40
40
  export { FieldCascaderProps, FieldCascaderRef, FieldCascader as default };
@@ -32,6 +32,6 @@ declare const FieldCheckbox: _$vue.DefineSetupFnComponent<FieldCheckBoxProps, {}
32
32
  options?: CheckboxGroupProps["options"];
33
33
  } & {
34
34
  id?: string;
35
- } & Omit<FieldSelectProps, "fieldProps" | "light" | "label" | "variant" | "id" | "lightLabel" | "labelTrigger" | "plain"> & {}, _$vue.PublicProps>;
35
+ } & Omit<FieldSelectProps, "variant" | "fieldProps" | "id" | "label" | "labelTrigger" | "lightLabel" | "light" | "plain"> & {}, _$vue.PublicProps>;
36
36
  //#endregion
37
37
  export { FieldCheckBoxProps, FieldCheckboxRef, FieldCheckbox as default };
@@ -31,6 +31,6 @@ declare const FieldRadio: _$vue.DefineSetupFnComponent<FieldRadioProps, {}, Cust
31
31
  radioType?: RadioGroupProps["optionType"];
32
32
  } & {
33
33
  id?: string;
34
- } & Omit<FieldSelectProps, "fieldProps" | "light" | "label" | "variant" | "id" | "lightLabel" | "labelTrigger" | "plain"> & {}, _$vue.PublicProps>;
34
+ } & Omit<FieldSelectProps, "variant" | "fieldProps" | "id" | "label" | "labelTrigger" | "lightLabel" | "light" | "plain"> & {}, _$vue.PublicProps>;
35
35
  //#endregion
36
36
  export { FieldRadioProps, FieldRadio as default };
@@ -31,6 +31,6 @@ declare const FieldSegmented: _$vue.DefineSetupFnComponent<FieldSegmentedProps,
31
31
  emptyText?: VueNode$1;
32
32
  } & {
33
33
  id?: string;
34
- } & Omit<FieldSelectProps, "fieldProps" | "light" | "label" | "variant" | "id" | "lightLabel" | "labelTrigger" | "plain"> & {}, _$vue.PublicProps>;
34
+ } & Omit<FieldSelectProps, "variant" | "fieldProps" | "id" | "label" | "labelTrigger" | "lightLabel" | "light" | "plain"> & {}, _$vue.PublicProps>;
35
35
  //#endregion
36
36
  export { FieldSegmentedProps, FieldSegmented as default };
@@ -58,7 +58,7 @@ type SearchSelectProps<T = Record<string, any>> = Omit<SelectProps, 'options' |
58
58
  */
59
59
  preserveOriginalLabel?: boolean;
60
60
  };
61
- declare const SearchSelect: new <T extends Record<string, any>>(props: Omit<SelectProps, "searchValue" | "options"> & {
61
+ declare const SearchSelect: new <T extends Record<string, any>>(props: Omit<SelectProps, "options" | "searchValue"> & {
62
62
  /** 防抖动时间 默认10 单位ms */debounceTime?: number; /** 自定义搜索方法, 返回搜索结果的 Promise */
63
63
  request?: ((params: {
64
64
  query: string;
@@ -106,7 +106,7 @@ declare const SearchSelect: new <T extends Record<string, any>>(props: Omit<Sele
106
106
  * @default false
107
107
  */
108
108
  preserveOriginalLabel?: boolean;
109
- } & {} & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps) => _$vue.CreateComponentPublicInstanceWithMixins<Omit<SelectProps, "searchValue" | "options"> & {
109
+ } & {} & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps) => _$vue.CreateComponentPublicInstanceWithMixins<Omit<SelectProps, "options" | "searchValue"> & {
110
110
  /** 防抖动时间 默认10 单位ms */debounceTime?: number; /** 自定义搜索方法, 返回搜索结果的 Promise */
111
111
  request?: ((params: {
112
112
  query: string;
@@ -161,7 +161,7 @@ declare const SearchSelect: new <T extends Record<string, any>>(props: Omit<Sele
161
161
  C: {};
162
162
  M: {};
163
163
  Defaults: {};
164
- }, Omit<SelectProps, "searchValue" | "options"> & {
164
+ }, Omit<SelectProps, "options" | "searchValue"> & {
165
165
  /** 防抖动时间 默认10 单位ms */debounceTime?: number; /** 自定义搜索方法, 返回搜索结果的 Promise */
166
166
  request?: ((params: {
167
167
  query: string;
@@ -40,6 +40,6 @@ declare const FieldTreeSelect: _$vue.DefineSetupFnComponent<FieldTreeSelectProps
40
40
  fetchDataOnSearch?: boolean;
41
41
  } & {
42
42
  id?: string;
43
- } & TreeSelectProps<any, _$_v_c_tree_select0.DataNode> & Omit<FieldSelectProps, "fieldProps" | "light" | "label" | "variant" | "id" | "lightLabel" | "labelTrigger" | "plain"> & {}, _$vue.PublicProps>;
43
+ } & TreeSelectProps<any, _$_v_c_tree_select0.DataNode> & Omit<FieldSelectProps, "variant" | "fieldProps" | "id" | "label" | "labelTrigger" | "lightLabel" | "light" | "plain"> & {}, _$vue.PublicProps>;
44
44
  //#endregion
45
45
  export { FieldTreeSelectProps, FieldTreeSelect as default };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@antdv-next1/pro-field",
3
3
  "type": "module",
4
- "version": "1.0.13",
4
+ "version": "1.0.15",
5
5
  "description": "@antdv-next1/pro-field",
6
6
  "repository": {
7
7
  "type": "git",
@@ -49,8 +49,8 @@
49
49
  },
50
50
  "dependencies": {
51
51
  "swrv": "^1.2.0",
52
- "@antdv-next1/pro-utils": "1.0.15",
53
- "@antdv-next1/pro-provider": "1.0.9"
52
+ "@antdv-next1/pro-provider": "1.0.9",
53
+ "@antdv-next1/pro-utils": "1.0.17"
54
54
  },
55
55
  "publishConfig": {
56
56
  "access": "public"