propro-common-components 0.2.40 → 0.2.44

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.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { ListGridSwitch } from './components/switch/ListGridSwitch';
2
2
  import { default as axiosInstance } from './utils/axiosInstance';
3
- import { default as checkAccessToken, isUserLoggedIn } from './utils/checkAccessToken';
3
+ import { default as checkAccessToken, isUserLoggedIn, useIsUserLoggedIn } from './utils/checkAccessToken';
4
4
  import { default as getCookie } from './utils/getCookie';
5
5
  import { default as getStorage, removeStorage, setStorage } from './utils/getStorage';
6
6
  import { default as logout } from './utils/logout';
@@ -22,11 +22,8 @@ import { default as extensionAuth } from './utils/extensionAuth';
22
22
  import { handleAuth } from './utils/handleAuth';
23
23
  import { RUNNING_IN_TAURI } from './constants/tauriConstants';
24
24
  import { AuthProvider } from './context/AuthContext';
25
- import { default as NewsletterForm } from './plasmicComponents/NewsletterForm';
26
- import { default as PlasmicNewsletterForm } from './plasmicComponents/plasmic/pro_pro/PlasmicNewsletterForm';
27
- import { setPRCConfig } from './utils/config/index.config';
28
25
  import { IconLoader, IconType, PlasmicEmojiAndIconSelection, StyleType, getAvailableStyles, loadIcon, searchIcon } from 'propro-icons';
29
26
 
30
- export { AccountManagementComponent, AppContext, AppProvider, AuthProvider, AvatarMenu, Footer, IconLoader, ListGridSwitch, Loading, NewsletterForm, PlasmicEmojiAndIconSelection, PlasmicNewsletterForm, PlasmicSignInSignUpForm, PrivateRoute, RUNNING_IN_TAURI, SignInSignUpForm, SignInSignUpFormLayout, TextInputFromProPro, axiosInstance, checkAccessToken, extensionAuth, // function suite for authentication with extensions.
31
- getAvailableStyles, getCookie, getStorage, handleAuth, isUserLoggedIn, loadIcon, logout, removeStorage, searchIcon, setCookie, setPRCConfig, setStorage, useGet, useMutate, useMutateWithKeepAlive, };
27
+ export { AccountManagementComponent, AppContext, AppProvider, AuthProvider, AvatarMenu, Footer, IconLoader, ListGridSwitch, Loading, PlasmicEmojiAndIconSelection, PlasmicSignInSignUpForm, PrivateRoute, RUNNING_IN_TAURI, SignInSignUpForm, SignInSignUpFormLayout, TextInputFromProPro, axiosInstance, checkAccessToken, extensionAuth, // function suite for authentication with extensions.
28
+ getAvailableStyles, getCookie, getStorage, handleAuth, isUserLoggedIn, useIsUserLoggedIn, loadIcon, logout, removeStorage, searchIcon, setCookie, setStorage, useGet, useMutate, useMutateWithKeepAlive, };
32
29
  export type { DefaultSignInSignUpFormProps, IconType, StyleType };
@@ -2,23 +2,23 @@ import { Flex as Flex__, SingleBooleanChoiceArg, SingleChoiceArg, StrictProps }
2
2
  /** @jsxRuntime classic */
3
3
  /** @jsx createPlasmicElementProxy */
4
4
  /** @jsxFrag React.Fragment */
5
- import * as React from "react";
6
- import * as pp from "@plasmicapp/react-web";
5
+ import * as React from 'react';
6
+ import * as pp from '@plasmicapp/react-web';
7
7
  export type PlasmicButton__VariantMembers = {
8
- showStartIcon: "showStartIcon";
9
- showEndIcon: "showEndIcon";
10
- isDisabled: "isDisabled";
11
- shape: "rounded" | "round" | "sharp";
12
- size: "compact" | "minimal";
13
- color: "blue" | "green" | "yellow" | "red" | "sand" | "white" | "softBlue" | "softGreen" | "softYellow" | "softRed" | "softSand" | "clear" | "link";
8
+ showStartIcon: 'showStartIcon';
9
+ showEndIcon: 'showEndIcon';
10
+ isDisabled: 'isDisabled';
11
+ shape: 'rounded' | 'round' | 'sharp';
12
+ size: 'compact' | 'minimal';
13
+ color: 'blue' | 'green' | 'yellow' | 'red' | 'sand' | 'white' | 'softBlue' | 'softGreen' | 'softYellow' | 'softRed' | 'softSand' | 'clear' | 'link';
14
14
  };
