propro-common-components 0.1.247 → 0.1.248

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- import { Flex as Flex__, SingleBooleanChoiceArg, SingleChoiceArg, StrictProps } from '@plasmicapp/react-web';
1
+ import { Flex as Flex__, SingleChoiceArg, StrictProps } from '@plasmicapp/react-web';
2
2
  import { default as ButtonFromProPro } from '../../ButtonFromProPro';
3
3
  import { default as Logo } from '../../Logo';
4
4
  import { default as TextInputFromProPro } from '../../TextInputFromProPro';
@@ -9,15 +9,11 @@ import * as React from "react";
9
9
  export type PlasmicSignInSignUpForm__VariantMembers = {
10
10
  mode: 'signIn' | 'signUp' | 'magic' | 'signUpTemp';
11
11
  app: 'hubHub' | 'mapMapWeb' | 'mapMapDesktopAlt2' | 'mapMapDesktopAlt' | 'mapMapDesktopAlt3';
12
- isHidingMagicLink: 'isHidingMagicLink';
13
- isHidingSocialLogins: 'isHidingSocialLogins';
14
12
  hidingSignupElements: 'socialLogins' | 'magicLink' | 'both';
15
13
  };
16
14
  export type PlasmicSignInSignUpForm__VariantsArgs = {
17
15
  mode?: SingleChoiceArg<'signIn' | 'signUp' | 'magic' | 'signUpTemp'>;
18
16
  app?: SingleChoiceArg<'hubHub' | 'mapMapWeb' | 'mapMapDesktopAlt2' | 'mapMapDesktopAlt' | 'mapMapDesktopAlt3'>;
19
- isHidingMagicLink?: SingleBooleanChoiceArg<'isHidingMagicLink'>;
20
- isHidingSocialLogins?: SingleBooleanChoiceArg<'isHidingSocialLogins'>;
21
17
  hidingSignupElements?: SingleChoiceArg<'socialLogins' | 'magicLink' | 'both'>;
22
18
  };
23
19
  export declare const PlasmicSignInSignUpForm__VariantProps: (keyof PlasmicSignInSignUpForm__VariantsArgs)[];
@@ -86,8 +82,6 @@ export interface DefaultSignInSignUpFormProps {
86
82
  enableMagicLinkAuth?: boolean;
87
83
  mode?: SingleChoiceArg<'signIn' | 'signUp' | 'magic' | 'signUpTemp'>;
88
84
  app?: SingleChoiceArg<'hubHub' | 'mapMapWeb' | 'mapMapDesktopAlt2' | 'mapMapDesktopAlt' | 'mapMapDesktopAlt3'>;
89
- isHidingMagicLink?: SingleBooleanChoiceArg<'isHidingMagicLink'>;
90
- isHidingSocialLogins?: SingleBooleanChoiceArg<'isHidingSocialLogins'>;
91
85
  hidingSignupElements?: SingleChoiceArg<'socialLogins' | 'magicLink' | 'both'>;
92
86
  className?: string;
93
87
  }
@@ -28,10 +28,10 @@ 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 = {
@@ -45,13 +45,13 @@ export interface DefaultTextInputFromProProProps extends pp.BaseTextInputProps {
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: {