@verifiedinc-public/shared-ui-elements 5.23.4 → 5.24.1

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.
@@ -0,0 +1,48 @@
1
+ import { ReactNode } from 'react';
2
+ import { InputProps } from '@mui/material';
3
+ import { TextFieldProps } from '../TextField';
4
+ export interface BasePhoneInputProps {
5
+ label?: ReactNode;
6
+ name?: string;
7
+ helperText?: string;
8
+ initialValue?: string;
9
+ onChange?: (value: string) => void;
10
+ onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
11
+ onValidPhone?: (value: string) => void;
12
+ error?: boolean;
13
+ handleChangeCountry?: (newCountry: string) => void;
14
+ value?: string;
15
+ shouldHaveSelectCountryButton?: boolean;
16
+ shouldHaveClearButton?: boolean;
17
+ variant?: TextFieldProps['variant'];
18
+ size?: TextFieldProps['size'];
19
+ autoFocus?: boolean;
20
+ disabled?: boolean;
21
+ InputProps?: InputProps;
22
+ placeholder?: string;
23
+ lazy?: boolean;
24
+ }
25
+ /**
26
+ * Renders a phone input component with country selector and masking.
27
+ *
28
+ * @param label - The label for the phone input. Defaults to 'Phone'.
29
+ * @param name - The name of the phone input. Defaults to 'phone'.
30
+ * @param helperText - The helper text for the phone input.
31
+ * @param onChange - The callback function to handle the change event of the phone input.
32
+ * @param onBlur - The callback function to handle the blur event of the phone input.
33
+ * @param onValidPhone - The callback function to handle the valid phone event of the phone input.
34
+ * @param initialValue - The initial value for the phone input. Defaults to ''.
35
+ * @param error - Whether the phone input has an error. Defaults to false.
36
+ * @param handleChangeCountry - The callback function to handle the change event of the country selector.
37
+ * @param value - The value of the phone input. If passed, it will be used instead of the value from component state.
38
+ * @param autoFocus - Whether the phone input should be focused on mount. Defaults to false.
39
+ * @param InputProps - Additional props to be passed to the input component.
40
+ * @param shouldHaveSelectCountryButton - Whether to show the country selector button. Defaults to true.
41
+ * @param shouldHaveClearButton - Whether to show the clear button. Defaults to false.
42
+ * @param disabled - Whether the phone input is disabled. Defaults to false.
43
+ * @param size - The size of the phone input. Defaults to 'small'.
44
+ * @param variant - The variant of the phone input. Defaults to 'outlined'.
45
+ * @param placeholder - The placeholder for the phone input.
46
+ * @param lazy - Whether to use lazy loading for the phone input. Defaults to false.
47
+ */
48
+ export declare function BasePhoneInput({ label, name, helperText, onChange, onBlur, onValidPhone, initialValue, error, handleChangeCountry, value: valueProp, autoFocus, InputProps, shouldHaveSelectCountryButton, shouldHaveClearButton, disabled, size, placeholder, lazy, }: Readonly<BasePhoneInputProps>): React.JSX.Element;
@@ -1,48 +1,11 @@
1
- import { ReactNode } from 'react';
2
- import { InputProps } from '@mui/material';
3
- import { TextFieldProps } from '../TextField';
4
- export interface PhoneInputProps {
5
- label?: ReactNode;
6
- name?: string;
7
- helperText?: string;
8
- initialValue?: string;
9
- onChange?: (value: string) => void;
10
- onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
11
- onValidPhone?: (value: string) => void;
12
- error?: boolean;
13
- handleChangeCountry?: (newCountry: string) => void;
14
- value?: string;
15
- shouldHaveSelectCountryButton?: boolean;
16
- shouldHaveClearButton?: boolean;
17
- variant?: TextFieldProps['variant'];
18
- size?: TextFieldProps['size'];
19
- autoFocus?: boolean;
20
- disabled?: boolean;
21
- InputProps?: InputProps;
22
- placeholder?: string;
23
- lazy?: boolean;
24
- }
1
+ import { BasePhoneInputProps } from '.';
25
2
  /**
26
- * Renders a phone input component with country selector and masking.
3
+ * Renders a phone input component.
27
4
  *
28
- * @param label - The label for the phone input. Defaults to 'Phone'.
29
- * @param name - The name of the phone input. Defaults to 'phone'.
30
- * @param helperText - The helper text for the phone input.
31
- * @param onChange - The callback function to handle the change event of the phone input.
32
- * @param onBlur - The callback function to handle the blur event of the phone input.
33
- * @param onValidPhone - The callback function to handle the valid phone event of the phone input.
34
- * @param initialValue - The initial value for the phone input. Defaults to ''.
35
- * @param error - Whether the phone input has an error. Defaults to false.
36
- * @param handleChangeCountry - The callback function to handle the change event of the country selector.
37
- * @param value - The value of the phone input. If passed, it will be used instead of the value from component state.
38
- * @param autoFocus - Whether the phone input should be focused on mount. Defaults to false.
39
- * @param InputProps - Additional props to be passed to the input component.
40
- * @param shouldHaveSelectCountryButton - Whether to show the country selector button. Defaults to true.
41
- * @param shouldHaveClearButton - Whether to show the clear button. Defaults to false.
42
- * @param disabled - Whether the phone input is disabled. Defaults to false.
43
- * @param size - The size of the phone input. Defaults to 'small'.
44
- * @param variant - The variant of the phone input. Defaults to 'outlined'.
45
- * @param placeholder - The placeholder for the phone input.
46
- * @param lazy - Whether to use lazy loading for the phone input. Defaults to false.
5
+ * @param props - The props for the phone input component.
6
+ * @param props.pretty - Whether to render the phone input in a pretty way.
7
+ * @returns The phone input component.
47
8
  */
