propro-common-components 0.2.6 → 0.2.7
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/main.css +1 -1
- package/dist/plasmicComponents/Description.d.ts +6 -0
- package/dist/plasmicComponents/Label.d.ts +6 -0
- package/dist/plasmicComponents/Slider.d.ts +6 -0
- package/dist/plasmicComponents/SliderThumb.d.ts +6 -0
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicDescription.d.ts +65 -0
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicLabel.d.ts +91 -0
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicSignInSignUpForm.d.ts +121 -205
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicSlider.d.ts +185 -0
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicSliderThumb.d.ts +49 -0
- package/dist/propro-common-components.js +2760 -2929
- package/package.json +4 -3
- package/dist/plasmicComponents/plasmic/pro_pro/PlasmicIconImports.d.ts +0 -49
@@ -0,0 +1,6 @@
|
|
1
|
+
import { DefaultDescriptionProps } from './plasmic/pro_pro/PlasmicDescription';
|
2
|
+
|
3
|
+
export interface DescriptionProps extends DefaultDescriptionProps {
|
4
|
+
}
|
5
|
+
declare function Description(props: DescriptionProps): import("react/jsx-runtime").JSX.Element;
|
6
|
+
export default Description;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import { DefaultSliderThumbProps } from './plasmic/pro_pro/PlasmicSliderThumb';
|
2
|
+
|
3
|
+
export interface SliderThumbProps extends DefaultSliderThumbProps {
|
4
|
+
}
|
5
|
+
declare function SliderThumb(props: SliderThumbProps): import("react/jsx-runtime").JSX.Element;
|
6
|
+
export default SliderThumb;
|
@@ -0,0 +1,65 @@
|
|
1
|
+
import { Flex as Flex__, StrictProps } from '@plasmicapp/react-web';
|
2
|
+
import { BaseText } from '@plasmicpkgs/react-aria/skinny/registerText';
|
3
|
+
/** @jsxRuntime classic */
|
4
|
+
/** @jsx createPlasmicElementProxy */
|
5
|
+
/** @jsxFrag React.Fragment */
|
6
|
+
import * as React from "react";
|
7
|
+
export type PlasmicDescription__VariantMembers = {};
|
8
|
+
export type PlasmicDescription__VariantsArgs = {};
|
9
|
+
export declare const PlasmicDescription__VariantProps: never[];
|
10
|
+
export type PlasmicDescription__ArgsType = {
|
11
|
+
children?: React.ReactNode;
|
12
|
+
};
|
13
|
+
export declare const PlasmicDescription__ArgProps: "children"[];
|
14
|
+
export type PlasmicDescription__OverridesType = {
|
15
|
+
root?: Flex__<typeof BaseText>;
|
16
|
+
freeBox?: Flex__<"div">;
|
17
|
+
};
|
18
|
+
export interface DefaultDescriptionProps {
|
19
|
+
children?: React.ReactNode;
|
20
|
+
className?: string;
|
21
|
+
}
|
22
|
+
declare const PlasmicDescendants: {
|
23
|
+
readonly root: readonly ["root", "freeBox"];
|
24
|
+
readonly freeBox: readonly ["freeBox"];
|
25
|
+
};
|
26
|
+
type NodeNameType = keyof typeof PlasmicDescendants;
|
27
|
+
type DescendantsType<T extends NodeNameType> = (typeof PlasmicDescendants)[T][number];
|
28
|
+
type ReservedPropsType = "variants" | "args" | "overrides";
|
29
|
+
type NodeOverridesType<T extends NodeNameType> = Pick<PlasmicDescription__OverridesType, DescendantsType<T>>;
|
30
|
+
export declare const PlasmicDescription: {
|
31
|
+
<T extends {
|
32
|
+
variants?: PlasmicDescription__VariantsArgs | undefined;
|
33
|
+
args?: PlasmicDescription__ArgsType | undefined;
|
34
|
+
overrides?: NodeOverridesType<"root"> | undefined;
|
35
|
+
} & Omit<PlasmicDescription__VariantsArgs, ReservedPropsType> & Omit<PlasmicDescription__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, "children" | ReservedPropsType> & Omit<Partial<import('react-aria-components').TextProps>, "children" | "root" | "freeBox" | ReservedPropsType> & {
|
36
|
+
key?: React.Key | undefined;
|
37
|
+
}>(props: T & StrictProps<T, {
|
38
|
+
variants?: PlasmicDescription__VariantsArgs | undefined;
|
39
|
+
args?: PlasmicDescription__ArgsType | undefined;
|
40
|
+
overrides?: NodeOverridesType<"root"> | undefined;
|
41
|
+
} & Omit<PlasmicDescription__VariantsArgs, ReservedPropsType> & Omit<PlasmicDescription__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, "children" | ReservedPropsType> & Omit<Partial<import('react-aria-components').TextProps>, "children" | "root" | "freeBox" | ReservedPropsType> & {
|
42
|
+
key?: React.Key | undefined;
|
43
|
+
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
44
|
+
displayName: string;
|
45
|
+
} & {
|
46
|
+
freeBox: {
|
47
|
+
<T_1 extends {
|
48
|
+
variants?: PlasmicDescription__VariantsArgs | undefined;
|
49
|
+
args?: PlasmicDescription__ArgsType | undefined;
|
50
|
+
overrides?: NodeOverridesType<"freeBox"> | undefined;
|
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 | undefined;
|
53
|
+
}>(props: T_1 & StrictProps<T_1, {
|
54
|
+
variants?: PlasmicDescription__VariantsArgs | undefined;
|
55
|
+
args?: PlasmicDescription__ArgsType | undefined;
|
56
|
+
overrides?: NodeOverridesType<"freeBox"> | undefined;
|
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 | undefined;
|
59
|
+
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
60
|
+
displayName: string;
|
61
|
+
};
|
62
|
+
internalVariantProps: never[];
|
63
|
+
internalArgProps: "children"[];
|
64
|
+
};
|
65
|
+
export default PlasmicDescription;
|
@@ -0,0 +1,91 @@
|
|
1
|
+
import { Flex as Flex__, SingleChoiceArg, StrictProps } from '@plasmicapp/react-web';
|
2
|
+
import { BaseLabel } from '@plasmicpkgs/react-aria/skinny/registerLabel';
|
3
|
+
/** @jsxRuntime classic */
|
4
|
+
/** @jsx createPlasmicElementProxy */
|
5
|
+
/** @jsxFrag React.Fragment */
|
6
|
+
import * as React from "react";
|
7
|
+
export type PlasmicLabel__VariantMembers = {
|
8
|
+
size: "sm" | "lg";
|
9
|
+
requirementIndicator: "optional" | "required";
|
10
|
+
};
|
11
|
+
export type PlasmicLabel__VariantsArgs = {
|
12
|
+
size?: SingleChoiceArg<"sm" | "lg">;
|
13
|
+
requirementIndicator?: SingleChoiceArg<"optional" | "required">;
|
14
|
+
};
|
15
|
+
export declare const PlasmicLabel__VariantProps: (keyof PlasmicLabel__VariantsArgs)[];
|
16
|
+
export type PlasmicLabel__ArgsType = {
|
17
|
+
children?: React.ReactNode;
|
18
|
+
};
|
19
|
+
export declare const PlasmicLabel__ArgProps: "children"[];
|
20
|
+
export type PlasmicLabel__OverridesType = {
|
21
|
+
root?: Flex__<typeof BaseLabel>;
|
22
|
+
freeBox?: Flex__<"div">;
|
23
|
+
text?: Flex__<"div">;
|
24
|
+
};
|
25
|
+
export interface DefaultLabelProps {
|
26
|
+
children?: React.ReactNode;
|
27
|
+
size?: SingleChoiceArg<"sm" | "lg">;
|
28
|
+
requirementIndicator?: SingleChoiceArg<"optional" | "required">;
|
29
|
+
className?: string;
|
30
|
+
}
|
31
|
+
declare const PlasmicDescendants: {
|
32
|
+
readonly root: readonly ["root", "freeBox", "text"];
|
33
|
+
readonly freeBox: readonly ["freeBox", "text"];
|
34
|
+
readonly text: readonly ["text"];
|
35
|
+
};
|
36
|
+
type NodeNameType = keyof typeof PlasmicDescendants;
|
37
|
+
type DescendantsType<T extends NodeNameType> = (typeof PlasmicDescendants)[T][number];
|
38
|
+
type ReservedPropsType = "variants" | "args" | "overrides";
|
39
|
+
type NodeOverridesType<T extends NodeNameType> = Pick<PlasmicLabel__OverridesType, DescendantsType<T>>;
|
40
|
+
export declare const PlasmicLabel: {
|
41
|
+
<T extends {
|
42
|
+
variants?: PlasmicLabel__VariantsArgs | undefined;
|
43
|
+
args?: PlasmicLabel__ArgsType | undefined;
|
44
|
+
overrides?: NodeOverridesType<"root"> | undefined;
|
45
|
+
} & Omit<PlasmicLabel__VariantsArgs, ReservedPropsType> & Omit<PlasmicLabel__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, "children" | keyof PlasmicLabel__VariantsArgs | ReservedPropsType> & Omit<Partial<import('react-aria-components').LabelProps>, "text" | "children" | "root" | "freeBox" | keyof PlasmicLabel__VariantsArgs | ReservedPropsType> & {
|
46
|
+
key?: React.Key | undefined;
|
47
|
+
}>(props: T & StrictProps<T, {
|
48
|
+
variants?: PlasmicLabel__VariantsArgs | undefined;
|
49
|
+
args?: PlasmicLabel__ArgsType | undefined;
|
50
|
+
overrides?: NodeOverridesType<"root"> | undefined;
|
51
|
+
} & Omit<PlasmicLabel__VariantsArgs, ReservedPropsType> & Omit<PlasmicLabel__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"root">, "children" | keyof PlasmicLabel__VariantsArgs | ReservedPropsType> & Omit<Partial<import('react-aria-components').LabelProps>, "text" | "children" | "root" | "freeBox" | keyof PlasmicLabel__VariantsArgs | ReservedPropsType> & {
|
52
|
+
key?: React.Key | undefined;
|
53
|
+
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
54
|
+
displayName: string;
|
55
|
+
} & {
|
56
|
+
freeBox: {
|
57
|
+
<T_1 extends {
|
58
|
+
variants?: PlasmicLabel__VariantsArgs | undefined;
|
59
|
+
args?: PlasmicLabel__ArgsType | undefined;
|
60
|
+
overrides?: NodeOverridesType<"freeBox"> | undefined;
|
61
|
+
} & Omit<PlasmicLabel__VariantsArgs, ReservedPropsType> & Omit<PlasmicLabel__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"freeBox">, "children" | keyof PlasmicLabel__VariantsArgs | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "text" | "children" | "freeBox" | keyof PlasmicLabel__VariantsArgs | ReservedPropsType> & {
|
62
|
+
key?: React.Key | undefined;
|
63
|
+
}>(props: T_1 & StrictProps<T_1, {
|
64
|
+
variants?: PlasmicLabel__VariantsArgs | undefined;
|
65
|
+
args?: PlasmicLabel__ArgsType | undefined;
|
66
|
+
overrides?: NodeOverridesType<"freeBox"> | undefined;
|
67
|
+
} & Omit<PlasmicLabel__VariantsArgs, ReservedPropsType> & Omit<PlasmicLabel__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"freeBox">, "children" | keyof PlasmicLabel__VariantsArgs | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "text" | "children" | "freeBox" | keyof PlasmicLabel__VariantsArgs | ReservedPropsType> & {
|
68
|
+
key?: React.Key | undefined;
|
69
|
+
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
70
|
+
displayName: string;
|
71
|
+
};
|
72
|
+
text: {
|
73
|
+
<T_2 extends {
|
74
|
+
variants?: PlasmicLabel__VariantsArgs | undefined;
|
75
|
+
args?: PlasmicLabel__ArgsType | undefined;
|
76
|
+
overrides?: NodeOverridesType<"text"> | undefined;
|
77
|
+
} & Omit<PlasmicLabel__VariantsArgs, ReservedPropsType> & Omit<PlasmicLabel__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"text">, "children" | keyof PlasmicLabel__VariantsArgs | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "text" | "children" | keyof PlasmicLabel__VariantsArgs | ReservedPropsType> & {
|
78
|
+
key?: React.Key | undefined;
|
79
|
+
}>(props: T_2 & StrictProps<T_2, {
|
80
|
+
variants?: PlasmicLabel__VariantsArgs | undefined;
|
81
|
+
args?: PlasmicLabel__ArgsType | undefined;
|
82
|
+
overrides?: NodeOverridesType<"text"> | undefined;
|
83
|
+
} & Omit<PlasmicLabel__VariantsArgs, ReservedPropsType> & Omit<PlasmicLabel__ArgsType, ReservedPropsType> & Omit<NodeOverridesType<"text">, "children" | keyof PlasmicLabel__VariantsArgs | ReservedPropsType> & Omit<Partial<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, "text" | "children" | keyof PlasmicLabel__VariantsArgs | ReservedPropsType> & {
|
84
|
+
key?: React.Key | undefined;
|
85
|
+
}>): React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
86
|
+
displayName: string;
|
87
|
+
};
|
88
|
+
internalVariantProps: (keyof PlasmicLabel__VariantsArgs)[];
|
89
|
+
internalArgProps: "children"[];
|
90
|
+
};
|
91
|
+
export default PlasmicLabel;
|