antdv-next 1.4.2 → 1.4.3
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/_util/statusUtils.d.ts +1 -1
- package/dist/_util/vueNode.d.ts +6 -2
- package/dist/antd-with-locales.esm.js +7661 -7655
- package/dist/antd-with-locales.js +80 -80
- package/dist/antd.css +1 -1
- package/dist/antd.esm.js +9042 -9036
- package/dist/antd.js +53 -53
- package/dist/border-beam/style/index.js +2 -2
- package/dist/button/buttonHelper.d.ts +1 -1
- package/dist/checkbox/style/index.js +3 -3
- package/dist/date-picker/generatePicker/useComponents.d.ts +2 -2
- package/dist/descriptions/hooks/useItems.d.ts +4 -4
- package/dist/form/context.d.ts +1 -1
- package/dist/form/hooks/useVariant.d.ts +1 -1
- package/dist/package.js +1 -1
- package/dist/radio/style/index.js +2 -2
- package/dist/segmented/style/index.js +2 -2
- package/dist/splitter/SplitBar.js +1 -12
- package/dist/style/motion/index.d.ts +2 -2
- package/dist/style/motion/index.js +2 -2
- package/dist/style/motion/util.d.ts +8 -1
- package/dist/style/motion/util.js +13 -1
- package/dist/switch/style/index.js +2 -2
- package/dist/tag/hooks/useColor.d.ts +1 -1
- package/package.json +1 -1
- package/web-tags.json +1217 -1213
- package/web-types.json +3794 -3781
|
@@ -4,6 +4,6 @@ import { ValidateStatus } from "../form/FormItem/index.js";
|
|
|
4
4
|
declare const _InputStatuses: readonly ["warning", "error", "", "success", "validating"];
|
|
5
5
|
type InputStatus = (typeof _InputStatuses)[number];
|
|
6
6
|
declare function getStatusClassNames(prefixCls: string, status?: ValidateStatus, hasFeedback?: boolean): string;
|
|
7
|
-
declare function getMergedStatus(contextStatus?: ValidateStatus, customStatus?: InputStatus): "" | "success" | "
|
|
7
|
+
declare function getMergedStatus(contextStatus?: ValidateStatus, customStatus?: InputStatus): "" | "success" | "error" | "warning" | "validating" | undefined;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { InputStatus, getMergedStatus, getStatusClassNames };
|
package/dist/_util/vueNode.d.ts
CHANGED
|
@@ -4,8 +4,12 @@ import { isFragment } from "@v-c/util/dist/Children/isFragment";
|
|
|
4
4
|
|
|
5
5
|
//#region src/_util/vueNode.d.ts
|
|
6
6
|
type RenderProps = AnyObject | ((originProps: AnyObject) => AnyObject | undefined);
|
|
7
|
-
declare function replaceElement(element: VNodeChild, replacement: VNodeChild, props?: RenderProps):
|
|
8
|
-
|
|
7
|
+
declare function replaceElement(element: VNodeChild, replacement: VNodeChild, props?: RenderProps): string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
8
|
+
[key: string]: any;
|
|
9
|
+
}> | import("vue").VNodeArrayChildren | null;
|
|
10
|
+
declare function cloneElement(element: VNodeChild, props?: RenderProps): string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}> | import("vue").VNodeArrayChildren | null;
|
|
9
13
|
declare function getVNode(node: VueNode): VNodeChild;
|
|
10
14
|
declare function checkRenderNode(node: any): any;
|
|
11
15
|
declare function getTextByNode(node: any): any;
|