48
- export declare function PhoneInput({ label, name, helperText, onChange, onBlur, onValidPhone, initialValue, error, handleChangeCountry, value: valueProp, autoFocus, InputProps, shouldHaveSelectCountryButton, shouldHaveClearButton, disabled, size, placeholder, lazy, }: Readonly<PhoneInputProps>): React.JSX.Element;
9
+ export declare function PhoneInput(props: Readonly<BasePhoneInputProps & {
10
+ pretty?: boolean;
11
+ }>): import("react").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { BasePhoneInputProps } from './BasePhoneInput';
2
+ export declare function PrettyPhoneInput(props: Readonly<BasePhoneInputProps>): React.JSX.Element;
@@ -1,7 +1,9 @@
1
+ export * from './BasePhoneInput';
1
2
  export * from './DateInput';
2
3
  export * from './SSNInput';
3
4
  export * from './SelectInput';
4
5
  export * from './PhoneInput';
6
+ export * from './PrettyPhoneInput';
5
7
  export * from './OTPInput';
6
8
  export * from './EmailInput';
7
9
  export * from './DateRangeInput';
@@ -1 +1 @@
1
- "use strict";import{A as a,c as s,N as e,H as t,W as r,U as n,C as i,D as o,f as d,E as m,J as l,F as p,I as c,b as C,L as h,M as u,O as S,h as g,G as y,e as P,P as B,Q as I,R as f,S as T,d as k,K as L,T as O,g as R,a as b,V as F,B as N,y as v,s as D,q as E,l as M,r as x,i as A,o as V,x as w,w as H,n as W,z as j,p as q,j as Q,k as U,m as z,t as G,X as J,u as K,v as Y,Y as X}from"../shared/index-D_sSod3m.mjs";import{a as Z,b as _,P as $,S as aa}from"../shared/PageSectionHeader-DdpDhBZG.mjs";import{B as sa,C as ea,i as ta,E as ra,L as na,j as ia,M as oa,g as da,O as ma,P as la,R as pa,e as ca,d as Ca,S as ha,a as ua,b as Sa,k as ga,c as ya,f as Pa,W as Ba,h as Ia,m as fa,u as Ta}from"../shared/SignupBigNumbers-Esrmm27H.mjs";import{SnackbarProvider as ka}from"notistack";export{a as AcceptTermsNotice,s as Alert,e as Backdrop,t as Banner,sa as BigNumber,r as BrandFilterInput,n as Button,i as CredentialRequestsEditor,ea as CustomAlertComponent,o as DateInput,d as DateRangeInput,m as EmailInput,ta as EmptyChartSection,ra as ErrorCodesChart,l as ExactBirthdayBanner,p as FullWidthAlert,c as Image,C as LegalLink,h as LinkButton,na as LoadingChartSection,u as MandatoryEnum,ia as MetricLastUpdated,oa as MonthlySignupsOverviewTable,S as OTPInput,g as OneClickForm,da as OneClickOverTimeChart,ma as OneClickPercentageChart,y as OneClickPoweredByVerified,Z as PageHeader,_ as PageSectionHeader,$ as Paragraph,P as PhoneInput,la as PieChart,B as PrivacyPolicyNotice,I as QRCodeDisplay,pa as ReasonCodesChart,f as ResendPhoneBanner,ca as RiskScoreBarChart,Ca as RiskScorePieChart,T as SSNInput,aa as SectionHeader,k as SelectInput,ha as SeriesChart,ua as SeriesChartLegend,Sa as SeriesPercentageChart,ga as SignupBigNumbers,ya as SimpleBarChart,Pa as SimpleLegend,ka as SnackbarProvider,L as TestPhoneNumbersBanner,O as TextButton,R as TimezoneInput,b as Typography,F as VerifiedImage,N as VerifiedIncLogo,Ba as When,v as extractChildrenFromCredentialFieldSet,D as extractTypesFromSchema,E as filterRepeatedCredentials,M as findCorrectSchemaProperty,x as findCredentialsByType,A as getCredentialTypeDisplayInfo,V as getCredentialValues,w as getLastPathName,H as getParentPath,W as getReferencedSchemaNames,j as hasMandatoryFieldEmpty,q as isNewCredentialAgainstInstance,Q as isRequiredCredentialDisplayInfo,U as isValidInputCredential,z as makeCredentialDisplayInfoList,Ia as mapMonthlySignupsOverviewTableData,fa as mapTimeSeriesData,G as sortCredentialsBySchema,J as toOption,K as transformToFormObject,Y as transformToFormSchema,X as useBrandFilterInput,Ta as useSnackbar};
1
+ "use strict";import{A as a,c as s,W as e,K as t,B as r,Y as n,X as i,C as o,D as d,g as p,E as m,N as l,F as c,I as C,b as h,L as u,M as S,O as g,i as P,J as y,e as B,f as I,P as f,Q as T,R as k,S as b,d as L,U as O,T as R,h as F,a as N,V as v,H as D,z as E,t as x,r as M,n as A,s as V,j as w,p as H,y as W,x as j,o as q,G as z,q as Q,k as U,l as G,m as J,u as K,Z as X,v as Y,w as _,_ as Z}from"../shared/index-C8M1NaSs.mjs";import{a as $,b as aa,P as sa,S as ea}from"../shared/PageSectionHeader-DdpDhBZG.mjs";import{B as ta,C as ra,i as na,E as ia,L as oa,j as da,M as pa,g as ma,O as la,P as ca,R as Ca,e as ha,d as ua,S as Sa,a as ga,b as Pa,k as ya,c as Ba,f as Ia,W as fa,h as Ta,m as ka,u as ba}from"../shared/SignupBigNumbers-Esrmm27H.mjs";import{SnackbarProvider as La}from"notistack";export{a as AcceptTermsNotice,s as Alert,e as Backdrop,t as Banner,r as BasePhoneInput,ta as BigNumber,n as BrandFilterInput,i as Button,o as CredentialRequestsEditor,ra as CustomAlertComponent,d as DateInput,p as DateRangeInput,m as EmailInput,na as EmptyChartSection,ia as ErrorCodesChart,l as ExactBirthdayBanner,c as FullWidthAlert,C as Image,h as LegalLink,u as LinkButton,oa as LoadingChartSection,S as MandatoryEnum,da as MetricLastUpdated,pa as MonthlySignupsOverviewTable,g as OTPInput,P as OneClickForm,ma as OneClickOverTimeChart,la as OneClickPercentageChart,y as OneClickPoweredByVerified,$ as PageHeader,aa as PageSectionHeader,sa as Paragraph,B as PhoneInput,ca as PieChart,I as PrettyPhoneInput,f as PrivacyPolicyNotice,T as QRCodeDisplay,Ca as ReasonCodesChart,k as ResendPhoneBanner,ha as RiskScoreBarChart,ua as RiskScorePieChart,b as SSNInput,ea as SectionHeader,L as SelectInput,Sa as SeriesChart,ga as SeriesChartLegend,Pa as SeriesPercentageChart,ya as SignupBigNumbers,Ba as SimpleBarChart,Ia as SimpleLegend,La as SnackbarProvider,O as TestPhoneNumbersBanner,R as TextButton,F as TimezoneInput,N as Typography,v as VerifiedImage,D as VerifiedIncLogo,fa as When,E as extractChildrenFromCredentialFieldSet,x as extractTypesFromSchema,M as filterRepeatedCredentials,A as findCorrectSchemaProperty,V as findCredentialsByType,w as getCredentialTypeDisplayInfo,H as getCredentialValues,W as getLastPathName,j as getParentPath,q as getReferencedSchemaNames,z as hasMandatoryFieldEmpty,Q as isNewCredentialAgainstInstance,U as isRequiredCredentialDisplayInfo,G as isValidInputCredential,J as makeCredentialDisplayInfoList,Ta as mapMonthlySignupsOverviewTableData,ka as mapTimeSeriesData,K as sortCredentialsBySchema,X as toOption,Y as transformToFormObject,_ as transformToFormSchema,Z as useBrandFilterInput,ba as useSnackbar};
package/dist/index.mjs CHANGED
@@ -1 +1 @@
1
- "use strict";import{A as a,c as s,N as e,H as r,W as t,U as o,C as i,D as n,f as m,E as l,J as d,F as p,I as c,b as u,L as h,M as C,O as S,h as g,G as f,e as y,P as k,Q as P,R as b,S as B,d as T,K as D,T as I,g as R,a as v,V as w,B as N,y as O,s as F,q as M,l as L,r as x,i as E,o as Y,x as A,w as V,n as z,z as G,p as U,j as W,k as j,m as q,t as H,X as Q,u as K,v as J,Y as Z}from"./shared/index-D_sSod3m.mjs";import{a as X,b as $,P as _,S as aa}from"./shared/PageSectionHeader-DdpDhBZG.mjs";import{B as sa,C as ea,i as ra,E as ta,L as oa,j as ia,M as na,g as ma,O as la,P as da,R as pa,e as ca,d as ua,S as ha,a as Ca,b as Sa,k as ga,c as fa,f as ya,W as ka,h as Pa,m as ba,u as Ba}from"./shared/SignupBigNumbers-Esrmm27H.mjs";import{b as Ta,k as Da,a as Ia,i as Ra,u as va,j as wa,d as Na,c as Oa,e as Fa,f as Ma,g as La,h as xa}from"./shared/useDebounceCallback-HZNAtMNH.mjs";import{u as Ea,a as Ya}from"./shared/usePrevious-DG_IMu2h.mjs";import{a as Aa,b as Va,u as za}from"./shared/useOnClickOutside-DgJxDzLx.mjs";import{u as Ga}from"./shared/useCounter-BV32zXDQ.mjs";import{u as Ua}from"./shared/useResizeObserver-D434c1uN.mjs";import{b as Wa,a as ja,x as qa,m as Ha,e as Qa,d as Ka,q as Ja,v as Za,h as Xa,j as $a,g as _a,p as as,u as ss,n as es,c as rs,l as ts,o as os,s as is,f as ns,i as ms,r as ls,A as ds,t as ps,z as cs,k as us,w as hs,y as Cs}from"./shared/shadows-DlwsIS8Q.mjs";import{wrapPromise as Ss}from"./utils/wrapPromise/index.mjs";import{f as gs,b as fs,a as ys,c as ks,u as Ps}from"./shared/uuidColor-LRbEKYAZ.mjs";import{c as bs,g as Bs,a as Ts,p as Ds,s as Is,v as Rs}from"./shared/phone-eqP--V9t.mjs";import{masks as vs}from"./utils/masks/index.mjs";import{o as ws}from"./shared/omitProperty-DZYdN2vK.mjs";import{s as Ns}from"./shared/ssn-CTUJ2_Vl.mjs";import{toCapitalize as Os,toSentenceCase as Fs}from"./utils/string/index.mjs";import{k as Ms}from"./shared/formatKebabToPretty-Du43TgPC.mjs";import{contrastColor as Ls,darken as xs,lighten as Es}from"./utils/color/index.mjs";import{U as Ys,d as As,e as Vs,f as zs,g as Gs,a as Us,s as Ws}from"./shared/unix.schema-CM7mF14M.mjs";import{M as js,S as qs,p as Hs}from"./shared/ssn.schema-CX80CpX4.mjs";import{SnackbarProvider as Qs}from"notistack";export{a as AcceptTermsNotice,s as Alert,e as Backdrop,r as Banner,sa as BigNumber,t as BrandFilterInput,o as Button,i as CredentialRequestsEditor,ea as CustomAlertComponent,n as DateInput,m as DateRangeInput,l as EmailInput,ra as EmptyChartSection,ta as ErrorCodesChart,d as ExactBirthdayBanner,p as FullWidthAlert,c as Image,u as LegalLink,h as LinkButton,oa as LoadingChartSection,C as MandatoryEnum,js as MaskedAndUnmaskedSSNSchema,ia as MetricLastUpdated,na as MonthlySignupsOverviewTable,S as OTPInput,g as OneClickForm,ma as OneClickOverTimeChart,la as OneClickPercentageChart,f as OneClickPoweredByVerified,X as PageHeader,$ as PageSectionHeader,_ as Paragraph,y as PhoneInput,da as PieChart,k as PrivacyPolicyNotice,P as QRCodeDisplay,pa as ReasonCodesChart,b as ResendPhoneBanner,ca as RiskScoreBarChart,ua as RiskScorePieChart,B as SSNInput,qs as SSNSchema,aa as SectionHeader,T as SelectInput,ha as SeriesChart,Ca as SeriesChartLegend,Sa as SeriesPercentageChart,ga as SignupBigNumbers,fa as SimpleBarChart,ya as SimpleLegend,Qs as SnackbarProvider,D as TestPhoneNumbersBanner,I as TextButton,R as TimezoneInput,v as Typography,Ys as USDateSchema,w as VerifiedImage,N as VerifiedIncLogo,ka as When,Wa as black,ja as blue,qa as colors,Ls as contrastColor,bs as countries,Ha as dangerContrast,Qa as darkBlue,Ka as darkGreen,Ja as darkGrey,Za as darkGreyContrast,Xa as darkRed,$a as darkYellow,xs as darken,As as descriptionSchema,Vs as emailSchema,O as extractChildrenFromCredentialFieldSet,F as extractTypesFromSchema,zs as fieldSchema,M as filterRepeatedCredentials,L as findCorrectSchemaProperty,x as findCredentialsByType,gs as formatDateMMDDYYYY,fs as formatDateMMYY,ys as formatDateToTimestamp,ks as formatExtendedDate,E as getCredentialTypeDisplayInfo,Y as getCredentialValues,Gs as getDateSchemaWithPastValidation,A as getLastPathName,V as getParentPath,Bs as getPhoneData,Ts as getPhoneDataByFieldName,z as getReferencedSchemaNames,Us as getUnixSchema,_a as green,as as grey,ss as greyContrast,G as hasMandatoryFieldEmpty,es as infoContrast,U as isNewCredentialAgainstInstance,W as isRequiredCredentialDisplayInfo,j as isValidInputCredential,Ms as kebabCaseToPretty,rs as lightBlue,ts as lightGreen,os as lightGrey,is as lightGreyContrast,ns as lightRed,ms as lightYellow,Es as lighten,q as makeCredentialDisplayInfoList,Pa as mapMonthlySignupsOverviewTableData,ba as mapTimeSeriesData,vs as masks,ws as omitProperties,Ds as parseToPhoneNational,Hs as phoneSchema,ls as red,ds as shadows,Is as sortByCountryName,H as sortCredentialsBySchema,Ns as ssnFormatter,Ws as stateSchema,ps as textDisabled,cs as theme,Os as toCapitalize,Q as toOption,Fs as toSentenceCase,K as transformToFormObject,J as transformToFormSchema,Z as useBrandFilterInput,Ta as useCallbackRef,Ea as useCopyToClipboard,Ga as useCounter,Da as useDebounceCallback,Aa as useDebounceValue,Ia as useDisclosure,Ra as useIntersectionObserver,va as useLocalStorage,wa as useNavigatorOnline,Va as useOnClickOutside,Ya as usePrevious,za as useQRCode,Ua as useResizeObserver,Na as useScript,Oa as useSearchParams,Ba as useSnackbar,Fa as useThrottle,Ma as useToggle,La as useWindowScroll,xa as useWindowSize,Ps as uuidToHashedColor,Rs as validatePhone,us as warningContrast,hs as white,Ss as wrapPromise,Cs as yellow};
1
+ "use strict";import{A as a,c as s,W as e,K as t,B as r,Y as o,X as i,C as n,D as m,g as l,E as d,N as p,F as u,I as c,b as h,L as C,M as g,O as S,i as f,J as y,e as P,f as k,P as b,Q as B,R as T,S as D,d as I,U as R,T as v,h as w,a as O,V as N,H as F,z as L,t as M,r as x,n as E,s as Y,j as A,p as V,y as z,x as G,o as W,G as j,q as H,k as U,l as q,m as Q,u as J,Z as K,v as X,w as Z,_ as $}from"./shared/index-C8M1NaSs.mjs";import{a as _,b as aa,P as sa,S as ea}from"./shared/PageSectionHeader-DdpDhBZG.mjs";import{B as ta,C as ra,i as oa,E as ia,L as na,j as ma,M as la,g as da,O as pa,P as ua,R as ca,e as ha,d as Ca,S as ga,a as Sa,b as fa,k as ya,c as Pa,f as ka,W as ba,h as Ba,m as Ta,u as Da}from"./shared/SignupBigNumbers-Esrmm27H.mjs";import{b as Ia,k as Ra,a as va,i as wa,u as Oa,j as Na,d as Fa,c as La,e as Ma,f as xa,g as Ea,h as Ya}from"./shared/useDebounceCallback-HZNAtMNH.mjs";import{u as Aa,a as Va}from"./shared/usePrevious-DG_IMu2h.mjs";import{a as za,b as Ga,u as Wa}from"./shared/useOnClickOutside-DgJxDzLx.mjs";import{u as ja}from"./shared/useCounter-BV32zXDQ.mjs";import{u as Ha}from"./shared/useResizeObserver-D434c1uN.mjs";import{b as Ua,a as qa,x as Qa,m as Ja,e as Ka,d as Xa,q as Za,v as $a,h as _a,j as as,g as ss,p as es,u as ts,n as rs,c as os,l as is,o as ns,s as ms,f as ls,i as ds,r as ps,A as us,t as cs,z as hs,k as Cs,w as gs,y as Ss}from"./shared/shadows-DlwsIS8Q.mjs";import{wrapPromise as fs}from"./utils/wrapPromise/index.mjs";import{f as ys,b as Ps,a as ks,c as bs,u as Bs}from"./shared/uuidColor-LRbEKYAZ.mjs";import{c as Ts,g as Ds,a as Is,p as Rs,s as vs,v as ws}from"./shared/phone-eqP--V9t.mjs";import{masks as Os}from"./utils/masks/index.mjs";import{o as Ns}from"./shared/omitProperty-DZYdN2vK.mjs";import{s as Fs}from"./shared/ssn-CTUJ2_Vl.mjs";import{toCapitalize as Ls,toSentenceCase as Ms}from"./utils/string/index.mjs";import{k as xs}from"./shared/formatKebabToPretty-Du43TgPC.mjs";import{alpha as Es,contrastColor as Ys,darken as As,lighten as Vs}from"./utils/color/index.mjs";import{U as zs,d as Gs,e as Ws,f as js,g as Hs,a as Us,s as qs}from"./shared/unix.schema-CM7mF14M.mjs";import{M as Qs,S as Js,p as Ks}from"./shared/ssn.schema-CX80CpX4.mjs";import{SnackbarProvider as Xs}from"notistack";export{a as AcceptTermsNotice,s as Alert,e as Backdrop,t as Banner,r as BasePhoneInput,ta as BigNumber,o as BrandFilterInput,i as Button,n as CredentialRequestsEditor,ra as CustomAlertComponent,m as DateInput,l as DateRangeInput,d as EmailInput,oa as EmptyChartSection,ia as ErrorCodesChart,p as ExactBirthdayBanner,u as FullWidthAlert,c as Image,h as LegalLink,C as LinkButton,na as LoadingChartSection,g as MandatoryEnum,Qs as MaskedAndUnmaskedSSNSchema,ma as MetricLastUpdated,la as MonthlySignupsOverviewTable,S as OTPInput,f as OneClickForm,da as OneClickOverTimeChart,pa as OneClickPercentageChart,y as OneClickPoweredByVerified,_ as PageHeader,aa as PageSectionHeader,sa as Paragraph,P as PhoneInput,ua as PieChart,k as PrettyPhoneInput,b as PrivacyPolicyNotice,B as QRCodeDisplay,ca as ReasonCodesChart,T as ResendPhoneBanner,ha as RiskScoreBarChart,Ca as RiskScorePieChart,D as SSNInput,Js as SSNSchema,ea as SectionHeader,I as SelectInput,ga as SeriesChart,Sa as SeriesChartLegend,fa as SeriesPercentageChart,ya as SignupBigNumbers,Pa as SimpleBarChart,ka as SimpleLegend,Xs as SnackbarProvider,R as TestPhoneNumbersBanner,v as TextButton,w as TimezoneInput,O as Typography,zs as USDateSchema,N as VerifiedImage,F as VerifiedIncLogo,ba as When,Es as alpha,Ua as black,qa as blue,Qa as colors,Ys as contrastColor,Ts as countries,Ja as dangerContrast,Ka as darkBlue,Xa as darkGreen,Za as darkGrey,$a as darkGreyContrast,_a as darkRed,as as darkYellow,As as darken,Gs as descriptionSchema,Ws as emailSchema,L as extractChildrenFromCredentialFieldSet,M as extractTypesFromSchema,js as fieldSchema,x as filterRepeatedCredentials,E as findCorrectSchemaProperty,Y as findCredentialsByType,ys as formatDateMMDDYYYY,Ps as formatDateMMYY,ks as formatDateToTimestamp,bs as formatExtendedDate,A as getCredentialTypeDisplayInfo,V as getCredentialValues,Hs as getDateSchemaWithPastValidation,z as getLastPathName,G as getParentPath,Ds as getPhoneData,Is as getPhoneDataByFieldName,W as getReferencedSchemaNames,Us as getUnixSchema,ss as green,es as grey,ts as greyContrast,j as hasMandatoryFieldEmpty,rs as infoContrast,H as isNewCredentialAgainstInstance,U as isRequiredCredentialDisplayInfo,q as isValidInputCredential,xs as kebabCaseToPretty,os as lightBlue,is as lightGreen,ns as lightGrey,ms as lightGreyContrast,ls as lightRed,ds as lightYellow,Vs as lighten,Q as makeCredentialDisplayInfoList,Ba as mapMonthlySignupsOverviewTableData,Ta as mapTimeSeriesData,Os as masks,Ns as omitProperties,Rs as parseToPhoneNational,Ks as phoneSchema,ps as red,us as shadows,vs as sortByCountryName,J as sortCredentialsBySchema,Fs as ssnFormatter,qs as stateSchema,cs as textDisabled,hs as theme,Ls as toCapitalize,K as toOption,Ms as toSentenceCase,X as transformToFormObject,Z as transformToFormSchema,$ as useBrandFilterInput,Ia as useCallbackRef,Aa as useCopyToClipboard,ja as useCounter,Ra as useDebounceCallback,za as useDebounceValue,va as useDisclosure,wa as useIntersectionObserver,Oa as useLocalStorage,Na as useNavigatorOnline,Ga as useOnClickOutside,Va as usePrevious,Wa as useQRCode,Ha as useResizeObserver,Fa as useScript,La as useSearchParams,Da as useSnackbar,Ma as useThrottle,xa as useToggle,Ea as useWindowScroll,Ya as useWindowSize,Bs as uuidToHashedColor,ws as validatePhone,Cs as warningContrast,gs as white,fs as wrapPromise,Ss as yellow};