@verifiedinc-public/shared-ui-elements 3.13.0 → 3.15.0
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/components/chart/ReasonCodesChart/index.d.ts +42 -0
- package/dist/components/chart/index.d.ts +1 -0
- package/dist/components/chart/index.mjs +1 -1
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/CredentialsDisplay.d.ts +1 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/CredentialsDisplayContext.d.ts +36 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/CredentialsDisplayItem.d.ts +15 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/CredentialsDisplayItemContext.d.ts +43 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/hooks.d.ts +7 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/types.d.ts +66 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/extractTypesFromSchema.d.ts +12 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/filterRepeatedCredentials.d.ts +7 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/findCorrectSchemaProperty.d.ts +7 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/findCredentialsByType.d.ts +8 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/getCredentialTypeDisplayInfo.d.ts +8 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/getCredentialValues.d.ts +9 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/getParentPath.d.ts +6 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/getReferencedSchemaNames.d.ts +8 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/index.d.ts +14 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/isNewCredentialAgainstInstance.d.ts +9 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/isNewCredentialValues.d.ts +6 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/isRequiredCredentialDisplayInfo.d.ts +4 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/isValidInputCredential.d.ts +10 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/makeCredentialDisplayInfoList.d.ts +15 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/sortCredentialsBySchema.d.ts +2 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/transformToFormObject.d.ts +6 -0
- package/dist/components/form/OneClickForm/components/CredentialsDisplay/utils/transformToFormSchema.d.ts +8 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldAtomic.d.ts +5 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldCheckbox.d.ts +6 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldClearAdornment.d.ts +5 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldComposite.d.ts +11 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldGroup.d.ts +13 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldHeader/HeaderSelect/index.d.ts +1 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldHeader/HeaderSelect/styles.d.ts +2 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldHeader/HeaderSelect/utils.d.ts +2 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldHeader/index.d.ts +11 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldInputModeHeader.d.ts +10 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldLabel.d.ts +19 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldLabelText.d.ts +10 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldLeftSide.d.ts +6 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldLegend.d.ts +14 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldPaper.d.ts +13 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldStack.d.ts +9 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldToggleButton.d.ts +9 -0
- package/dist/components/form/OneClickForm/components/DataField/DataFieldValue.d.ts +13 -0
- package/dist/components/form/OneClickForm/components/DataField/formats/DataFieldImage.d.ts +9 -0
- package/dist/components/form/OneClickForm/components/DataField/formats/DataFieldInputAddress.d.ts +9 -0
- package/dist/components/form/OneClickForm/components/DataField/formats/DataFieldInputSelect.d.ts +9 -0
- package/dist/components/form/OneClickForm/components/DataField/formats/DataFieldInputText.d.ts +9 -0
- package/dist/components/form/OneClickForm/components/DataField/formats/index.d.ts +3 -0
- package/dist/components/form/OneClickForm/components/DataField/index.d.ts +5 -0
- package/dist/components/form/OneClickForm/components/DataField/inputs/DataFieldDateInput.d.ts +5 -0
- package/dist/components/form/OneClickForm/components/DataField/inputs/DataFieldImageInput.d.ts +5 -0
- package/dist/components/form/OneClickForm/components/DataField/inputs/DataFieldPhoneInput.d.ts +1 -0
- package/dist/components/form/OneClickForm/components/DataField/inputs/DataFieldSSNInput.d.ts +5 -0
- package/dist/components/form/OneClickForm/components/DataField/inputs/DataFieldSelectInput.d.ts +5 -0
- package/dist/components/form/OneClickForm/components/DataField/inputs/DataFieldTextInput.d.ts +5 -0
- package/dist/components/form/OneClickForm/components/DataField/inputs/index.d.ts +6 -0
- package/dist/components/form/OneClickForm/components/DataField/types.d.ts +19 -0
- package/dist/components/form/OneClickForm/components/DataField/utils/defaults.d.ts +4 -0
- package/dist/components/form/OneClickForm/components/DataField/utils/getCredentialSeparator.d.ts +1 -0
- package/dist/components/form/OneClickForm/components/DataField/utils/hasSomeRequiredEmptyCredential.d.ts +2 -0
- package/dist/components/form/OneClickForm/components/DataField/utils/index.d.ts +3 -0
- package/dist/components/form/OneClickForm/components/shared/CountrySelector.d.ts +10 -0
- package/dist/components/form/OneClickForm/components/shared/DateInput.d.ts +19 -0
- package/dist/components/form/OneClickForm/components/shared/DefaultInput.d.ts +6 -0
- package/dist/components/form/OneClickForm/components/shared/IMaskInput.d.ts +15 -0
- package/dist/components/form/OneClickForm/components/shared/Image.d.ts +16 -0
- package/dist/components/form/OneClickForm/components/shared/ImageEncoded.d.ts +14 -0
- package/dist/components/form/OneClickForm/components/shared/InputMask.d.ts +26 -0
- package/dist/components/form/OneClickForm/components/shared/PhoneInput.d.ts +22 -0
- package/dist/components/form/OneClickForm/components/shared/TextInput.d.ts +15 -0
- package/dist/components/form/OneClickForm/components/shared/TextMaskCustom.d.ts +15 -0
- package/dist/components/form/OneClickForm/components/shared/Textarea.d.ts +14 -0
- package/dist/components/form/OneClickForm/components/shared/When.d.ts +17 -0
- package/dist/components/form/OneClickForm/components/validations/fragments/birthDate.d.ts +4 -0
- package/dist/components/form/OneClickForm/components/validations/fragments/credentials.d.ts +6 -0
- package/dist/components/form/OneClickForm/components/validations/fragments/email.d.ts +2 -0
- package/dist/components/form/OneClickForm/components/validations/fragments/otp.d.ts +2 -0
- package/dist/components/form/OneClickForm/components/validations/fragments/phone.d.ts +3 -0
- package/dist/components/form/OneClickForm/components/validations/fragments/uuid.d.ts +2 -0
- package/dist/components/form/OneClickForm/components/validations/schemas/date.schema.d.ts +2 -0
- package/dist/components/form/OneClickForm/contexts/one-click-form-options.context.d.ts +27 -0
- package/dist/components/form/OneClickForm/hooks/useDebounce.d.ts +1 -0
- package/dist/components/form/OneClickForm/hooks/useDebounceCallback.d.ts +46 -0
- package/dist/components/form/OneClickForm/hooks/usePrevious.d.ts +5 -0
- package/dist/components/form/OneClickForm/hooks/useZipCodeLookup.d.ts +11 -0
- package/dist/components/form/OneClickForm/index.d.ts +14 -0
- package/dist/components/form/OneClickForm/styles/input.d.ts +6 -0
- package/dist/components/form/OneClickForm/types/display-format.d.ts +12 -0
- package/dist/components/form/OneClickForm/types/input-format.d.ts +9 -0
- package/dist/components/form/OneClickForm/types/request.d.ts +16 -0
- package/dist/components/form/OneClickForm/utils/addressFormatter.d.ts +12 -0
- package/dist/components/form/OneClickForm/utils/calendarDateFormatter.d.ts +6 -0
- package/dist/components/form/OneClickForm/utils/compareCredentialData.d.ts +1 -0
- package/dist/components/form/OneClickForm/utils/currencyRangeFormatter.d.ts +6 -0
- package/dist/components/form/OneClickForm/utils/date.d.ts +32 -0
- package/dist/components/form/OneClickForm/utils/formatCredentialValue.d.ts +8 -0
- package/dist/components/form/OneClickForm/utils/image.d.ts +2 -0
- package/dist/components/form/OneClickForm/utils/isAtomicBySchema.d.ts +1 -0
- package/dist/components/form/OneClickForm/utils/isCompositeBySchema.d.ts +1 -0
- package/dist/components/form/OneClickForm/utils/masks.d.ts +3 -0
- package/dist/components/form/OneClickForm/utils/observers.d.ts +33 -0
- package/dist/components/form/OneClickForm/utils/phone.d.ts +31 -0
- package/dist/components/form/OneClickForm/utils/phoneNumberFormatter.d.ts +7 -0
- package/dist/components/form/OneClickForm/utils/regex.d.ts +1 -0
- package/dist/components/form/OneClickForm/utils/ssnFormatter.d.ts +7 -0
- package/dist/components/form/OneClickForm/utils/string.d.ts +14 -0
- package/dist/components/form/OneClickForm/utils/when.d.ts +10 -0
- package/dist/components/form/index.d.ts +1 -0
- package/dist/components/index.mjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/shared/index-BMcFWkjH.mjs +107 -0
- package/package.json +4 -1
- package/dist/shared/index-DPBjdrwv.mjs +0 -104
@@ -0,0 +1,12 @@
|
|
1
|
+
/**
|
2
|
+
* Parses a country code into a country name.
|
3
|
+
* @param {string} code the country code
|
4
|
+
* @returns {string} the country name. If the country code is not found, the country code is returned.
|
5
|
+
*/
|
6
|
+
export declare const parseCountryCode: (code: string) => string;
|
7
|
+
/**
|
8
|
+
* Formats an address value.
|
9
|
+
* @param {string} rawValue the raw address value in the format street, city, ISO 3166-2code postalcode
|
10
|
+
* @returns {string} the formatted address value in the format street\n city, region, postalcode\n country
|
11
|
+
*/
|
12
|
+
export declare const addressFormatter: (rawValue: string) => string;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const compareCredentialData: (a: any, b: any) => boolean;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/**
|
2
|
+
* Formats a currency range string into a human-readable format.
|
3
|
+
* @param {string} rawValue the raw value from the credential, e.g. "USD min100000_max200000"
|
4
|
+
* @returns {string} the formatted value, e.g. "USD 100,000 - 200,000"
|
5
|
+
*/
|
6
|
+
export declare const currencyRangeFormatter: (rawValue: string) => string;
|
@@ -0,0 +1,32 @@
|
|
1
|
+
/**
|
2
|
+
* Formats a timestamp into a pretty format of DD/MM/YYYY.
|
3
|
+
* @param timestamp
|
4
|
+
* @param separator
|
5
|
+
*/
|
6
|
+
export declare const formatDateDDMMYYYY: (timestamp?: string) => string;
|
7
|
+
/**
|
8
|
+
* Formats a timestamp into a pretty format from MMDDYYY to MM/DD/YYYY.
|
9
|
+
* @param date
|
10
|
+
* @returns
|
11
|
+
*/
|
12
|
+
export declare const formatRawDateMMDDYYYY: (date: string) => string;
|
13
|
+
/**
|
14
|
+
* Formats a timestamp into a pretty format from MMDD to MM/DD/YYYY always enforcing year to be 1970.
|
15
|
+
* @param date
|
16
|
+
* @returns
|
17
|
+
*/
|
18
|
+
export declare const formatDateMMDD: (date: string) => string;
|
19
|
+
export declare const dateUtils: {
|
20
|
+
/**
|
21
|
+
* Convert date from MM-DD-YYYY to YYYY-MM-DD
|
22
|
+
* @param date
|
23
|
+
* @returns
|
24
|
+
*/
|
25
|
+
toYYYYDDMM: (date: string) => string;
|
26
|
+
/**
|
27
|
+
* Formats a timestamp into a pretty format from MMDD to MM/DD/YYYY always enforcing year to be 1970.
|
28
|
+
* @param date
|
29
|
+
* @returns
|
30
|
+
*/
|
31
|
+
formatDateMMDD: (date: string) => string;
|
32
|
+
};
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { DisplayFormatEnum } from '../types/display-format';
|
2
|
+
/**
|
3
|
+
* Formats a credential value based on its type.
|
4
|
+
* @param {string} rawValue the raw value of the credential
|
5
|
+
* @param {DisplayFormatEnum | string} type the type of the credential
|
6
|
+
* @returns {string} the formatted value
|
7
|
+
*/
|
8
|
+
export declare const formatCredentialValue: (rawValue: string, type: DisplayFormatEnum | string | undefined) => string;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const isAtomicBySchema: (schema: any | undefined) => boolean;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const isCompositeBySchema: (schema: any | undefined) => boolean;
|
@@ -0,0 +1,33 @@
|
|
1
|
+
/**
|
2
|
+
* Defines a callback function for observers.
|
3
|
+
* @template T - The type of data the observer callback receives.
|
4
|
+
*/
|
5
|
+
type ObserverCallback<T> = (data: T) => void;
|
6
|
+
/**
|
7
|
+
* Represents an observable object that can be observed by multiple observers.
|
8
|
+
* @template T - The type of data the observable holds.
|
9
|
+
*/
|
10
|
+
interface Observable<T> {
|
11
|
+
/**
|
12
|
+
* Adds an observer to the list of observers.
|
13
|
+
* @param observer - The callback function to be invoked when the observable is updated.
|
14
|
+
*/
|
15
|
+
addObserver(observer: ObserverCallback<T>): void;
|
16
|
+
/**
|
17
|
+
* Removes an observer from the list of observers.
|
18
|
+
* @param observer - The callback function to be removed from the list of observers.
|
19
|
+
*/
|
20
|
+
removeObserver(observer: ObserverCallback<T>): void;
|
21
|
+
/**
|
22
|
+
* Notifies all observers with the provided data.
|
23
|
+
* @param data - The data to be sent to all observers.
|
24
|
+
*/
|
25
|
+
notify(data: T): void;
|
26
|
+
}
|
27
|
+
/**
|
28
|
+
* Creates an observable object.
|
29
|
+
* @template T - The type of data the observable will hold.
|
30
|
+
* @returns An object with methods to manage observers for the created observable.
|
31
|
+
*/
|
32
|
+
export declare function createObservable<T>(): Observable<T>;
|
33
|
+
export {};
|
@@ -0,0 +1,31 @@
|
|
1
|
+
type CountryData = {
|
2
|
+
countryName: string;
|
3
|
+
countryCode: string;
|
4
|
+
emoji: string;
|
5
|
+
mask: string;
|
6
|
+
};
|
7
|
+
export declare const countries: CountryData[];
|
8
|
+
export declare function parseToPhoneNational(internationalPhone: string): string;
|
9
|
+
/**
|
10
|
+
* Get phone data by the international phone string.
|
11
|
+
* @param internationalPhone
|
12
|
+
*/
|
13
|
+
export declare function getPhoneData(internationalPhone: string): CountryData | undefined;
|
14
|
+
/**
|
15
|
+
* Get phone data by property and value match.
|
16
|
+
* @param fieldName
|
17
|
+
* @param value
|
18
|
+
*/
|
19
|
+
export declare function getPhoneDataByFieldName(fieldName: keyof CountryData, value: string): CountryData | undefined;
|
20
|
+
/**
|
21
|
+
* Helper to sort countries by country name.
|
22
|
+
* @param a
|
23
|
+
* @param b
|
24
|
+
*/
|
25
|
+
export declare const sortByCountryName: (a: CountryData, b: CountryData) => number;
|
26
|
+
/**
|
27
|
+
* Validate phone when it is valid and contains a country.
|
28
|
+
* @param internationalPhone
|
29
|
+
*/
|
30
|
+
export declare const validatePhone: (internationalPhone: string) => boolean;
|
31
|
+
export {};
|
@@ -0,0 +1,7 @@
|
|
1
|
+
/**
|
2
|
+
* A helper function to format phone number - currently only works on 10 digit phone numbers
|
3
|
+
* @param phoneNum string representation of a phone number
|
4
|
+
* @returns {string} formatted 10 digit phone number
|
5
|
+
*/
|
6
|
+
declare const phoneNumberFormatter: (phoneNum: string) => string;
|
7
|
+
export default phoneNumberFormatter;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const uuidV4Regex: RegExp;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
/**
|
2
|
+
* Formats a SSN to the following format: •••-••-3333
|
3
|
+
* accepts SSNs with or without dashes (e.g. '111-22-3333' or '11223333')
|
4
|
+
* @param {string} rawValue the raw value of the ssncredential
|
5
|
+
* @returns {string} the formatted value
|
6
|
+
*/
|
7
|
+
export declare const ssnFormatter: (rawValue: string) => string;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
export declare const stringUtils: {
|
2
|
+
/**
|
3
|
+
* Capitalizes the first letter of every word in a string.
|
4
|
+
* Deliminator is space char `' '`.
|
5
|
+
*/
|
6
|
+
capitalizeAll: (str: string) => string;
|
7
|
+
/**
|
8
|
+
* Capitalizes the first letter of a string.
|
9
|
+
*/
|
10
|
+
capitalize: (str: string) => string;
|
11
|
+
camelCase: (str: string) => string;
|
12
|
+
prettifyCamelCase: (field: string) => string;
|
13
|
+
replaceUuidWithPlaceholder(pathname: string, placeholder?: string): string;
|
14
|
+
};
|
@@ -0,0 +1,10 @@
|
|
1
|
+
/**
|
2
|
+
* This TypeScript function, "when," is a versatile utility for conditional branching and value mapping.
|
3
|
+
* It's particularly useful when you want to streamline your code by avoiding complex if-else chains or switch statements.
|
4
|
+
* FYI: languages like Kotlin, Swift contains this powerful conditional statement.
|
5
|
+
* @param value
|
6
|
+
* @param cases
|
7
|
+
*/
|
8
|
+
export declare function when<T extends string | number | symbol, R>(value: T | undefined, cases: Partial<Record<T, () => R>> & {
|
9
|
+
else?: () => R;
|
10
|
+
}): R | undefined;
|
@@ -1 +1 @@
|
|
1
|
-
"use strict";import{A as a,c as s,
|
1
|
+
"use strict";import{A as a,c as s,l as e,B as t,m as r,C as n,D as o,f as i,E as p,j as m,F as c,I as u,b as d,L as l,O as P,h as I,e as g,P as B,Q as S,R as h,S as k,d as f,k as C,T,g as b,a as y,V as A,i as L}from"../shared/index-BMcFWkjH.mjs";import{a as R,b as E,P as N,S as v}from"../shared/PageSectionHeader-DdpDhBZG.mjs";import{C as x,W as D,u as F}from"../shared/index-KVVTzcea.mjs";import{SnackbarProvider as H}from"notistack";export{a as AcceptTermsNotice,s as Alert,e as Backdrop,t as Banner,r as Button,n as CredentialRequestsEditor,x as CustomAlertComponent,o as DateInput,i as DateRangeInput,p as EmailInput,m as ExactBirthdayBanner,c as FullWidthAlert,u as Image,d as LegalLink,l as LinkButton,P as OTPInput,I as OneClickForm,R as PageHeader,E as PageSectionHeader,N as Paragraph,g as PhoneInput,B as PrivacyPolicyNotice,S as QRCodeDisplay,h as ResendPhoneBanner,k as SSNInput,v as SectionHeader,f as SelectInput,H as SnackbarProvider,C as TestPhoneNumbersBanner,T as TextButton,b as TimezoneInput,y as Typography,A as VerifiedImage,L as VerifiedIncLogo,D as When,F as useSnackbar};
|
package/dist/index.mjs
CHANGED
@@ -1 +1 @@
|
|
1
|
-
"use strict";import{A as e,c as t,
|
1
|
+
"use strict";import{A as e,c as t,l as r,B as o,m as n,C as i,D as m,f as u,E as l,j as c,F as d,I as p,b as h,L as S,O as g,h as f,e as k,P,Q as y,R as C,S as D,d as b,k as B,T as I,g as T,a as w,V as N,i as R,n as v,o as Y,q as x,r as A,p as G,s as L,v as M}from"./shared/index-BMcFWkjH.mjs";import{a as O,b as W,P as E,S as F}from"./shared/PageSectionHeader-DdpDhBZG.mjs";import{C as U,W as V,u as j}from"./shared/index-KVVTzcea.mjs";import{b as z,d as Q,a as q,j as H,u as $,e as Z,c as _,f as J,g as K,h as X,i as aa}from"./shared/useIntersectionObserver-CbpWuEs0.mjs";import{u as sa}from"./shared/useCopyToClipboard-BALOSYVW.mjs";import{a as ea,u as ta}from"./shared/useOnClickOutside-P5GTcgh8.mjs";import{u as ra}from"./shared/useCounter-BV32zXDQ.mjs";import{u as oa}from"./shared/usePrevious-DyvR1iCQ.mjs";import{b as na,a as ia,v as ma,e as ua,d as la,p as ca,u as da,h as pa,j as ha,g as Sa,o as ga,s as fa,m as ka,c as Pa,l as ya,n as Ca,q as Da,f as ba,i as Ba,r as Ia,z as Ta,t as wa,x as Na,k as Ra,w as va,y as Ya}from"./shared/shadows-Dhd7FrwF.mjs";import{f as xa,b as Aa,a as Ga,c as La}from"./shared/date-Cq0LS2Mr.mjs";import{masks as Ma}from"./utils/masks/index.mjs";import{M as Oa,S as Wa,U as Ea,d as Fa,e as Ua,f as Va,g as ja,a as za,s as Qa}from"./shared/unix.schema-CMYTtXco.mjs";import{p as qa}from"./shared/phone.schema-XBbyizhq.mjs";import{SnackbarProvider as Ha}from"notistack";async function $a(a){try{return[await a,null]}catch(s){return[null,s]}}const Za=a=>a.replace(/(\d{3})-?(\d{2})-?(\d{4})/,"\u2022\u2022\u2022-\u2022\u2022-$3");export{e as AcceptTermsNotice,t as Alert,r as Backdrop,o as Banner,n as Button,i as CredentialRequestsEditor,U as CustomAlertComponent,m as DateInput,u as DateRangeInput,l as EmailInput,c as ExactBirthdayBanner,d as FullWidthAlert,p as Image,h as LegalLink,S as LinkButton,Oa as MaskedAndUnmaskedSSNSchema,g as OTPInput,f as OneClickForm,O as PageHeader,W as PageSectionHeader,E as Paragraph,k as PhoneInput,P as PrivacyPolicyNotice,y as QRCodeDisplay,C as ResendPhoneBanner,D as SSNInput,Wa as SSNSchema,F as SectionHeader,b as SelectInput,Ha as SnackbarProvider,B as TestPhoneNumbersBanner,I as TextButton,T as TimezoneInput,w as Typography,Ea as USDateSchema,N as VerifiedImage,R as VerifiedIncLogo,V as When,na as black,ia as blue,ma as colors,v as countries,ua as darkBlue,la as darkGreen,ca as darkGrey,da as darkGreyContrast,pa as darkRed,ha as darkYellow,Fa as descriptionSchema,Ua as emailSchema,Va as fieldSchema,xa as formatDateMMDDYYYY,Aa as formatDateMMYY,Ga as formatDateToTimestamp,La as formatExtendedDate,ja as getDateSchemaWithPastValidation,Y as getPhoneData,x as getPhoneDataByFieldName,za as getUnixSchema,Sa as green,ga as grey,fa as greyContrast,ka as infoContrast,Pa as lightBlue,ya as lightGreen,Ca as lightGrey,Da as lightGreyContrast,ba as lightRed,Ba as lightYellow,Ma as masks,A as omitProperties,G as parseToPhoneNational,qa as phoneSchema,Ia as red,Ta as shadows,L as sortByCountryName,Za as ssnFormatter,Qa as stateSchema,wa as textDisabled,Na as theme,z as useCallbackRef,sa as useCopyToClipboard,ra as useCounter,Q as useDebounceValue,q as useDisclosure,H as useIntersectionObserver,$ as useLocalStorage,ea as useOnClickOutside,oa as usePrevious,ta as useQRCode,Z as useScript,_ as useSearchParams,j as useSnackbar,J as useThrottle,K as useToggle,X as useWindowScroll,aa as useWindowSize,M as validatePhone,Ra as warningContrast,va as white,$a as wrapPromise,Ya as yellow};
|