revdev-components 0.135.0 → 0.137.0
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/build/button/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { ButtonProps as AntdButtonProps } from "antd";
|
|
3
3
|
import { TooltipPlacement } from "antd/es/tooltip";
|
|
4
|
-
import { RegularIconName } from "
|
|
4
|
+
import { RegularIconName } from "../icon";
|
|
5
5
|
interface ButtonContentProps extends Omit<AntdButtonProps, "icon" | "rightIcon"> {
|
|
6
6
|
icon?: RegularIconName;
|
|
7
7
|
rightIcon?: RegularIconName;
|
|
@@ -5,7 +5,7 @@ export declare function useLineProps<T extends FormLineProps>({ lineClassName, n
|
|
|
5
5
|
export interface FormLineProps {
|
|
6
6
|
lineClassName?: string;
|
|
7
7
|
name: NamePath;
|
|
8
|
-
label?:
|
|
8
|
+
label?: React.ReactNode;
|
|
9
9
|
rules?: FormRule | FormRule[];
|
|
10
10
|
valuePropName?: string;
|
|
11
11
|
noStyle?: boolean;
|