15
15
  export type PlasmicButton__VariantsArgs = {
16
- showStartIcon?: SingleBooleanChoiceArg<"showStartIcon">;
17
- showEndIcon?: SingleBooleanChoiceArg<"showEndIcon">;
18
- isDisabled?: SingleBooleanChoiceArg<"isDisabled">;
19
- shape?: SingleChoiceArg<"rounded" | "round" | "sharp">;
20
- size?: SingleChoiceArg<"compact" | "minimal">;
21
- color?: SingleChoiceArg<"blue" | "green" | "yellow" | "red" | "sand" | "white" | "softBlue" | "softGreen" | "softYellow" | "softRed" | "softSand" | "clear" | "link">;
16
+ showStartIcon?: SingleBooleanChoiceArg<'showStartIcon'>;
17
+ showEndIcon?: SingleBooleanChoiceArg<'showEndIcon'>;
18
+ isDisabled?: SingleBooleanChoiceArg<'isDisabled'>;
19
+ shape?: SingleChoiceArg<'rounded' | 'round' | 'sharp'>;
20
+ size?: SingleChoiceArg<'compact' | 'minimal'>;
21
+ color?: SingleChoiceArg<'blue' | 'green' | 'yellow' | 'red' | 'sand' | 'white' | 'softBlue' | 'softGreen' | 'softYellow' | 'softRed' | 'softSand' | 'clear' | 'link'>;
22
22
  };
23
23
  export declare const PlasmicButton__VariantProps: (keyof PlasmicButton__VariantsArgs)[];
