propro-common-components 0.2.84 → 0.2.85
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/api/useGet.d.ts +2 -2
- package/dist/api/useMutate.d.ts +1 -1
- package/dist/api/useMutateWithKeepAlive.d.ts +2 -2
- package/dist/components/AvatarMenu/index.d.ts +2 -1
- package/dist/components/theme-provider.d.ts +1 -0
- package/dist/components/ui/dropdown-menu.d.ts +3 -3
- package/dist/components/ui/menubar.d.ts +31 -0
- package/dist/hoc/PrivateRoute.d.ts +1 -0
- package/dist/hooks/useAuth.d.ts +2 -1
- package/dist/main.css +1 -1
- package/dist/plasmicComponents/SignupConfirmation.d.ts +6 -0
- package/dist/plasmicComponents/plasmic/plasmic_tabs/PlasmicButton.d.ts +30 -30
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicAccountActivationConformation.d.ts +66 -66
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicButtonFromProPro.d.ts +39 -36
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicDescription.d.ts +14 -14
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicErrorMessageContainer.d.ts +48 -48
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicFooterLink.d.ts +52 -52
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicLabel.d.ts +22 -22
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicLogo.d.ts +125 -71
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicNewsletterConfirmation.d.ts +14 -14
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicProProLabel.d.ts +36 -36
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicProProLandingContent.d.ts +40 -40
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicProductCards.d.ts +67 -43
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicSignInSignUpForm.d.ts +539 -503
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicSignInSignUpFormLayout.d.ts +88 -88
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicSignupConfirmation.d.ts +61 -0
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicSlider.d.ts +64 -64
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicSliderThumb.d.ts +6 -6
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicTextInputFromProPro.d.ts +30 -30
- package/dist/plasmicComponents/plasmic/pro_pro/icons/PlasmicIcon__Icon4.d.ts +7 -0
- package/dist/plasmicComponents/plasmic/pro_pro/icons/PlasmicIcon__Icon5.d.ts +7 -0
- package/dist/plasmicComponents/plasmic/pro_pro/icons/PlasmicIcon__Icon7.d.ts +7 -0
- package/dist/plasmicComponents/plasmic/pro_pro/icons/PlasmicIcon__Icon8.d.ts +7 -0
- package/dist/plasmicComponents/plasmic/pro_pro/icons/PlasmicIcon__Icon9.d.ts +7 -0
- package/dist/propro-common-components.js +25988 -26154
- package/dist/utils/iconUtils.d.ts +1 -1
- package/package.json +4 -3
- package/.env.vault +0 -25
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { DefaultSignupConfirmationProps } from './plasmic/pro_pro/PlasmicSignupConfirmation';
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
export interface SignupConfirmationProps extends DefaultSignupConfirmationProps {
|
|
4
|
+
}
|
|
5
|
+
declare const SignupConfirmation: React.ForwardRefExoticComponent<SignupConfirmationProps & React.RefAttributes<HTMLDivElement>>;
|
|
6
|
+
export default SignupConfirmation;
|
|
@@ -62,65 +62,65 @@ type ReservedPropsType = 'variants' | 'args' | 'overrides';
|
|
|
62
62
|
type NodeOverridesType<T extends NodeNameType> = Pick<PlasmicButton__OverridesType, DescendantsType<T>>;
|
|
63
63
|
export declare const PlasmicButton: {
|
|
64
64
|
<T extends {
|
|
65
|
-
variants?: PlasmicButton__VariantsArgs;
|
|
66
|
-
args?: PlasmicButton__ArgsType;
|
|
65
|
+
variants?: PlasmicButton__VariantsArgs | undefined;
|
|
66
|
+
args?: PlasmicButton__ArgsType | undefined;
|
|
67
67
|
overrides?: NodeOverridesType<"root"> | undefined;
|
|
68
68
|
} & Omit<PlasmicButton__VariantsArgs, ReservedPropsType> & Omit<PlasmicButton__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>, "root" | "startIconContainer" | "endIconContainer" | "contentContainer" | keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & {
|
|
69
|
-
key?: React.Key;
|
|
69
|
+
key?: React.Key | undefined;
|
|
70
70
|
}>(props: T & StrictProps<T, {
|
|
71
|
-
variants?: PlasmicButton__VariantsArgs;
|
|
72
|
-
args?: PlasmicButton__ArgsType;
|
|
71
|
+
variants?: PlasmicButton__VariantsArgs | undefined;
|
|
72
|
+
args?: PlasmicButton__ArgsType | undefined;
|
|
73
73
|
overrides?: NodeOverridesType<"root"> | undefined;
|
|
74
74
|
} & Omit<PlasmicButton__VariantsArgs, ReservedPropsType> & Omit<PlasmicButton__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>, "root" | "startIconContainer" | "endIconContainer" | "contentContainer" | keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & {
|
|
75
|
-
key?: React.Key;
|
|
75
|
+
key?: React.Key | undefined;
|
|
76
76
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
77
77
|
displayName: string;
|
|
78
78
|
} & {
|
|
79
79
|
startIconContainer: {
|
|
80
|
-
<
|
|
81
|
-
variants?: PlasmicButton__VariantsArgs;
|
|
82
|
-
args?: PlasmicButton__ArgsType;
|
|
80
|
+
<T_1 extends {
|
|
81
|
+
variants?: PlasmicButton__VariantsArgs | undefined;
|
|
82
|
+
args?: PlasmicButton__ArgsType | undefined;
|
|
83
83
|
overrides?: NodeOverridesType<"startIconContainer"> | undefined;
|
|
84
84
|
} & Omit<PlasmicButton__VariantsArgs, ReservedPropsType> & Omit<PlasmicButton__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"startIconContainer">, keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "startIconContainer" | keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & {
|
|
85
|
-
key?: React.Key;
|
|
86
|
-
}>(props:
|
|
87
|
-
variants?: PlasmicButton__VariantsArgs;
|
|
88
|
-
args?: PlasmicButton__ArgsType;
|
|
85
|
+
key?: React.Key | undefined;
|
|
86
|
+
}>(props: T_1 & StrictProps<T_1, {
|
|
87
|
+
variants?: PlasmicButton__VariantsArgs | undefined;
|
|
88
|
+
args?: PlasmicButton__ArgsType | undefined;
|
|
89
89
|
overrides?: NodeOverridesType<"startIconContainer"> | undefined;
|
|
90
90
|
} & Omit<PlasmicButton__VariantsArgs, ReservedPropsType> & Omit<PlasmicButton__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"startIconContainer">, keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "startIconContainer" | keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & {
|
|
91
|
-
key?: React.Key;
|
|
91
|
+
key?: React.Key | undefined;
|
|
92
92
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
93
93
|
displayName: string;
|
|
94
94
|
};
|
|
95
95
|
contentContainer: {
|
|
96
|
-
<
|
|
97
|
-
variants?: PlasmicButton__VariantsArgs;
|
|
98
|
-
args?: PlasmicButton__ArgsType;
|
|
96
|
+
<T_2 extends {
|
|
97
|
+
variants?: PlasmicButton__VariantsArgs | undefined;
|
|
98
|
+
args?: PlasmicButton__ArgsType | undefined;
|
|
99
99
|
overrides?: NodeOverridesType<"contentContainer"> | undefined;
|
|
100
100
|
} & Omit<PlasmicButton__VariantsArgs, ReservedPropsType> & Omit<PlasmicButton__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"contentContainer">, keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "contentContainer" | keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & {
|
|
101
|
-
key?: React.Key;
|
|
102
|
-
}>(props:
|
|
103
|
-
variants?: PlasmicButton__VariantsArgs;
|
|
104
|
-
args?: PlasmicButton__ArgsType;
|
|
101
|
+
key?: React.Key | undefined;
|
|
102
|
+
}>(props: T_2 & StrictProps<T_2, {
|
|
103
|
+
variants?: PlasmicButton__VariantsArgs | undefined;
|
|
104
|
+
args?: PlasmicButton__ArgsType | undefined;
|
|
105
105
|
overrides?: NodeOverridesType<"contentContainer"> | undefined;
|
|
106
106
|
} & Omit<PlasmicButton__VariantsArgs, ReservedPropsType> & Omit<PlasmicButton__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"contentContainer">, keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "contentContainer" | keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & {
|
|
107
|
-
key?: React.Key;
|
|
107
|
+
key?: React.Key | undefined;
|
|
108
108
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
109
109
|
displayName: string;
|
|
110
110
|
};
|
|
111
111
|
endIconContainer: {
|
|
112
|
-
<
|
|
113
|
-
variants?: PlasmicButton__VariantsArgs;
|
|
114
|
-
args?: PlasmicButton__ArgsType;
|
|
112
|
+
<T_3 extends {
|
|
113
|
+
variants?: PlasmicButton__VariantsArgs | undefined;
|
|
114
|
+
args?: PlasmicButton__ArgsType | undefined;
|
|
115
115
|
overrides?: NodeOverridesType<"endIconContainer"> | undefined;
|
|
116
116
|
} & Omit<PlasmicButton__VariantsArgs, ReservedPropsType> & Omit<PlasmicButton__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"endIconContainer">, keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "endIconContainer" | keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & {
|
|
117
|
-
key?: React.Key;
|
|
118
|
-
}>(props:
|
|
119
|
-
variants?: PlasmicButton__VariantsArgs;
|
|
120
|
-
args?: PlasmicButton__ArgsType;
|
|
117
|
+
key?: React.Key | undefined;
|
|
118
|
+
}>(props: T_3 & StrictProps<T_3, {
|
|
119
|
+
variants?: PlasmicButton__VariantsArgs | undefined;
|
|
120
|
+
args?: PlasmicButton__ArgsType | undefined;
|
|
121
121
|
overrides?: NodeOverridesType<"endIconContainer"> | undefined;
|
|
122
122
|
} & Omit<PlasmicButton__VariantsArgs, ReservedPropsType> & Omit<PlasmicButton__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"endIconContainer">, keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "endIconContainer" | keyof PlasmicButton__VariantsArgs | keyof PlasmicButton__ArgsType | ReservedPropsType> & {
|
|
123
|
-
key?: React.Key;
|
|
123
|
+
key?: React.Key | undefined;
|
|
124
124
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
125
125
|
displayName: string;
|
|
126
126
|
};
|
|
@@ -44,129 +44,129 @@ type ReservedPropsType = "variants" | "args" | "overrides";
|
|
|
44
44
|
type NodeOverridesType<T extends NodeNameType> = Pick<PlasmicAccountActivationConformation__OverridesType, DescendantsType<T>>;
|
|
45
45
|
export declare const PlasmicAccountActivationConformation: {
|
|
46
46
|
<T extends {
|
|
47
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
48
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
47
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
48
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
49
49
|
overrides?: NodeOverridesType<"root"> | undefined;
|
|
50
|
-
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "svg" | "header" | "content" | "message" | "root" | "logo" | "freeBox" | "failure" |
|
|
51
|
-
key?: React.Key;
|
|
50
|
+
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "svg" | "header" | "content" | "message" | "root" | "logo" | "freeBox" | "failure" | "productCards" | ReservedPropsType> & {
|
|
51
|
+
key?: React.Key | undefined;
|
|
52
52
|
}>(props: T & StrictProps<T, {
|
|
53
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
54
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
53
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
54
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
55
55
|
overrides?: NodeOverridesType<"root"> | undefined;
|
|
56
|
-
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "svg" | "header" | "content" | "message" | "root" | "logo" | "freeBox" | "failure" |
|
|
57
|
-
key?: React.Key;
|
|
56
|
+
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "svg" | "header" | "content" | "message" | "root" | "logo" | "freeBox" | "failure" | "productCards" | ReservedPropsType> & {
|
|
57
|
+
key?: React.Key | undefined;
|
|
58
58
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
59
59
|
displayName: string;
|
|
60
60
|
} & {
|
|
61
61
|
header: {
|
|
62
|
-
<
|
|
63
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
64
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
62
|
+
<T_1 extends {
|
|
63
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
64
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
65
65
|
overrides?: NodeOverridesType<"header"> | undefined;
|
|
66
66
|
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"header">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "header" | "logo" | "failure" | ReservedPropsType> & {
|
|
67
|
-
key?: React.Key;
|
|
68
|
-
}>(props:
|
|
69
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
70
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
67
|
+
key?: React.Key | undefined;
|
|
68
|
+
}>(props: T_1 & StrictProps<T_1, {
|
|
69
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
70
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
71
71
|
overrides?: NodeOverridesType<"header"> | undefined;
|
|
72
72
|
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"header">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "header" | "logo" | "failure" | ReservedPropsType> & {
|
|
73
|
-
key?: React.Key;
|
|
73
|
+
key?: React.Key | undefined;
|
|
74
74
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
75
75
|
displayName: string;
|
|
76
76
|
};
|
|
77
77
|
logo: {
|
|
78
78
|
<T extends {
|
|
79
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
80
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
79
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
80
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
81
81
|
overrides?: NodeOverridesType<"logo"> | undefined;
|
|
82
82
|
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"logo">, "failure" | ReservedPropsType> & Omit<Partial<import('../../Logo').LogoProps & React.RefAttributes<HTMLDivElement>>, "logo" | "failure" | ReservedPropsType> & {
|
|
83
|
-
key?: React.Key;
|
|
83
|
+
key?: React.Key | undefined;
|
|
84
84
|
}>(props: T & StrictProps<T, {
|
|
85
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
86
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
85
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
86
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
87
87
|
overrides?: NodeOverridesType<"logo"> | undefined;
|
|
88
88
|
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"logo">, "failure" | ReservedPropsType> & Omit<Partial<import('../../Logo').LogoProps & React.RefAttributes<HTMLDivElement>>, "logo" | "failure" | ReservedPropsType> & {
|
|
89
|
-
key?: React.Key;
|
|
89
|
+
key?: React.Key | undefined;
|
|
90
90
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
91
91
|
displayName: string;
|
|
92
92
|
};
|
|
93
93
|
content: {
|
|
94
|
-
<
|
|
95
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
96
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
94
|
+
<T_1 extends {
|
|
95
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
96
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
97
97
|
overrides?: NodeOverridesType<"content"> | undefined;
|
|
98
|
-
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"content">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "svg" | "content" | "message" | "freeBox" | "failure" |
|
|
99
|
-
key?: React.Key;
|
|
100
|
-
}>(props:
|
|
101
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
102
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
98
|
+
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"content">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "svg" | "content" | "message" | "freeBox" | "failure" | "productCards" | ReservedPropsType> & {
|
|
99
|
+
key?: React.Key | undefined;
|
|
100
|
+
}>(props: T_1 & StrictProps<T_1, {
|
|
101
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
102
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
103
103
|
overrides?: NodeOverridesType<"content"> | undefined;
|
|
104
|
-
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"content">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "svg" | "content" | "message" | "freeBox" | "failure" |
|
|
105
|
-
key?: React.Key;
|
|
104
|
+
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"content">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "svg" | "content" | "message" | "freeBox" | "failure" | "productCards" | ReservedPropsType> & {
|
|
105
|
+
key?: React.Key | undefined;
|
|
106
106
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
107
107
|
displayName: string;
|
|
108
108
|
};
|
|
109
109
|
message: {
|
|
110
|
-
<
|
|
111
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
112
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
110
|
+
<T_2 extends {
|
|
111
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
112
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
113
113
|
overrides?: NodeOverridesType<"message"> | undefined;
|
|
114
114
|
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"message">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "svg" | "message" | "freeBox" | "failure" | ReservedPropsType> & {
|
|
115
|
-
key?: React.Key;
|
|
116
|
-
}>(props:
|
|
117
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
118
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
115
|
+
key?: React.Key | undefined;
|
|
116
|
+
}>(props: T_2 & StrictProps<T_2, {
|
|
117
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
118
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
119
119
|
overrides?: NodeOverridesType<"message"> | undefined;
|
|
120
120
|
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"message">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "svg" | "message" | "freeBox" | "failure" | ReservedPropsType> & {
|
|
121
|
-
key?: React.Key;
|
|
121
|
+
key?: React.Key | undefined;
|
|
122
122
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
123
123
|
displayName: string;
|
|
124
124
|
};
|
|
125
125
|
freeBox: {
|
|
126
|
-
<
|
|
127
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
128
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
126
|
+
<T_3 extends {
|
|
127
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
128
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
129
129
|
overrides?: NodeOverridesType<"freeBox"> | undefined;
|
|
130
130
|
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"freeBox">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "svg" | "freeBox" | "failure" | ReservedPropsType> & {
|
|
131
|
-
key?: React.Key;
|
|
132
|
-
}>(props:
|
|
133
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
134
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
131
|
+
key?: React.Key | undefined;
|
|
132
|
+
}>(props: T_3 & StrictProps<T_3, {
|
|
133
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
134
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
135
135
|
overrides?: NodeOverridesType<"freeBox"> | undefined;
|
|
136
136
|
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"freeBox">, "failure" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "svg" | "freeBox" | "failure" | ReservedPropsType> & {
|
|
137
|
-
key?: React.Key;
|
|
137
|
+
key?: React.Key | undefined;
|
|
138
138
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
139
139
|
displayName: string;
|
|
140
140
|
};
|
|
141
141
|
svg: {
|
|
142
|
-
<
|
|
143
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
144
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
142
|
+
<T_4 extends {
|
|
143
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
144
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
145
145
|
overrides?: NodeOverridesType<"svg"> | undefined;
|
|
146
146
|
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"svg">, "failure" | ReservedPropsType> & Omit<Partial<React.SVGProps<SVGSVGElement>>, "svg" | "failure" | ReservedPropsType> & {
|
|
147
|
-
key?: React.Key;
|
|
148
|
-
}>(props:
|
|
149
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
150
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
147
|
+
key?: React.Key | undefined;
|
|
148
|
+
}>(props: T_4 & StrictProps<T_4, {
|
|
149
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
150
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
151
151
|
overrides?: NodeOverridesType<"svg"> | undefined;
|
|
152
152
|
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"svg">, "failure" | ReservedPropsType> & Omit<Partial<React.SVGProps<SVGSVGElement>>, "svg" | "failure" | ReservedPropsType> & {
|
|
153
|
-
key?: React.Key;
|
|
153
|
+
key?: React.Key | undefined;
|
|
154
154
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
155
155
|
displayName: string;
|
|
156
156
|
};
|
|
157
157
|
productCards: {
|
|
158
|
-
<
|
|
159
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
160
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
158
|
+
<T_5 extends {
|
|
159
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
160
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
161
161
|
overrides?: NodeOverridesType<"productCards"> | undefined;
|
|
162
|
-
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"productCards">, "failure" | ReservedPropsType> & Omit<Partial<import('../../ProductCards').ProductCardsProps & React.RefAttributes<HTMLDivElement>>, "failure" |
|
|
163
|
-
key?: React.Key;
|
|
164
|
-
}>(props:
|
|
165
|
-
variants?: PlasmicAccountActivationConformation__VariantsArgs;
|
|
166
|
-
args?: PlasmicAccountActivationConformation__ArgsType;
|
|
162
|
+
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"productCards">, "failure" | ReservedPropsType> & Omit<Partial<import('../../ProductCards').ProductCardsProps & React.RefAttributes<HTMLDivElement>>, "failure" | "productCards" | ReservedPropsType> & {
|
|
163
|
+
key?: React.Key | undefined;
|
|
164
|
+
}>(props: T_5 & StrictProps<T_5, {
|
|
165
|
+
variants?: PlasmicAccountActivationConformation__VariantsArgs | undefined;
|
|
166
|
+
args?: PlasmicAccountActivationConformation__ArgsType | undefined;
|
|
167
167
|
overrides?: NodeOverridesType<"productCards"> | undefined;
|
|
168
|
-
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"productCards">, "failure" | ReservedPropsType> & Omit<Partial<import('../../ProductCards').ProductCardsProps & React.RefAttributes<HTMLDivElement>>, "failure" |
|
|
169
|
-
key?: React.Key;
|
|
168
|
+
} & Omit<PlasmicAccountActivationConformation__VariantsArgs, ReservedPropsType> & Omit<PlasmicAccountActivationConformation__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"productCards">, "failure" | ReservedPropsType> & Omit<Partial<import('../../ProductCards').ProductCardsProps & React.RefAttributes<HTMLDivElement>>, "failure" | "productCards" | ReservedPropsType> & {
|
|
169
|
+
key?: React.Key | undefined;
|
|
170
170
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
171
171
|
displayName: string;
|
|
172
172
|
};
|
|
@@ -10,8 +10,9 @@ export type PlasmicButtonFromProPro__VariantMembers = {
|
|
|
10
10
|
isDisabled: "isDisabled";
|
|
11
11
|
shape: "rounded" | "round" | "sharp" | "minimal";
|
|
12
12
|
size: "compact" | "minimal" | "unnamedVariant";
|
|
13
|
-
color: "blue" | "green" | "yellow" | "red" | "sand" | "white" | "softBlue" | "softGreen" | "softYellow" | "softRed" | "softSand" | "clear" | "link" | "lightBlue" | "darkBlue" | "proRed" | "mapMapGreen" | "darkGray";
|
|
14
|
-
dropshadow: "noShadow" | "basic";
|
|
13
|
+
color: "blue" | "green" | "yellow" | "red" | "sand" | "white" | "softBlue" | "softGreen" | "softYellow" | "softRed" | "softSand" | "clear" | "link" | "lightBlue" | "darkBlue" | "proRed" | "mapMapGreen" | "darkGray" | "darkerGray";
|
|
14
|
+
dropshadow: "noShadow" | "basic" | "subtle";
|
|
15
|
+
border: "normal";
|
|
15
16
|
};
|
|
16
17
|
export type PlasmicButtonFromProPro__VariantsArgs = {
|
|
17
18
|
showStartIcon?: SingleBooleanChoiceArg<"showStartIcon">;
|
|
@@ -19,8 +20,9 @@ export type PlasmicButtonFromProPro__VariantsArgs = {
|
|
|
19
20
|
isDisabled?: SingleBooleanChoiceArg<"isDisabled">;
|
|
20
21
|
shape?: SingleChoiceArg<"rounded" | "round" | "sharp" | "minimal">;
|
|
21
22
|
size?: SingleChoiceArg<"compact" | "minimal" | "unnamedVariant">;
|
|
22
|
-
color?: SingleChoiceArg<"blue" | "green" | "yellow" | "red" | "sand" | "white" | "softBlue" | "softGreen" | "softYellow" | "softRed" | "softSand" | "clear" | "link" | "lightBlue" | "darkBlue" | "proRed" | "mapMapGreen" | "darkGray">;
|
|
23
|
-
dropshadow?: SingleChoiceArg<"noShadow" | "basic">;
|
|
23
|
+
color?: SingleChoiceArg<"blue" | "green" | "yellow" | "red" | "sand" | "white" | "softBlue" | "softGreen" | "softYellow" | "softRed" | "softSand" | "clear" | "link" | "lightBlue" | "darkBlue" | "proRed" | "mapMapGreen" | "darkGray" | "darkerGray">;
|
|
24
|
+
dropshadow?: SingleChoiceArg<"noShadow" | "basic" | "subtle">;
|
|
25
|
+
border?: SingleChoiceArg<"normal">;
|
|
24
26
|
};
|
|
25
27
|
export declare const PlasmicButtonFromProPro__VariantProps: (keyof PlasmicButtonFromProPro__VariantsArgs)[];
|
|
26
28
|
export type PlasmicButtonFromProPro__ArgsType = {
|
|
@@ -43,8 +45,9 @@ export interface DefaultButtonFromProProProps extends pp.BaseButtonProps {
|
|
|
43
45
|
target?: boolean;
|
|
44
46
|
shape?: SingleChoiceArg<"rounded" | "round" | "sharp" | "minimal">;
|
|
45
47
|
size?: SingleChoiceArg<"compact" | "minimal" | "unnamedVariant">;
|
|
46
|
-
color?: SingleChoiceArg<"blue" | "green" | "yellow" | "red" | "sand" | "white" | "softBlue" | "softGreen" | "softYellow" | "softRed" | "softSand" | "clear" | "link" | "lightBlue" | "darkBlue" | "proRed" | "mapMapGreen" | "darkGray">;
|
|
47
|
-
dropshadow?: SingleChoiceArg<"noShadow" | "basic">;
|
|
48
|
+
color?: SingleChoiceArg<"blue" | "green" | "yellow" | "red" | "sand" | "white" | "softBlue" | "softGreen" | "softYellow" | "softRed" | "softSand" | "clear" | "link" | "lightBlue" | "darkBlue" | "proRed" | "mapMapGreen" | "darkGray" | "darkerGray">;
|
|
49
|
+
dropshadow?: SingleChoiceArg<"noShadow" | "basic" | "subtle">;
|
|
50
|
+
border?: SingleChoiceArg<"normal">;
|
|
48
51
|
}
|
|
49
52
|
declare function useBehavior<P extends pp.PlumeButtonProps>(props: P, ref: pp.ButtonRef): {
|
|
50
53
|
plasmicProps: {
|
|
@@ -65,65 +68,65 @@ type ReservedPropsType = "variants" | "args" | "overrides";
|
|
|
65
68
|
type NodeOverridesType<T extends NodeNameType> = Pick<PlasmicButtonFromProPro__OverridesType, DescendantsType<T>>;
|
|
66
69
|
export declare const PlasmicButtonFromProPro: {
|
|
67
70
|
<T extends {
|
|
68
|
-
variants?: PlasmicButtonFromProPro__VariantsArgs;
|
|
69
|
-
args?: PlasmicButtonFromProPro__ArgsType;
|
|
71
|
+
variants?: PlasmicButtonFromProPro__VariantsArgs | undefined;
|
|
72
|
+
args?: PlasmicButtonFromProPro__ArgsType | undefined;
|
|
70
73
|
overrides?: NodeOverridesType<"root"> | undefined;
|
|
71
74
|
} & Omit<PlasmicButtonFromProPro__VariantsArgs, ReservedPropsType> & Omit<PlasmicButtonFromProPro__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>, "root" | "startIconContainer" | "endIconContainer" | keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType | "contentContainer"> & {
|
|
72
|
-
key?: React.Key;
|
|
75
|
+
key?: React.Key | undefined;
|
|
73
76
|
}>(props: T & StrictProps<T, {
|
|
74
|
-
variants?: PlasmicButtonFromProPro__VariantsArgs;
|
|
75
|
-
args?: PlasmicButtonFromProPro__ArgsType;
|
|
77
|
+
variants?: PlasmicButtonFromProPro__VariantsArgs | undefined;
|
|
78
|
+
args?: PlasmicButtonFromProPro__ArgsType | undefined;
|
|
76
79
|
overrides?: NodeOverridesType<"root"> | undefined;
|
|
77
80
|
} & Omit<PlasmicButtonFromProPro__VariantsArgs, ReservedPropsType> & Omit<PlasmicButtonFromProPro__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>, "root" | "startIconContainer" | "endIconContainer" | keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType | "contentContainer"> & {
|
|
78
|
-
key?: React.Key;
|
|
81
|
+
key?: React.Key | undefined;
|
|
79
82
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
80
83
|
displayName: string;
|
|
81
84
|
} & {
|
|
82
85
|
startIconContainer: {
|
|
83
|
-
<
|
|
84
|
-
variants?: PlasmicButtonFromProPro__VariantsArgs;
|
|
85
|
-
args?: PlasmicButtonFromProPro__ArgsType;
|
|
86
|
+
<T_1 extends {
|
|
87
|
+
variants?: PlasmicButtonFromProPro__VariantsArgs | undefined;
|
|
88
|
+
args?: PlasmicButtonFromProPro__ArgsType | undefined;
|
|
86
89
|
overrides?: NodeOverridesType<"startIconContainer"> | undefined;
|
|
87
90
|
} & Omit<PlasmicButtonFromProPro__VariantsArgs, ReservedPropsType> & Omit<PlasmicButtonFromProPro__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"startIconContainer">, keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "startIconContainer" | keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType> & {
|
|
88
|
-
key?: React.Key;
|
|
89
|
-
}>(props:
|
|
90
|
-
variants?: PlasmicButtonFromProPro__VariantsArgs;
|
|
91
|
-
args?: PlasmicButtonFromProPro__ArgsType;
|
|
91
|
+
key?: React.Key | undefined;
|
|
92
|
+
}>(props: T_1 & StrictProps<T_1, {
|
|
93
|
+
variants?: PlasmicButtonFromProPro__VariantsArgs | undefined;
|
|
94
|
+
args?: PlasmicButtonFromProPro__ArgsType | undefined;
|
|
92
95
|
overrides?: NodeOverridesType<"startIconContainer"> | undefined;
|
|
93
96
|
} & Omit<PlasmicButtonFromProPro__VariantsArgs, ReservedPropsType> & Omit<PlasmicButtonFromProPro__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"startIconContainer">, keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "startIconContainer" | keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType> & {
|
|
94
|
-
key?: React.Key;
|
|
97
|
+
key?: React.Key | undefined;
|
|
95
98
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
96
99
|
displayName: string;
|
|
97
100
|
};
|
|
98
101
|
contentContainer: {
|
|
99
|
-
<
|
|
100
|
-
variants?: PlasmicButtonFromProPro__VariantsArgs;
|
|
101
|
-
args?: PlasmicButtonFromProPro__ArgsType;
|
|
102
|
+
<T_2 extends {
|
|
103
|
+
variants?: PlasmicButtonFromProPro__VariantsArgs | undefined;
|
|
104
|
+
args?: PlasmicButtonFromProPro__ArgsType | undefined;
|
|
102
105
|
overrides?: NodeOverridesType<"contentContainer"> | undefined;
|
|
103
106
|
} & Omit<PlasmicButtonFromProPro__VariantsArgs, ReservedPropsType> & Omit<PlasmicButtonFromProPro__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"contentContainer">, keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType | "contentContainer"> & {
|
|
104
|
-
key?: React.Key;
|
|
105
|
-
}>(props:
|
|
106
|
-
variants?: PlasmicButtonFromProPro__VariantsArgs;
|
|
107
|
-
args?: PlasmicButtonFromProPro__ArgsType;
|
|
107
|
+
key?: React.Key | undefined;
|
|
108
|
+
}>(props: T_2 & StrictProps<T_2, {
|
|
109
|
+
variants?: PlasmicButtonFromProPro__VariantsArgs | undefined;
|
|
110
|
+
args?: PlasmicButtonFromProPro__ArgsType | undefined;
|
|
108
111
|
overrides?: NodeOverridesType<"contentContainer"> | undefined;
|
|
109
112
|
} & Omit<PlasmicButtonFromProPro__VariantsArgs, ReservedPropsType> & Omit<PlasmicButtonFromProPro__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"contentContainer">, keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType | "contentContainer"> & {
|
|
110
|
-
key?: React.Key;
|
|
113
|
+
key?: React.Key | undefined;
|
|
111
114
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
112
115
|
displayName: string;
|
|
113
116
|
};
|
|
114
117
|
endIconContainer: {
|
|
115
|
-
<
|
|
116
|
-
variants?: PlasmicButtonFromProPro__VariantsArgs;
|
|
117
|
-
args?: PlasmicButtonFromProPro__ArgsType;
|
|
118
|
+
<T_3 extends {
|
|
119
|
+
variants?: PlasmicButtonFromProPro__VariantsArgs | undefined;
|
|
120
|
+
args?: PlasmicButtonFromProPro__ArgsType | undefined;
|
|
118
121
|
overrides?: NodeOverridesType<"endIconContainer"> | undefined;
|
|
119
122
|
} & Omit<PlasmicButtonFromProPro__VariantsArgs, ReservedPropsType> & Omit<PlasmicButtonFromProPro__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"endIconContainer">, keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "endIconContainer" | keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType> & {
|
|
120
|
-
key?: React.Key;
|
|
121
|
-
}>(props:
|
|
122
|
-
variants?: PlasmicButtonFromProPro__VariantsArgs;
|
|
123
|
-
args?: PlasmicButtonFromProPro__ArgsType;
|
|
123
|
+
key?: React.Key | undefined;
|
|
124
|
+
}>(props: T_3 & StrictProps<T_3, {
|
|
125
|
+
variants?: PlasmicButtonFromProPro__VariantsArgs | undefined;
|
|
126
|
+
args?: PlasmicButtonFromProPro__ArgsType | undefined;
|
|
124
127
|
overrides?: NodeOverridesType<"endIconContainer"> | undefined;
|
|
125
128
|
} & Omit<PlasmicButtonFromProPro__VariantsArgs, ReservedPropsType> & Omit<PlasmicButtonFromProPro__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"endIconContainer">, keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "endIconContainer" | keyof PlasmicButtonFromProPro__VariantsArgs | keyof PlasmicButtonFromProPro__ArgsType | ReservedPropsType> & {
|
|
126
|
-
key?: React.Key;
|
|
129
|
+
key?: React.Key | undefined;
|
|
127
130
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
128
131
|
displayName: string;
|
|
129
132
|
};
|
|
@@ -29,33 +29,33 @@ type ReservedPropsType = "variants" | "args" | "overrides";
|
|
|
29
29
|
type NodeOverridesType<T extends NodeNameType> = Pick<PlasmicDescription__OverridesType, DescendantsType<T>>;
|
|
30
30
|
export declare const PlasmicDescription: {
|
|
31
31
|
<T extends {
|
|
32
|
-
variants?: PlasmicDescription__VariantsArgs;
|
|
33
|
-
args?: PlasmicDescription__ArgsType;
|
|
32
|
+
variants?: PlasmicDescription__VariantsArgs | undefined;
|
|
33
|
+
args?: PlasmicDescription__ArgsType | undefined;
|
|
34
34
|
overrides?: NodeOverridesType<"root"> | undefined;
|
|
35
35
|
} & Omit<PlasmicDescription__VariantsArgs, ReservedPropsType> & Omit<PlasmicDescription__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, "children" | ReservedPropsType> & Omit<Partial<import('@plasmicpkgs/react-aria/skinny/registerText').BaseTextProps>, "children" | "root" | "freeBox" | ReservedPropsType> & {
|
|
36
|
-
key?: React.Key;
|
|
36
|
+
key?: React.Key | undefined;
|
|
37
37
|
}>(props: T & StrictProps<T, {
|
|
38
|
-
variants?: PlasmicDescription__VariantsArgs;
|
|
39
|
-
args?: PlasmicDescription__ArgsType;
|
|
38
|
+
variants?: PlasmicDescription__VariantsArgs | undefined;
|
|
39
|
+
args?: PlasmicDescription__ArgsType | undefined;
|
|
40
40
|
overrides?: NodeOverridesType<"root"> | undefined;
|
|
41
41
|
} & Omit<PlasmicDescription__VariantsArgs, ReservedPropsType> & Omit<PlasmicDescription__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, "children" | ReservedPropsType> & Omit<Partial<import('@plasmicpkgs/react-aria/skinny/registerText').BaseTextProps>, "children" | "root" | "freeBox" | ReservedPropsType> & {
|
|
42
|
-
key?: React.Key;
|
|
42
|
+
key?: React.Key | undefined;
|
|
43
43
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
44
44
|
displayName: string;
|
|
45
45
|
} & {
|
|
46
46
|
freeBox: {
|
|
47
|
-
<
|
|
48
|
-
variants?: PlasmicDescription__VariantsArgs;
|
|
49
|
-
args?: PlasmicDescription__ArgsType;
|
|
47
|
+
<T_1 extends {
|
|
48
|
+
variants?: PlasmicDescription__VariantsArgs | undefined;
|
|
49
|
+
args?: PlasmicDescription__ArgsType | undefined;
|
|
50
50
|
overrides?: NodeOverridesType<"freeBox"> | undefined;
|
|
51
51
|
} & Omit<PlasmicDescription__VariantsArgs, ReservedPropsType> & Omit<PlasmicDescription__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"freeBox">, "children" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "children" | "freeBox" | ReservedPropsType> & {
|
|
52
|
-
key?: React.Key;
|
|
53
|
-
}>(props:
|
|
54
|
-
variants?: PlasmicDescription__VariantsArgs;
|
|
55
|
-
args?: PlasmicDescription__ArgsType;
|
|
52
|
+
key?: React.Key | undefined;
|
|
53
|
+
}>(props: T_1 & StrictProps<T_1, {
|
|
54
|
+
variants?: PlasmicDescription__VariantsArgs | undefined;
|
|
55
|
+
args?: PlasmicDescription__ArgsType | undefined;
|
|
56
56
|
overrides?: NodeOverridesType<"freeBox"> | undefined;
|
|
57
57
|
} & Omit<PlasmicDescription__VariantsArgs, ReservedPropsType> & Omit<PlasmicDescription__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"freeBox">, "children" | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "children" | "freeBox" | ReservedPropsType> & {
|
|
58
|
-
key?: React.Key;
|
|
58
|
+
key?: React.Key | undefined;
|
|
59
59
|
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
60
60
|
displayName: string;
|
|
61
61
|
};
|