@antdv-next1/pro-field 1.0.16 → 1.0.18
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/dist/ProPureField.d.ts +1 -1
- package/dist/ProPureField.js +1 -4
- package/dist/components/Code/index.d.ts +3 -3
- package/dist/components/ColorPicker/index.d.ts +1 -1
- package/dist/components/DigitRange/index.d.ts +2 -2
- package/dist/components/Image/index.d.ts +1 -1
- package/dist/pro-field.esm.js +462 -462
- package/dist/pro-field.js +1 -1
- package/package.json +3 -3
package/dist/ProPureField.d.ts
CHANGED
|
@@ -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, "
|
|
11
|
+
}>, Omit<ProFieldFCRenderProps, "text" | "placeholder"> & ProRenderFieldPropsType<any> & {
|
|
12
12
|
id?: string;
|
|
13
13
|
request?: _$_antdv_next1_pro_utils0.ProFieldRequestData;
|
|
14
14
|
emptyText?: VueNode$1;
|
package/dist/ProPureField.js
CHANGED
|
@@ -128,10 +128,7 @@ const ProPureField = /* @__PURE__ */ defineComponent((props, { attrs, expose })
|
|
|
128
128
|
type: Function,
|
|
129
129
|
required: false
|
|
130
130
|
},
|
|
131
|
-
fieldProps: {
|
|
132
|
-
type: Object,
|
|
133
|
-
required: false
|
|
134
|
-
},
|
|
131
|
+
fieldProps: { required: false },
|
|
135
132
|
light: {
|
|
136
133
|
type: Boolean,
|
|
137
134
|
required: false,
|
|
@@ -16,15 +16,15 @@ type FieldCodeProps = ProFieldFC<{
|
|
|
16
16
|
} | HTMLAttributes>;
|
|
17
17
|
declare const FieldCode: _$vue.DefineSetupFnComponent<FieldCodeProps, {}, CustomSlotsType<{
|
|
18
18
|
default?: () => VueNode;
|
|
19
|
-
}>, _$_antdv_next1_pro_provider0.BaseProFieldFC<(InputProps & {
|
|
19
|
+
}>, _$_antdv_next1_pro_provider0.BaseProFieldFC<HTMLAttributes | (InputProps & {
|
|
20
20
|
style?: CSSProperties;
|
|
21
21
|
}) | (TextAreaProps & {
|
|
22
22
|
style?: CSSProperties;
|
|
23
|
-
})
|
|
23
|
+
})> & _$_antdv_next1_pro_provider0.ProRenderFieldPropsType<HTMLAttributes | (InputProps & {
|
|
24
24
|
style?: CSSProperties;
|
|
25
25
|
}) | (TextAreaProps & {
|
|
26
26
|
style?: CSSProperties;
|
|
27
|
-
})
|
|
27
|
+
})> & {
|
|
28
28
|
text: string;
|
|
29
29
|
language?: "json" | "text";
|
|
30
30
|
} & {
|
|
@@ -17,6 +17,6 @@ declare const FieldColorPicker: _$vue.DefineSetupFnComponent<FieldColorPickerPro
|
|
|
17
17
|
mode?: "read" | "edit" | "update";
|
|
18
18
|
} & {
|
|
19
19
|
id?: string;
|
|
20
|
-
} & Partial<Omit<_$antdv_next_dist_color_picker_ColorPicker0.InternalColorPickerProps, "
|
|
20
|
+
} & Partial<Omit<_$antdv_next_dist_color_picker_ColorPicker0.InternalColorPickerProps, "mode" | "value">> & {}, _$vue.PublicProps>;
|
|
21
21
|
//#endregion
|
|
22
22
|
export { FieldColorPickerProps, FieldColorPicker as default };
|
|
@@ -22,14 +22,14 @@ type FieldDigitRangeProps = ProFieldFC<{
|
|
|
22
22
|
}>;
|
|
23
23
|
declare const FieldDigitRange: _$vue.DefineSetupFnComponent<FieldDigitRangeProps, {}, CustomSlotsType<{
|
|
24
24
|
default?: () => VueNode;
|
|
25
|
-
}>, _$_antdv_next1_pro_provider0.BaseProFieldFC<Omit<InputNumberProps, "
|
|
25
|
+
}>, _$_antdv_next1_pro_provider0.BaseProFieldFC<Omit<InputNumberProps, "placeholder" | "value" | "onChange" | "defaultValue"> & {
|
|
26
26
|
id?: string;
|
|
27
27
|
placeholder?: string[];
|
|
28
28
|
value?: ValuePair;
|
|
29
29
|
onChange?: (value?: ValuePair) => void;
|
|
30
30
|
defaultValue?: ValuePair;
|
|
31
31
|
intlProps?: Intl.NumberFormatOptions;
|
|
32
|
-
}> & _$_antdv_next1_pro_provider0.ProRenderFieldPropsType<Omit<InputNumberProps, "
|
|
32
|
+
}> & _$_antdv_next1_pro_provider0.ProRenderFieldPropsType<Omit<InputNumberProps, "placeholder" | "value" | "onChange" | "defaultValue"> & {
|
|
33
33
|
id?: string;
|
|
34
34
|
placeholder?: string[];
|
|
35
35
|
value?: ValuePair;
|
|
@@ -12,7 +12,7 @@ type FieldImageProps = ProFieldFC<{
|
|
|
12
12
|
}, ImageProps | InputProps>;
|
|
13
13
|
declare const FieldImage: _$vue.DefineSetupFnComponent<FieldImageProps, {}, CustomSlotsType<{
|
|
14
14
|
default?: () => VueNode;
|
|
15
|
-
}>, _$_antdv_next1_pro_provider0.BaseProFieldFC<
|
|
15
|
+
}>, _$_antdv_next1_pro_provider0.BaseProFieldFC<ImageProps | InputProps> & _$_antdv_next1_pro_provider0.ProRenderFieldPropsType<ImageProps | InputProps> & {
|
|
16
16
|
text: string;
|
|
17
17
|
width?: number;
|
|
18
18
|
placeholder?: string;
|