24
24
  export type PlasmicButton__ArgsType = {
@@ -31,17 +31,17 @@ export type PlasmicButton__ArgsType = {
31
31
  };
32
32
  export declare const PlasmicButton__ArgProps: (keyof PlasmicButton__ArgsType)[];
33
33
  export type PlasmicButton__OverridesType = {
34
- root?: Flex__<"button">;
35
- startIconContainer?: Flex__<"div">;
36
- contentContainer?: Flex__<"div">;
37
- endIconContainer?: Flex__<"div">;
34
+ root?: Flex__<'button'>;
35
+ startIconContainer?: Flex__<'div'>;
36
+ contentContainer?: Flex__<'div'>;
37
+ endIconContainer?: Flex__<'div'>;
38
38
  };
39
39
  export interface DefaultButtonProps extends pp.BaseButtonProps {
40
40
  submitsForm?: boolean;
41
41
  target?: boolean;
42
- shape?: SingleChoiceArg<"rounded" | "round" | "sharp">;
43
- size?: SingleChoiceArg<"compact" | "minimal">;
44
- color?: SingleChoiceArg<"blue" | "green" | "yellow" | "red" | "sand" | "white" | "softBlue" | "softGreen" | "softYellow" | "softRed" | "softSand" | "clear" | "link">;
42
+ shape?: SingleChoiceArg<'rounded' | 'round' | 'sharp'>;
43
+ size?: SingleChoiceArg<'compact' | 'minimal'>;
44
+ color?: SingleChoiceArg<'blue' | 'green' | 'yellow' | 'red' | 'sand' | 'white' | 'softBlue' | 'softGreen' | 'softYellow' | 'softRed' | 'softSand' | 'clear' | 'link'>;
45
45
  }
46
46
  declare function useBehavior<P extends pp.PlumeButtonProps>(props: P, ref: pp.ButtonRef): {
47
47
  plasmicProps: {
@@ -58,7 +58,7 @@ declare const PlasmicDescendants: {
58
58
  };
59
59
  type NodeNameType = keyof typeof PlasmicDescendants;
60
60
  type DescendantsType<T extends NodeNameType> = (typeof PlasmicDescendants)[T][number];
61
- type ReservedPropsType = "variants" | "args" | "overrides";
61
+ 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 {
@@ -2,25 +2,25 @@ import { Flex as Flex__, SingleBooleanChoiceArg, SingleChoiceArg, StrictProps }
2
2
  /** @jsxRuntime classic */
3
3
  /** @jsx createPlasmicElementProxy */
4
4
  /** @jsxFrag React.Fragment */
5
- import * as React from "react";
6
- import * as pp from "@plasmicapp/react-web";
5
+ import * as React from 'react';
6
+ import * as pp from '@plasmicapp/react-web';
7
7
  export type PlasmicButtonFromProPro__VariantMembers = {
8
- showStartIcon: "showStartIcon";
9
- showEndIcon: "showEndIcon";
10
- isDisabled: "isDisabled";
11
- shape: "rounded" | "round" | "sharp" | "minimal";
12
- size: "compact" | "minimal" | "unnamedVariant";
13
- color: "blue" | "green" | "yellow" | "red" | "sand" | "white" | "softBlue" | "softGreen" | "softYellow" | "softRed" | "softSand" | "clear" | "link" | "lightBlue" | "darkBlue" | "proRed" | "mapMapGreen";
14
- dropshadow: "noShadow" | "basic";
8
+ showStartIcon: 'showStartIcon';
9
+ showEndIcon: 'showEndIcon';
10
+ isDisabled: 'isDisabled';
11
+ shape: 'rounded' | 'round' | 'sharp' | 'minimal';
12
+ size: 'compact' | 'minimal' | 'unnamedVariant';
13
+ color: 'blue' | 'green' | 'yellow' | 'red' | 'sand' | 'white' | 'softBlue' | 'softGreen' | 'softYellow' | 'softRed' | 'softSand' | 'clear' | 'link' | 'lightBlue' | 'darkBlue' | 'proRed' | 'mapMapGreen';
14
+ dropshadow: 'noShadow' | 'basic';
15
15
  };
16
16
  export type PlasmicButtonFromProPro__VariantsArgs = {
17
- showStartIcon?: SingleBooleanChoiceArg<"showStartIcon">;
18
- showEndIcon?: SingleBooleanChoiceArg<"showEndIcon">;
19
- isDisabled?: SingleBooleanChoiceArg<"isDisabled">;
20
- shape?: SingleChoiceArg<"rounded" | "round" | "sharp" | "minimal">;
21
- 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">;
23
- dropshadow?: SingleChoiceArg<"noShadow" | "basic">;
17
+ showStartIcon?: SingleBooleanChoiceArg<'showStartIcon'>;
18
+ showEndIcon?: SingleBooleanChoiceArg<'showEndIcon'>;
19
+ isDisabled?: SingleBooleanChoiceArg<'isDisabled'>;
20
+ shape?: SingleChoiceArg<'rounded' | 'round' | 'sharp' | 'minimal'>;
21
+ 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'>;
23
+ dropshadow?: SingleChoiceArg<'noShadow' | 'basic'>;
24
24
  };
25
25
  export declare const PlasmicButtonFromProPro__VariantProps: (keyof PlasmicButtonFromProPro__VariantsArgs)[];
26
26
  export type PlasmicButtonFromProPro__ArgsType = {
@@ -33,18 +33,18 @@ export type PlasmicButtonFromProPro__ArgsType = {
33
33
  };
34
34
  export declare const PlasmicButtonFromProPro__ArgProps: (keyof PlasmicButtonFromProPro__ArgsType)[];
35
35
  export type PlasmicButtonFromProPro__OverridesType = {
36
- root?: Flex__<"button">;
37
- startIconContainer?: Flex__<"div">;
38
- contentContainer?: Flex__<"div">;
39
- endIconContainer?: Flex__<"div">;
36
+ root?: Flex__<'button'>;
37
+ startIconContainer?: Flex__<'div'>;
38
+ contentContainer?: Flex__<'div'>;
39
+ endIconContainer?: Flex__<'div'>;
40
40
  };
41
41
  export interface DefaultButtonFromProProProps extends pp.BaseButtonProps {
42
42
  submitsForm?: boolean;
43
43
  target?: boolean;
44
- shape?: SingleChoiceArg<"rounded" | "round" | "sharp" | "minimal">;
45
- 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">;
47
- dropshadow?: SingleChoiceArg<"noShadow" | "basic">;
44
+ shape?: SingleChoiceArg<'rounded' | 'round' | 'sharp' | 'minimal'>;
45
+ 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'>;
47
+ dropshadow?: SingleChoiceArg<'noShadow' | 'basic'>;
48
48
  }
49
49
  declare function useBehavior<P extends pp.PlumeButtonProps>(props: P, ref: pp.ButtonRef): {
50
50
  plasmicProps: {
@@ -61,7 +61,7 @@ declare const PlasmicDescendants: {
61
61
  };
62
62
  type NodeNameType = keyof typeof PlasmicDescendants;
63
63
  type DescendantsType<T extends NodeNameType> = (typeof PlasmicDescendants)[T][number];
64
- type ReservedPropsType = "variants" | "args" | "overrides";
64
+ type ReservedPropsType = 'variants' | 'args' | 'overrides';
65
65
  type NodeOverridesType<T extends NodeNameType> = Pick<PlasmicButtonFromProPro__OverridesType, DescendantsType<T>>;
66
66
  export declare const PlasmicButtonFromProPro: {
67
67
  <T extends {
@@ -2,18 +2,18 @@ import { Flex as Flex__, SingleBooleanChoiceArg, SingleChoiceArg, StrictProps }
2
2
  /** @jsxRuntime classic */
3
3
  /** @jsx createPlasmicElementProxy */
4
4
  /** @jsxFrag React.Fragment */
5
- import * as React from "react";
5
+ import * as React from 'react';
6
6
  export type PlasmicFooterLink__VariantMembers = {
7
- isExternal: "isExternal";
8
- isNew: "isNew";
9
- isDefault: "isDefault";
10
- color: "mapMapGreen";
7
+ isExternal: 'isExternal';
8
+ isNew: 'isNew';
9
+ isDefault: 'isDefault';
10
+ color: 'mapMapGreen';
11
11
  };
12
12
  export type PlasmicFooterLink__VariantsArgs = {
13
- isExternal?: SingleBooleanChoiceArg<"isExternal">;
14
- isNew?: SingleBooleanChoiceArg<"isNew">;
15
- isDefault?: SingleBooleanChoiceArg<"isDefault">;
16
- color?: SingleChoiceArg<"mapMapGreen">;
13
+ isExternal?: SingleBooleanChoiceArg<'isExternal'>;
14
+ isNew?: SingleBooleanChoiceArg<'isNew'>;
15
+ isDefault?: SingleBooleanChoiceArg<'isDefault'>;
16
+ color?: SingleChoiceArg<'mapMapGreen'>;
17
17
  };
18
18
  export declare const PlasmicFooterLink__VariantProps: (keyof PlasmicFooterLink__VariantsArgs)[];
19
19
  export type PlasmicFooterLink__ArgsType = {
@@ -21,19 +21,19 @@ export type PlasmicFooterLink__ArgsType = {
21
21
  };
22
22
  export declare const PlasmicFooterLink__ArgProps: "children"[];
23
23
  export type PlasmicFooterLink__OverridesType = {
24
- root?: Flex__<"div">;
25
- link?: Flex__<"a">;
26
- externalLinkArrowIcon?: Flex__<"div">;
27
- svg?: Flex__<"svg">;
28
- newTag?: Flex__<"div">;
29
- text?: Flex__<"div">;
24
+ root?: Flex__<'div'>;
25
+ link?: Flex__<'a'>;
26
+ externalLinkArrowIcon?: Flex__<'div'>;
27
+ svg?: Flex__<'svg'>;
28
+ newTag?: Flex__<'div'>;
29
+ text?: Flex__<'div'>;
30
30
  };
31
31
  export interface DefaultFooterLinkProps {
32
32
  children?: React.ReactNode;
33
- isExternal?: SingleBooleanChoiceArg<"isExternal">;
34
- isNew?: SingleBooleanChoiceArg<"isNew">;
35
- isDefault?: SingleBooleanChoiceArg<"isDefault">;
36
- color?: SingleChoiceArg<"mapMapGreen">;
33
+ isExternal?: SingleBooleanChoiceArg<'isExternal'>;
34
+ isNew?: SingleBooleanChoiceArg<'isNew'>;
35
+ isDefault?: SingleBooleanChoiceArg<'isDefault'>;
36
+ color?: SingleChoiceArg<'mapMapGreen'>;
37
37
  className?: string;
38
38
  }
39
39
  declare const PlasmicDescendants: {
@@ -46,7 +46,7 @@ declare const PlasmicDescendants: {
46
46
  };
47
47
  type NodeNameType = keyof typeof PlasmicDescendants;
48
48
  type DescendantsType<T extends NodeNameType> = (typeof PlasmicDescendants)[T][number];
49
- type ReservedPropsType = "variants" | "args" | "overrides";
49
+ type ReservedPropsType = 'variants' | 'args' | 'overrides';
50
50
  type NodeOverridesType<T extends NodeNameType> = Pick<PlasmicFooterLink__OverridesType, DescendantsType<T>>;
51
51
  export declare const PlasmicFooterLink: {
52
52
  <T extends {
@@ -6,18 +6,18 @@ import { default as ButtonFromProPro } from '../../ButtonFromProPro';
6
6
  /** @jsxRuntime classic */
7
7
  /** @jsx createPlasmicElementProxy */
8
8
  /** @jsxFrag React.Fragment */
9
- import * as React from "react";
9
+ import * as React from 'react';
10
10
  export type PlasmicSignInSignUpForm__VariantMembers = {
11
- mode: "signIn" | "signUp" | "signUpWithGuestOption" | "magic" | "resetPassword" | "forgotPassword" | "approvalCode" | "shortStopConnected" | "secretKey";
12
- app: "hubHub" | "mapMap" | "mapMapDesktopAltGreen" | "shortStop";
13
- hidingSignupElements: "socialLogins" | "magicLink" | "both";
14
- hideLogo: "hideLogo";
11
+ mode: 'signIn' | 'signUp' | 'signUpWithGuestOption' | 'magic' | 'resetPassword' | 'forgotPassword' | 'approvalCode' | 'shortStopConnected' | 'secretKey';
12
+ app: 'hubHub' | 'mapMap' | 'mapMapDesktopAltGreen' | 'shortStop';
13
+ hidingSignupElements: 'socialLogins' | 'magicLink' | 'both';
14
+ hideLogo: 'hideLogo';
15
15
  };
16
16
  export type PlasmicSignInSignUpForm__VariantsArgs = {
17
- mode?: SingleChoiceArg<"signIn" | "signUp" | "signUpWithGuestOption" | "magic" | "resetPassword" | "forgotPassword" | "approvalCode" | "shortStopConnected" | "secretKey">;
18
- app?: SingleChoiceArg<"hubHub" | "mapMap" | "mapMapDesktopAltGreen" | "shortStop">;
19
- hidingSignupElements?: SingleChoiceArg<"socialLogins" | "magicLink" | "both">;
20
- hideLogo?: SingleBooleanChoiceArg<"hideLogo">;
17
+ mode?: SingleChoiceArg<'signIn' | 'signUp' | 'signUpWithGuestOption' | 'magic' | 'resetPassword' | 'forgotPassword' | 'approvalCode' | 'shortStopConnected' | 'secretKey'>;
18
+ app?: SingleChoiceArg<'hubHub' | 'mapMap' | 'mapMapDesktopAltGreen' | 'shortStop'>;
19
+ hidingSignupElements?: SingleChoiceArg<'socialLogins' | 'magicLink' | 'both'>;
20
+ hideLogo?: SingleBooleanChoiceArg<'hideLogo'>;
21
21
  };
22
22
  export declare const PlasmicSignInSignUpForm__VariantProps: (keyof PlasmicSignInSignUpForm__VariantsArgs)[];
23
23
  export type PlasmicSignInSignUpForm__ArgsType = {
@@ -37,55 +37,55 @@ export type PlasmicSignInSignUpForm__ArgsType = {
37
37
  };
38
38
  export declare const PlasmicSignInSignUpForm__ArgProps: (keyof PlasmicSignInSignUpForm__ArgsType)[];
39
39
  export type PlasmicSignInSignUpForm__OverridesType = {
40
- root?: Flex__<"div">;
41
- container?: Flex__<"div">;
42
- logoAndText?: Flex__<"div">;
40
+ root?: Flex__<'div'>;
41
+ container?: Flex__<'div'>;
42
+ logoAndText?: Flex__<'div'>;
43
43
  logo?: Flex__<typeof Logo>;
44
- browserSignupEncouragement?: Flex__<"div">;
45
- form?: Flex__<"div">;
46
- top?: Flex__<"div">;
44
+ browserSignupEncouragement?: Flex__<'div'>;
45
+ form?: Flex__<'div'>;
46
+ top?: Flex__<'div'>;
47
47
  proProLabel?: Flex__<typeof ProProLabel>;
48
- topContent?: Flex__<"div">;
49
- space?: Flex__<"div">;
50
- loginTable?: Flex__<"form">;
51
- nameField?: Flex__<"div">;
52
- emailField?: Flex__<"div">;
53
- codeField?: Flex__<"div">;
54
- passwordField?: Flex__<"div">;
55
- passwordConfirmField?: Flex__<"div">;
56
- confirmPasswordField?: Flex__<"div">;
48
+ topContent?: Flex__<'div'>;
49
+ space?: Flex__<'div'>;
50
+ loginTable?: Flex__<'form'>;
51
+ nameField?: Flex__<'div'>;
52
+ emailField?: Flex__<'div'>;
53
+ codeField?: Flex__<'div'>;
54
+ passwordField?: Flex__<'div'>;
55
+ passwordConfirmField?: Flex__<'div'>;
56
+ confirmPasswordField?: Flex__<'div'>;
57
57
  confirmPasswordInput?: Flex__<typeof TextInputFromProPro>;
58
58
  backButton?: Flex__<typeof ButtonFromProPro>;
59
59
  resendEmailButton?: Flex__<typeof ButtonFromProPro>;
60
- space2?: Flex__<"div">;
61
- orSignUpSignInWithOneOfTheseSocialNetworks?: Flex__<"div">;
62
- signInPlatformsButtons?: Flex__<"div">;
63
- facebookAuthButton?: Flex__<"button">;
64
- blackButtonFrame?: Flex__<"div">;
65
- iconSourcesFacebook?: Flex__<"div">;
66
- xAuthButton?: Flex__<"button">;
67
- blackButtonFrame2?: Flex__<"div">;
68
- googleAuthButton?: Flex__<"button">;
69
- blackButtonFrame3?: Flex__<"div">;
70
- space3?: Flex__<"div">;
71
- dontLikePasswordsMaybeAPasswordManagerIsWhatYouNeedButYouCanAlso?: Flex__<"div">;
72
- space4?: Flex__<"div">;
60
+ space2?: Flex__<'div'>;
61
+ orSignUpSignInWithOneOfTheseSocialNetworks?: Flex__<'div'>;
62
+ signInPlatformsButtons?: Flex__<'div'>;
63
+ facebookAuthButton?: Flex__<'button'>;
64
+ blackButtonFrame?: Flex__<'div'>;
65
+ iconSourcesFacebook?: Flex__<'div'>;
66
+ xAuthButton?: Flex__<'button'>;
67
+ blackButtonFrame2?: Flex__<'div'>;
68
+ googleAuthButton?: Flex__<'button'>;
69
+ blackButtonFrame3?: Flex__<'div'>;
70
+ space3?: Flex__<'div'>;
71
+ dontLikePasswordsMaybeAPasswordManagerIsWhatYouNeedButYouCanAlso?: Flex__<'div'>;
72
+ space4?: Flex__<'div'>;
73
73
  magicLinkSignInButton?: Flex__<typeof ButtonFromProPro>;
74
- resetPassword?: Flex__<"div">;
75
- andIfYouNeedToYouCan?: Flex__<"div">;
76
- resetPasswordButton?: Flex__<"span">;
77
- secretKeySection?: Flex__<"div">;
78
- secretKeyField?: Flex__<"div">;
74
+ resetPassword?: Flex__<'div'>;
75
+ andIfYouNeedToYouCan?: Flex__<'div'>;
76
+ resetPasswordButton?: Flex__<'span'>;
77
+ secretKeySection?: Flex__<'div'>;
78
+ secretKeyField?: Flex__<'div'>;
79
79
  secretKeyInput?: Flex__<typeof TextInputFromProPro>;
80
- signInContainer?: Flex__<"div">;
81
- andIfYouNeedToYouCan2?: Flex__<"div">;
82
- resetPasswordButton2?: Flex__<"a">;
83
- space6?: Flex__<"div">;
84
- space5?: Flex__<"div">;
85
- bottom?: Flex__<"div">;
86
- orSignUpButtonContainer?: Flex__<"div">;
87
- orSignUpButton?: Flex__<"button">;
88
- buttonDefault?: Flex__<"div">;
80
+ signInContainer?: Flex__<'div'>;
81
+ andIfYouNeedToYouCan2?: Flex__<'div'>;
82
+ resetPasswordButton2?: Flex__<'a'>;
83
+ space6?: Flex__<'div'>;
84
+ space5?: Flex__<'div'>;
85
+ bottom?: Flex__<'div'>;
86
+ orSignUpButtonContainer?: Flex__<'div'>;
87
+ orSignUpButton?: Flex__<'button'>;
88
+ buttonDefault?: Flex__<'div'>;
89
89
  continueWithoutAnAccountButton?: Flex__<typeof ButtonFromProPro>;
90
90
  };
91
91
  export interface DefaultSignInSignUpFormProps {
@@ -102,10 +102,10 @@ export interface DefaultSignInSignUpFormProps {
102
102
  passwordConfirmField2?: React.ReactNode;
103
103
  passwordError?: React.ReactNode;
104
104
  signInButtonSlot?: React.ReactNode;
105
- mode?: SingleChoiceArg<"signIn" | "signUp" | "signUpWithGuestOption" | "magic" | "resetPassword" | "forgotPassword" | "approvalCode" | "shortStopConnected" | "secretKey">;
106
- app?: SingleChoiceArg<"hubHub" | "mapMap" | "mapMapDesktopAltGreen" | "shortStop">;
107
- hidingSignupElements?: SingleChoiceArg<"socialLogins" | "magicLink" | "both">;
108
- hideLogo?: SingleBooleanChoiceArg<"hideLogo">;
105
+ mode?: SingleChoiceArg<'signIn' | 'signUp' | 'signUpWithGuestOption' | 'magic' | 'resetPassword' | 'forgotPassword' | 'approvalCode' | 'shortStopConnected' | 'secretKey'>;
106
+ app?: SingleChoiceArg<'hubHub' | 'mapMap' | 'mapMapDesktopAltGreen' | 'shortStop'>;
107
+ hidingSignupElements?: SingleChoiceArg<'socialLogins' | 'magicLink' | 'both'>;
108
+ hideLogo?: SingleBooleanChoiceArg<'hideLogo'>;
109
109
  className?: string;
110
110
  }
111
111
  declare const PlasmicDescendants: {
@@ -162,7 +162,7 @@ declare const PlasmicDescendants: {
162
162
  };
163
163
  type NodeNameType = keyof typeof PlasmicDescendants;
164
164
  type DescendantsType<T extends NodeNameType> = (typeof PlasmicDescendants)[T][number];
165
- type ReservedPropsType = "variants" | "args" | "overrides";
165
+ type ReservedPropsType = 'variants' | 'args' | 'overrides';
166
166
  type NodeOverridesType<T extends NodeNameType> = Pick<PlasmicSignInSignUpForm__OverridesType, DescendantsType<T>>;
167
167
  export declare const PlasmicSignInSignUpForm: {
168
168
  <T extends {
@@ -2,23 +2,23 @@ import { Flex as Flex__, SingleBooleanChoiceArg, SingleChoiceArg, StrictProps }
2
2
  /** @jsxRuntime classic */
3
3
  /** @jsx createPlasmicElementProxy */
4
4
  /** @jsxFrag React.Fragment */
5
- import * as React from "react";
6
- import * as pp from "@plasmicapp/react-web";
5
+ import * as React from 'react';
6
+ import * as pp from '@plasmicapp/react-web';
7
7
  export type PlasmicTextInputFromProPro__VariantMembers = {
8
- showStartIcon: "showStartIcon";
9
- showEndIcon: "showEndIcon";
10
- isDisabled: "isDisabled";
11
- color2: "dark" | "white";
12
- context: "_default" | "sectionHeader" | "hubSelection" | "hubCreationModal" | "searchBar" | "signInSignUpForm" | "iconSearch";
13
- textAlignment: "left" | "center";
8
+ showStartIcon: 'showStartIcon';
9
+ showEndIcon: 'showEndIcon';
10
+ isDisabled: 'isDisabled';
11
+ color2: 'dark' | 'white';
12
+ context: '_default' | 'sectionHeader' | 'hubSelection' | 'hubCreationModal' | 'searchBar' | 'signInSignUpForm' | 'iconSearch';
13
+ textAlignment: 'left' | 'center';
14
14
  };
15
15
  export type PlasmicTextInputFromProPro__VariantsArgs = {
16
- showStartIcon?: SingleBooleanChoiceArg<"showStartIcon">;
17
- showEndIcon?: SingleBooleanChoiceArg<"showEndIcon">;
18
- isDisabled?: SingleBooleanChoiceArg<"isDisabled">;
19
- color2?: SingleChoiceArg<"dark" | "white">;
20
- context?: SingleChoiceArg<"_default" | "sectionHeader" | "hubSelection" | "hubCreationModal" | "searchBar" | "signInSignUpForm" | "iconSearch">;
21
- textAlignment?: SingleChoiceArg<"left" | "center">;
16
+ showStartIcon?: SingleBooleanChoiceArg<'showStartIcon'>;
17
+ showEndIcon?: SingleBooleanChoiceArg<'showEndIcon'>;
18
+ isDisabled?: SingleBooleanChoiceArg<'isDisabled'>;
19
+ color2?: SingleChoiceArg<'dark' | 'white'>;
20
+ context?: SingleChoiceArg<'_default' | 'sectionHeader' | 'hubSelection' | 'hubCreationModal' | 'searchBar' | 'signInSignUpForm' | 'iconSearch'>;
21
+ textAlignment?: SingleChoiceArg<'left' | 'center'>;
22
22
  };
23
23
  export declare const PlasmicTextInputFromProPro__VariantProps: (keyof PlasmicTextInputFromProPro__VariantsArgs)[];
24
24
  export type PlasmicTextInputFromProPro__ArgsType = {
@@ -28,30 +28,30 @@ export type PlasmicTextInputFromProPro__ArgsType = {
28
28
  value?: string;
29
29
  name?: string;
30
30
  required?: boolean;
31
- "aria-label"?: string;
32
- "aria-labelledby"?: string;
31
+ 'aria-label'?: string;
32
+ 'aria-labelledby'?: string;
33
33
  onChange?: (event: any) => void;
34
- type?: "text" | "password" | "hidden" | "number" | "date" | "datetime-local" | "time" | "email" | "tel";
34
+ type?: 'text' | 'password' | 'hidden' | 'number' | 'date' | 'datetime-local' | 'time' | 'email' | 'tel';
35
35
  };
36
36
  export declare const PlasmicTextInputFromProPro__ArgProps: (keyof PlasmicTextInputFromProPro__ArgsType)[];
37
37
  export type PlasmicTextInputFromProPro__OverridesType = {
38
- root?: Flex__<"div">;
39
- startIconContainer?: Flex__<"button">;
40
- input?: Flex__<"input">;
41
- endIconContainer?: Flex__<"button">;
38
+ root?: Flex__<'div'>;
39
+ startIconContainer?: Flex__<'button'>;
40
+ input?: Flex__<'input'>;
41
+ endIconContainer?: Flex__<'button'>;
42
42
  };
43
43
  export interface DefaultTextInputFromProProProps extends pp.BaseTextInputProps {
44
44
  placeholder?: string;
45
45
  value?: string;
46
46
  name?: string;
47
47
  required?: boolean;
48
- "aria-label"?: string;
49
- "aria-labelledby"?: string;
48
+ 'aria-label'?: string;
49
+ 'aria-labelledby'?: string;
50
50
  onChange?: (event: any) => void;
51
- type?: "text" | "password" | "hidden" | "number" | "date" | "datetime-local" | "time" | "email" | "tel";
52
- color2?: SingleChoiceArg<"dark" | "white">;
53
- context?: SingleChoiceArg<"_default" | "sectionHeader" | "hubSelection" | "hubCreationModal" | "searchBar" | "signInSignUpForm" | "iconSearch">;
54
- textAlignment?: SingleChoiceArg<"left" | "center">;
51
+ type?: 'text' | 'password' | 'hidden' | 'number' | 'date' | 'datetime-local' | 'time' | 'email' | 'tel';
52
+ color2?: SingleChoiceArg<'dark' | 'white'>;
53
+ context?: SingleChoiceArg<'_default' | 'sectionHeader' | 'hubSelection' | 'hubCreationModal' | 'searchBar' | 'signInSignUpForm' | 'iconSearch'>;
54
+ textAlignment?: SingleChoiceArg<'left' | 'center'>;
55
55
  }
56
56
  declare function useBehavior<P extends pp.PlumeTextInputProps>(props: P, ref: pp.TextInputRef): {
57
57
  plasmicProps: {
@@ -68,7 +68,7 @@ declare const PlasmicDescendants: {
68
68
  };
69
69
  type NodeNameType = keyof typeof PlasmicDescendants;
70
70
  type DescendantsType<T extends NodeNameType> = (typeof PlasmicDescendants)[T][number];
71
- type ReservedPropsType = "variants" | "args" | "overrides";
71
+ type ReservedPropsType = 'variants' | 'args' | 'overrides';
72
72
  type NodeOverridesType<T extends NodeNameType> = Pick<PlasmicTextInputFromProPro__OverridesType, DescendantsType<T>>;
73
73
  export declare const PlasmicTextInputFromProPro: {
74
74
  <T extends {