@unitedstatespowersquadrons/components 1.2.18-6 → 1.2.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/ActionButton.tsx +5 -2
- package/package.json +1 -1
package/ActionButton.tsx
CHANGED
|
@@ -48,7 +48,6 @@ export interface CoreActionButtonProps extends FontAwesomeProps {
|
|
|
48
48
|
color: ButtonColorName;
|
|
49
49
|
grayMode?: boolean | undefined;
|
|
50
50
|
id?: string;
|
|
51
|
-
inline?: boolean;
|
|
52
51
|
rightIcon?: boolean;
|
|
53
52
|
size?: "big" | "mediumWithMargin" | "medium" | "small" | undefined;
|
|
54
53
|
subtext?: string;
|
|
@@ -61,7 +60,11 @@ interface FormProps {
|
|
|
61
60
|
formId: string;
|
|
62
61
|
}
|
|
63
62
|
|
|
64
|
-
|
|
63
|
+
interface InlineProps {
|
|
64
|
+
inline?: boolean;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export interface ActionButtonHrefProps extends CoreActionButtonProps, HrefProps, InlineProps {}
|
|
65
68
|
export interface ActionButtonMethodProps extends CoreActionButtonProps, MethodProps {}
|
|
66
69
|
export interface ActionButtonOnClickProps extends CoreActionButtonProps, OnClickProps {}
|
|
67
70
|
export interface ActionButtonFormProps extends CoreActionButtonProps, FormProps {}
|