{ "version": 3, "sources": ["src/app/shared/directives/datum/datum-either.directive.ts", "src/app/shared/directives/datum/failure.directive.ts", "src/app/shared/directives/datum/datum.directive.ts", "src/app/shared/directives/datum/initial.directive.ts", "src/app/shared/directives/datum/pending.directive.ts", "src/app/shared/directives/datum/success.directive.ts", "src/app/shared/directives/datum/datum.module.ts", "src/app/shared/modules/stripe/stripe-factory.ts", "src/app/shared/modules/stripe/stripe-definitions/index.ts", "src/app/shared/modules/stripe/stripe-elements/stripe-elements.directive.ts", "src/app/shared/modules/stripe/stripe-element.ts", "src/app/shared/modules/stripe/stripe-control/stripe-control.directive.ts", "src/app/shared/modules/stripe/stripe-material/stripe-material.directive.ts", "src/app/shared/modules/stripe/stripe-card/stripe-card.component.ts", "src/app/shared/modules/stripe/stripe.module.ts"], "sourcesContent": ["import {\n Directive,\n EmbeddedViewRef,\n Input,\n TemplateRef,\n ViewContainerRef,\n} from \"@angular/core\";\nimport { getEq as getEqEither, isLeft } from \"fp-ts/es6/Either\";\nimport { Eq } from \"fp-ts/es6/Eq\";\nimport { fold, fromNullable } from \"fp-ts/es6/Option\";\nimport { pipe } from \"fp-ts/es6/pipeable\";\nimport { DatumEither, initial } from \"@nll/datum/DatumEither\";\nimport {\n getEq,\n isInitial,\n isPending,\n isRefresh,\n isReplete,\n} from \"@nll/datum/Datum\";\n\ninterface DatumEitherCaseView {\n viewContainerRef: ViewContainerRef;\n templateRef: TemplateRef;\n}\n\nconst objEq: Eq = {\n equals: (a, b) => a === b,\n};\nconst datumEitherEq = getEq(getEqEither(objEq, objEq));\nconst isNil = (t: T | undefined | null): boolean =>\n t === null || t === undefined;\n\n@Directive({\n selector: \"[useDatumEither]\",\n})\nexport class DatumEitherDirective {\n private datum: DatumEither = initial;\n\n initialCases: DatumEitherCaseView[] = [];\n pendingCases: DatumEitherCaseView[] = [];\n failureCases: DatumEitherCaseView[] = [];\n successCases: DatumEitherCaseView[] = [];\n\n mountedCases: DatumEitherCaseView[] = [];\n\n @Input()\n set useDatumEither(datum: DatumEither | undefined | null) {\n if (isNil(datum)) {\n // Many common pipes will return null in awkward situations, cast to initial in those cases\n datum = initial;\n }\n\n // If new and old ADT are different, unmount previous viewRefs\n if (!datumEitherEq.equals(datum, this.datum)) {\n this.mountedCases.forEach(this.removeCaseView);\n }\n\n if (isInitial(datum)) {\n this.initialCases.forEach(this.ensureCaseView);\n this.mountedCases = this.initialCases;\n }\n\n if (isPending(datum)) {\n this.pendingCases.forEach(this.ensureCaseView);\n this.mountedCases = this.pendingCases;\n }\n\n if (isRefresh(datum)) {\n if (isLeft(datum.value)) {\n const context = {\n $implicit: datum.value.left,\n refreshing: true,\n };\n this.failureCases.forEach((cv) => this.ensureCaseView(cv, context));\n this.mountedCases = this.failureCases;\n } else {\n const context = {\n $implicit: datum.value.right,\n refreshing: true,\n };\n this.successCases.forEach((cv) => this.ensureCaseView(cv, context));\n this.mountedCases = this.successCases;\n }\n }\n\n if (isReplete(datum)) {\n if (isLeft(datum.value)) {\n const context = {\n $implicit: datum.value.left,\n refreshing: false,\n };\n this.failureCases.forEach((cv) => this.ensureCaseView(cv, context));\n this.mountedCases = this.failureCases;\n } else {\n const context = {\n $implicit: datum.value.right,\n refreshing: false,\n };\n this.successCases.forEach((cv) => this.ensureCaseView(cv, context));\n this.mountedCases = this.successCases;\n }\n }\n\n this.datum = datum;\n }\n\n registerInitial = (\n viewContainerRef: ViewContainerRef,\n templateRef: TemplateRef\n ) => this.initialCases.push({ viewContainerRef, templateRef });\n registerPending = (\n viewContainerRef: ViewContainerRef,\n templateRef: TemplateRef\n ) => this.pendingCases.push({ viewContainerRef, templateRef });\n registerFailure = (\n viewContainerRef: ViewContainerRef,\n templateRef: TemplateRef\n ) => this.failureCases.push({ viewContainerRef, templateRef });\n registerSuccess = (\n viewContainerRef: ViewContainerRef,\n templateRef: TemplateRef\n ) => this.successCases.push({ viewContainerRef, templateRef });\n\n ensureCaseView = (caseView: DatumEitherCaseView, context?: any) => {\n pipe(\n fromNullable(>caseView.viewContainerRef.get(0)),\n fold(\n () => this.createCaseView(caseView, context),\n (vr) => this.updateViewRef(vr, context)\n )\n );\n };\n\n createCaseView = (caseView: DatumEitherCaseView, context?: any) => {\n caseView.viewContainerRef.createEmbeddedView(caseView.templateRef, context);\n };\n\n removeCaseView = (caseView: DatumEitherCaseView) =>\n caseView.viewContainerRef.clear();\n\n updateViewRef = (viewRef: EmbeddedViewRef, context?: any) => {\n if (context) {\n Object.keys(context).forEach((key) => {\n viewRef.context[key] = context[key];\n });\n viewRef.detectChanges();\n }\n };\n}\n", "import {\n Directive,\n Host,\n Optional,\n TemplateRef,\n ViewContainerRef,\n} from \"@angular/core\";\n\nimport { DatumEitherDirective } from \"./datum-either.directive\";\n\n@Directive({\n selector: \"[onFailure]\",\n})\nexport class FailureDirective {\n constructor(\n readonly viewContainer: ViewContainerRef,\n readonly templateRef: TemplateRef,\n @Optional() @Host() readonly datumEitherDirective: DatumEitherDirective\n ) {\n if (!!datumEitherDirective) {\n datumEitherDirective.registerFailure(viewContainer, templateRef);\n } else {\n console.warn(\n \"FailureDirective instantiated without parent DatumEitherDirective\"\n );\n }\n }\n}\n", "import {\n Directive,\n EmbeddedViewRef,\n Input,\n TemplateRef,\n ViewContainerRef,\n} from \"@angular/core\";\nimport { Eq } from \"fp-ts/es6/Eq\";\nimport { fold, fromNullable } from \"fp-ts/es6/Option\";\nimport { pipe } from \"fp-ts/es6/pipeable\";\nimport {\n getEq,\n Datum,\n initial,\n isInitial,\n isPending,\n isRefresh,\n isReplete,\n} from \"@nll/datum/Datum\";\n\ninterface DatumCaseView {\n viewContainerRef: ViewContainerRef;\n templateRef: TemplateRef;\n}\n\nconst objEq: Eq = {\n equals: (a, b) => a === b,\n};\nconst datumEq = getEq(objEq);\nconst isNil = (t: T | undefined | null): boolean =>\n t === null || t === undefined;\n\n@Directive({\n selector: \"[useDatum]\",\n})\nexport class DatumDirective {\n private datum: Datum = initial;\n\n initialCases: DatumCaseView[] = [];\n pendingCases: DatumCaseView[] = [];\n refreshCases: DatumCaseView[] = [];\n repleteCases: DatumCaseView[] = [];\n\n mountedCases: DatumCaseView[] = [];\n\n @Input()\n set useDatum(datum: Datum | undefined | null) {\n if (isNil(datum)) {\n // Many common pipes will return null in awkward situations, cast to initial in those cases\n datum = initial;\n }\n\n // If new and old ADT are different, unmount previous viewRefs\n if (!datumEq.equals(datum, this.datum)) {\n this.mountedCases.forEach(this.removeCaseView);\n }\n\n if (isInitial(datum)) {\n this.initialCases.forEach(this.ensureCaseView);\n this.mountedCases = this.initialCases;\n }\n\n if (isPending(datum)) {\n this.pendingCases.forEach(this.ensureCaseView);\n this.mountedCases = this.pendingCases;\n }\n\n if (isRefresh(datum)) {\n const context = {\n $implicit: datum.value,\n refreshing: true,\n };\n this.refreshCases.forEach((cv) => this.ensureCaseView(cv, context));\n this.mountedCases = this.refreshCases;\n }\n\n if (isReplete(datum)) {\n const context = {\n $implicit: datum.value,\n refreshing: false,\n };\n this.repleteCases.forEach((cv) => this.ensureCaseView(cv, context));\n this.mountedCases = this.repleteCases;\n }\n\n this.datum = datum;\n }\n\n registerInitial = (\n viewContainerRef: ViewContainerRef,\n templateRef: TemplateRef\n ) => this.initialCases.push({ viewContainerRef, templateRef });\n registerPending = (\n viewContainerRef: ViewContainerRef,\n templateRef: TemplateRef\n ) => this.pendingCases.push({ viewContainerRef, templateRef });\n registerRefresh = (\n viewContainerRef: ViewContainerRef,\n templateRef: TemplateRef\n ) => this.refreshCases.push({ viewContainerRef, templateRef });\n registerReplete = (\n viewContainerRef: ViewContainerRef,\n templateRef: TemplateRef\n ) => this.repleteCases.push({ viewContainerRef, templateRef });\n\n ensureCaseView = (caseView: DatumCaseView, context?: any) => {\n pipe(\n fromNullable(>caseView.viewContainerRef.get(0)),\n fold(\n () => this.createCaseView(caseView, context),\n (vr) => this.updateViewRef(vr, context)\n )\n );\n };\n\n createCaseView = (caseView: DatumCaseView, context?: any) => {\n caseView.viewContainerRef.createEmbeddedView(caseView.templateRef, context);\n };\n\n removeCaseView = (caseView: DatumCaseView) =>\n caseView.viewContainerRef.clear();\n\n updateViewRef = (viewRef: EmbeddedViewRef, context?: any) => {\n if (context) {\n Object.keys(context).forEach((key) => {\n viewRef.context[key] = context[key];\n });\n viewRef.detectChanges();\n }\n };\n}\n", "import {\n Directive,\n Host,\n Optional,\n TemplateRef,\n ViewContainerRef,\n} from \"@angular/core\";\n\nimport { DatumEitherDirective } from \"./datum-either.directive\";\nimport { DatumDirective } from \"./datum.directive\";\n\n@Directive({\n selector: \"[onInitial]\",\n})\nexport class InitialDirective {\n constructor(\n readonly viewContainer: ViewContainerRef,\n readonly templateRef: TemplateRef,\n @Optional() @Host() readonly datumEitherDirective: DatumEitherDirective,\n @Optional() @Host() readonly datumDirective: DatumDirective\n ) {\n if (!!datumEitherDirective) {\n datumEitherDirective.registerInitial(viewContainer, templateRef);\n } else if (!!datumDirective) {\n datumDirective.registerInitial(viewContainer, templateRef);\n } else {\n console.warn(\n \"InitialDirective instantiated without parent DatumDirective or DatumEitherDirective\"\n );\n }\n }\n}\n", "import {\n Directive,\n Host,\n Optional,\n TemplateRef,\n ViewContainerRef,\n} from \"@angular/core\";\n\nimport { DatumEitherDirective } from \"./datum-either.directive\";\nimport { DatumDirective } from \"./datum.directive\";\n\n@Directive({\n selector: \"[onPending]\",\n})\nexport class PendingDirective {\n constructor(\n readonly viewContainer: ViewContainerRef,\n readonly templateRef: TemplateRef,\n @Optional() @Host() readonly datumEitherDirective: DatumEitherDirective,\n @Optional() @Host() readonly datumDirective: DatumDirective\n ) {\n if (!!datumEitherDirective) {\n datumEitherDirective.registerPending(viewContainer, templateRef);\n } else if (!!datumDirective) {\n datumDirective.registerPending(viewContainer, templateRef);\n } else {\n console.warn(\n \"PendingDirective instantiated without parent DatumDirective or DatumEitherDirective\"\n );\n }\n }\n}\n", "import {\n Directive,\n Host,\n Optional,\n TemplateRef,\n ViewContainerRef,\n} from \"@angular/core\";\n\nimport { DatumEitherDirective } from \"./datum-either.directive\";\n\n@Directive({\n selector: \"[onSuccess]\",\n})\nexport class SuccessDirective {\n constructor(\n readonly viewContainer: ViewContainerRef,\n readonly templateRef: TemplateRef,\n @Optional() @Host() readonly datumEitherDirective: DatumEitherDirective\n ) {\n if (!!datumEitherDirective) {\n datumEitherDirective.registerSuccess(viewContainer, templateRef);\n } else {\n console.warn(\n \"SuccessDirective instantiated without parent DatumEitherDirective\"\n );\n }\n }\n}\n", "import { NgModule } from \"@angular/core\";\n\nimport { DatumEitherDirective } from \"./datum-either.directive\";\nimport { DatumDirective } from \"./datum.directive\";\nimport { FailureDirective } from \"./failure.directive\";\nimport { InitialDirective } from \"./initial.directive\";\nimport { PendingDirective } from \"./pending.directive\";\nimport { RefreshDirective } from \"./refresh.directive\";\nimport { RepleteDirective } from \"./replete.directive\";\nimport { SuccessDirective } from \"./success.directive\";\n\nconst DIRECTIVES = [\n DatumDirective,\n DatumEitherDirective,\n InitialDirective,\n PendingDirective,\n RefreshDirective,\n RepleteDirective,\n FailureDirective,\n SuccessDirective,\n];\n\n@NgModule({\n declarations: DIRECTIVES,\n imports: [],\n exports: DIRECTIVES,\n})\nexport class DatumModule {}\n", "import { InjectionToken } from \"@angular/core\";\nimport {\n ElementsOptions,\n ElementType,\n ElementOptions,\n} from \"./stripe-definitions/element\";\nimport { StripeJS, Stripe, StripeOptions } from \"./stripe-definitions\";\n\nexport interface StripeConfig {\n publicKey: string;\n options?: StripeOptions;\n elementsOptions?: ElementsOptions;\n elementOptions?: ElementOptions;\n}\n\nexport const StripeConfigToken = new InjectionToken(\n \"StripeConfig\"\n);\n\n/** Retrives the global StripeJS object */\nexport function getStripeJS(): StripeJS {\n return !!window ? (window as any).Stripe : undefined;\n}\n\n/** Stripe.js v3 script loader */\nexport function loadStripeJS(): Promise {\n // Verifies whenever stripejs has already being loaded\n const StripeJS = getStripeJS();\n\n // Returns the existing stripejs instance or load the script\n return StripeJS\n ? Promise.resolve(StripeJS)\n : new Promise((resolve, reject) => {\n const script = document.createElement(\"script\");\n script.src = \"https://js.stripe.com/v3/\";\n script.type = \"text/javascript\";\n script.defer = true;\n script.async = true;\n\n script.onerror = () => {\n if (window?.navigator?.onLine) {\n reject(new Error(\"Unable to load StripeJS\"));\n } else {\n // If they are offline when trying to load stripe,\n // they will have to reload the app to continue e.g.for keycloak init,\n // so this will be handled on the next reload\n resolve({} as StripeJS);\n }\n };\n script.onload = () => resolve(getStripeJS());\n\n document.body.appendChild(script);\n });\n}\n\n/** Instantiates a Stripe istance accoding to the provided options */\nexport function stripeFactory(config: StripeConfig): Stripe {\n const StripeJS = getStripeJS();\n if (!StripeJS) {\n throw new Error(\"StripeJS loading failed\");\n }\n\n if (!config || typeof config.publicKey !== \"string\") {\n throw new Error(\"A valid publicKey must be provided\");\n }\n\n return StripeJS(config.publicKey, config.options);\n}\n", "import {\n PaymentIntentData,\n CardPaymentIntentData,\n IdealPaymentIntentData,\n IbanPaymentIntentData,\n PaymentIntentOptions,\n PaymentIntentResult,\n} from \"./payment-intent\";\nimport {\n TokenData,\n BankTokenData,\n PiiTokenData,\n IbanTokenData,\n TokenResult,\n} from \"./token\";\nimport { PaymentMethodData, PaymentMethodResult } from \"./payment-method\";\nimport { Elements, ElementsOptions, Element } from \"./element\";\nimport { CheckoutOptions, CheckoutResult } from \"./checkout\";\nimport { SourceData, SourceResult } from \"./source\";\nimport { PaymentOptions } from \"./payment-request\";\n\nexport interface StripeOptions {\n /**\n * For usage with Connect only.\n * Specifying a connected account ID (e.g., acct_24BFMpJ1svR5A89k) allows you to perform actions on behalf of that account.\n */\n stripeAccount?: string;\n /**\n * The IETF language tag used to globally configure localization in Stripe.js.\n * Setting the locale here will localize error strings for all Stripe.js methods.\n * It will also configure the locale for Elements and Checkout.\n * @default 'auto' (Stripe detects the locale of the browser).\n * Supported values depend on which features you are using.\n * Checkout supports a slightly different set of locales than the rest of Stripe.js.\n * If you are planning on using Checkout, make sure to use a value that it supports.\n */\n locale?: \"auto\" | string;\n}\n\nexport interface StripeJS {\n /**\n * Initialization function for StripeJS\n * @see https://stripe.com/docs/js/initializing\n * @param key - The public key of the user\n * @param [options] - Any options to configure StripeJS\n * @return StripeJS instance\n */\n (publicKey: string, options?: StripeOptions): Stripe;\n\n /** StripeJS version number */\n version: number;\n}\n\nexport abstract class Stripe {\n /**\n * Create an instance of elements which can be used to manage a group of StripeJS elements\n * @see https://stripe.com/docs/js/elements_object\n * @param [options] - Configuration options for the elements object\n * @return an instance of `Elements` to manage a group of elements\n */\n abstract elements(options?: ElementsOptions): Elements;\n\n /**\n * to redirect your customers to Checkout, a Stripe-hosted page to securely collect payment information.\n * When the customer completes their purchase, they are redirected back to your website.\n * @see https://stripe.com/docs/js/checkout/redirect_to_checkout\n * @param options - Configuration options for the redirection\n * @return a Promise which resolves with a result object.\n * If this method fails, the result object will contain a localized error message in the error.message field.\n */\n abstract redirectToCheckout(\n options?: CheckoutOptions\n ): Promise;\n\n /** -- TOKEN & SOURCES ------\n * The Charges API is the fastest way to accept U.S. and Canadian payments for your startup or prototype.\n * Stripe.js provides the following methods to create Tokens and Sources, which are part of the Charges API.\n * To accept payments globally, use the Payment Intents API instead.\n * @see https://stripe.com/docs/js/tokens_sources\n * To convert information collected by Elements into a single-use token that you safely pass to your server\n * to use in an API call\n * @param element - The element from which the data should be extracted\n * @param [data] - an object containing additional payment information you might have collected\n * @return an object containing the generated token or an error\n */\n abstract createToken(\n element: Element<\"card\" | \"cardNumber\" | \"cardCvc\">,\n data?: TokenData\n ): Promise;\n abstract createToken(\n element: Element<\"iban\">,\n data?: IbanTokenData\n ): Promise;\n abstract createToken(\n type: \"bank_account\",\n data?: BankTokenData\n ): Promise;\n abstract createToken(type: \"pii\", data?: PiiTokenData): Promise;\n\n /**\n * Convert payment information collected by Elements into a Source object that you safely pass to your server to use in an API call\n * NOTE: You cannot pass raw card information without an `Element`!\n * @see https://stripe.com/docs/js/tokens_sources/create_source\n * @param element - The element from which information should be extracted\n * @param data - An object containing the type of Source you want to create and any additional payment source information\n * @return an object containing the generated Source or an error\n */\n abstract createSource(\n element: Element<\"card\" | \"cardNumber\" | \"cardCvc\" | \"iban\">,\n sourceData?: SourceData\n ): Promise;\n abstract createSource(options: SourceData): Promise;\n\n /**\n * Retrieve a Source using its unique ID and client secret.\n * @see https://stripe.com/docs/js/tokens_sources/retrieve_source\n * @param id - Unique identifier of the source\n * @param client_secret - A secret available to the web client that created the Source\n * @return an object containing the generated Source or an error\n */\n abstract retrieveSource({\n id,\n client_secret,\n }: {\n id: string;\n client_secret: string;\n }): Promise;\n\n /** -- PAYMENT INTENTS ------\n * Accept global payments online with the Payment Intents APIs.\n * For step-by-step instructions on using the Payment Intents APIs, see the accept a payment guide.\n * The following Stripe.js methods are available to use as part of your integration.\n * @see https://stripe.com/docs/js/payment_intents\n * Use when the customer submits your payment form.\n * When called, it will confirm the PaymentIntent with data you provide and carry out 3DS or other next actions if they are required.\n * @see https://stripe.com/docs/js/payment_intents/confirm_card_payment\n * @param client_secret - A secret available to the web client that created the PaymentIntent\n * @param data Data to be sent with the request.\n * @param options An options object to control the behavior of this method.\n * @return an object containing the generated PaymentIntent or an error\n */\n abstract confirmCardPayment(\n clientSecret: string,\n data?: PaymentIntentData,\n options?: PaymentIntentOptions\n ): Promise;\n\n /**\n * Use with payment data from an Element by passing a card or cardNumber Element.\n * The new PaymentMethod will be created with data collected by the Element and will be used to confirm the PaymentIntent.\n * @param client_secret - A secret available to the web client that created the PaymentIntent\n * @param data an object to confirm using data collected by a card or cardNumber Element.\n * @param options An options object to control the behavior of this method.\n * @return an object containing the generated PaymentIntent or an error\n */\n abstract confirmCardPayment(\n clientSecret: string,\n data?: CardPaymentIntentData,\n options?: PaymentIntentOptions\n ): Promise;\n\n /** Use in the iDEAL Payments with Payment Methods flow when the customer submits your payment form.\n * When called, it will confirm the PaymentIntent with data you provide, and it will automatically redirect the customer to the authorize the transaction.\n * Once authorization is complete, the customer will be redirected back to your specified return_url.\n * @see https://stripe.com/docs/js/payment_intents/confirm_ideal_payment\n * @param client_secret - A secret available to the web client that created the PaymentIntent\n * @param data Data to be sent with the request.\n * @param options An options object to control the behavior of this method.\n * @return an object containing the generated PaymentIntent or an error\n */\n abstract confirmIdealPayment(\n clientSecret: string,\n data?: PaymentIntentData,\n options?: PaymentIntentOptions\n ): Promise;\n\n /**\n * Create and attach a new PaymentMethod by passing an idealBank Element.\n * The new PaymentMethod will be created with the bank code collected by the Element and will be used to confirm the PaymentIntent.\n * @param client_secret - A secret available to the web client that created the PaymentIntent\n * @param data Pass an object to confirm using data collected by an idealBank Element.\n * @param options An options object to control the behavior of this method.\n * @return an object containing the generated PaymentIntent or an error\n */\n abstract confirmIdealPayment(\n clientSecret: string,\n data?: IdealPaymentIntentData,\n options?: PaymentIntentOptions\n ): Promise;\n\n /**\n * Use in the SEPA Direct Debit Payments with Payment Methods flow when the customer submits your payment form.\n * When called, it will confirm the PaymentIntent with data you provide.\n * https://stripe.com/docs/js/payment_intents/confirm_sepa_debit_payment\n * @param client_secret - A secret available to the web client that created the PaymentIntent\n * @param data Data to be sent with the request.\n * @return an object containing the generated PaymentIntent or an error\n */\n abstract confirmSepaDebitPayment(\n clientSecret: string,\n data?: PaymentIntentData\n ): Promise;\n\n /**\n * Create and attach a new PaymentMethod by passing an iban Element.\n * The new PaymentMethod will be created with the data collected by the Element and will be used to confirm the PaymentIntent.\n * Additionally, to create a SEPA Direct Debit PaymentMethod, you are required to collect and include the customer’s name and email address.\n * @param client_secret - A secret available to the web client that created the PaymentIntent\n * @param data Pass an object to confirm the payment using data collected by an iban Element.\n * @return an object containing the generated PaymentIntent or an error\n */\n abstract confirmSepaDebitPayment(\n clientSecret: string,\n data?: IbanPaymentIntentData\n ): Promise;\n\n /** Use in the Payment Intents API manual confirmation flow to handle a PaymentIntent with the requires_action status.\n * It will throw an error if the PaymentIntent has a different status.\n * @see https://stripe.com/docs/js/payment_intents/handle_card_action\n * @param client_secret - A secret available to the web client that created the PaymentIntent\n * @return an object containing the generated PaymentIntent or an error\n */\n abstract handleCardAction(clientSecret: string): Promise;\n\n /**\n * Use to convert payment information collected by elements into a PaymentMethod object that you safely pass to your server to use in an API call.\n * @see https://stripe.com/docs/js/payment_intents/create_payment_method\n * @param data the payment method data object\n * @return an object containing the generated PaymentMethod or an error\n */\n abstract createPaymentMethod(\n data: PaymentMethodData\n ): Promise;\n\n /**\n * Retrieve a PaymentIntent using its client secret.\n * @see https://stripe.com/docs/js/payment_intents/retrieve_payment_intent\n * @param clientSecret the client secret\n * @return an object containing the retrived PaymentIntent or an error\n */\n abstract retrievePaymentIntent(\n clientSecret: string\n ): Promise;\n\n /** -- SETUP INTENTS ------\n * Use the Setup Intents APIs to save a card and charge it later.\n * @see https://stripe.com/docs/js/setup_intents\n * Use in the Setup Intents API flow when the customer submits your payment form.\n * When called, it will confirm the SetupIntent with data you provide and carry out 3DS or other next actions if they are required.\n * @see https://stripe.com/docs/js/setup_intents/confirm_card_setup\n * @param client_secret - A secret available to the web client that created the PaymentIntent\n * @param data Data to be sent with the request.\n * @param options An options object to control the behavior of this method.\n * @return an object containing the generated PaymentIntent or an error\n */\n abstract confirmCardSetup(\n clientSecret: string,\n data?: PaymentIntentData,\n options?: PaymentIntentOptions\n ): Promise;\n\n /**\n * Use with payment data from an Element by passing a card or cardNumber Element.\n * The new PaymentMethod will be created with data collected by the Element and will be used to confirm the SetupIntent.\n * @param client_secret - A secret available to the web client that created the PaymentIntent\n * @param data an object to confirm using data collected by a card or cardNumber Element.\n * @param options An options object to control the behavior of this method.\n * @return an object containing the generated PaymentIntent or an error\n */\n abstract confirmCardSetup(\n clientSecret: string,\n data?: CardPaymentIntentData,\n options?: PaymentIntentOptions\n ): Promise;\n\n /**\n * Use in the SEPA Direct Debit with Setup Intents flow when the customer submits your payment form.\n * When called, it will confirm the SetupIntent with data you provide.\n * @see https://stripe.com/docs/js/setup_intents/confirm_sepa_debit_setup\n * @param client_secret - A secret available to the web client that created the PaymentIntent\n * @param data Data to be sent with the request.\n * @return an object containing the generated PaymentIntent or an error\n */\n abstract confirmSepaDebitSetup(\n clientSecret: string,\n data?: PaymentIntentData\n ): Promise;\n\n /**\n * Create and attach a new PaymentMethod by passing an iban Element.\n * The new PaymentMethod will be created with the data collected by the Element and will be used to confirm the SetupIntent.\n * @param client_secret - A secret available to the web client that created the PaymentIntent\n * @param data Pass an object to confirm the payment using data collected by an iban Element.\n * @return an object containing the generated PaymentIntent or an error\n */\n abstract confirmSepaDebitSetup(\n clientSecret: string,\n data?: IbanPaymentIntentData\n ): Promise;\n\n /**\n * Retrieve a SetupIntent using its client secret.\n * @see https://stripe.com/docs/js/setup_intents/retrieve_setup_intent\n * @param client_secret - A secret available to the web client that created the PaymentIntent\n * @return an object containing the generated PaymentIntent or an error\n */\n abstract retrieveSetupIntent(\n clientSecret: string\n ): Promise;\n\n /**\n * Create a PaymentRequest object. Creating a PaymentRequest requires that you configure it with an options object.\n * In Safari uses Apple Pay, and in other browsers it uses the Payment Request API standard.\n * @see https://stripe.com/docs/js/payment_request/createPaymentMethod\n * @param options payment request option\n * @return an object containing the generated PaymentRequest\n */\n abstract paymentRequest(options: PaymentOptions): PaymentRequest;\n}\n", "import {\n Directive,\n OnInit,\n OnChanges,\n SimpleChanges,\n Input,\n Inject,\n} from \"@angular/core\";\nimport {\n Elements,\n Element,\n ElementType,\n ElementOptions,\n} from \"../stripe-definitions/element\";\nimport { StripeConfig, StripeConfigToken } from \"../stripe-factory\";\nimport { Stripe } from \"../stripe-definitions\";\n\n@Directive({\n selector: \"myqq-stripe-elements, [StripeElements]\",\n exportAs: \"StripeElements\",\n})\nexport class StripeElements implements OnInit, OnChanges, Elements {\n @Input() locale: string;\n\n public elements: Elements;\n\n constructor(\n readonly stripe: Stripe,\n @Inject(StripeConfigToken) private config: StripeConfig\n ) {}\n\n // Implements Elements functions\n\n public create(\n elementType: T,\n options?: ElementOptions\n ): Element {\n return this.elements && this.elements.create(elementType, options);\n }\n\n public getElement(type: T): Element {\n return this.elements.getElement(type);\n }\n\n ngOnInit() {\n const options = { ...this.config.elementsOptions, locale: this.locale };\n\n this.elements = this.stripe.elements(options);\n }\n\n ngOnChanges(_: SimpleChanges) {\n this.elements && this.ngOnInit();\n }\n}\n", "import {\n OnInit,\n OnChanges,\n SimpleChanges,\n OnDestroy,\n ElementRef,\n Output,\n EventEmitter,\n Directive,\n DoCheck,\n} from \"@angular/core\";\n\nimport {\n Element,\n ElementType,\n ElementOptions,\n ChangeEventObject,\n} from \"./stripe-definitions/element\";\nimport { StripeError } from \"./stripe-definitions/error\";\nimport { StripeElements } from \"./stripe-elements\";\nimport { StripeConfig } from \"./stripe-factory\";\n\n/** StripeElement types */\nexport type StripeElementType = Exclude;\n\nconst isFunction = (fn: unknown): fn is Function => typeof fn === \"function\";\n\n/**\n * Abstract generic class turning a StripeElement into an Angular component with basic features\n * To be used as the base class for all the Stripe related specific components: StripeCard...\n */\n@Directive()\nexport abstract class StripeElementDirective\n implements OnInit, OnChanges, OnDestroy, DoCheck {\n constructor(\n readonly elementType: T,\n private elements: StripeElements,\n private config: StripeConfig,\n private ref: ElementRef\n ) {}\n\n /**\n * Implement this getter to provide component specific options during element creation and update\n */\n protected abstract get options(): ElementOptions;\n\n /** The stripe element */\n public element: Element;\n\n /** The latest change value */\n public value: ChangeEventObject;\n\n /** True whenever the element is fully loaded */\n public ready = false;\n\n /** True whenever the element is focused */\n public focused: boolean;\n\n /** True whenever the element is disabled */\n public disabled: boolean;\n\n public locale: string;\n\n /** True whenever the element is empty */\n public get empty(): boolean {\n return !this.value || this.value.empty;\n }\n\n /** True whenever the element is complete and valid */\n public get complete(): boolean {\n return !!this.value && this.value.complete;\n }\n\n /** The StripeError or null */\n public get error(): StripeError | null {\n return (!!this.value && this.value.error) || null;\n }\n\n ngOnInit() {\n // Keeps track of the current Elements locale\n this.locale = this.elements.locale;\n\n // Resets the local variables\n this.focused = this.disabled = this.value = undefined;\n\n // Creates the requested Stripe element\n this.element = this.elements.create(this.elementType, {\n ...this.config.elementOptions,\n ...this.options,\n });\n\n // Hooks on the element's events\n this.element.on(\"ready\", (value) => {\n this.ready = true;\n this.readyChange.emit(value);\n });\n this.element.on(\"focus\", (value) => {\n this.focused = true;\n this.focusChange.emit(value);\n });\n this.element.on(\"blur\", (value) => {\n this.focused = false;\n this.blurChange.emit(value);\n });\n this.element.on(\"change\", (value: ChangeEventObject) =>\n this.valueChange.emit((this.value = value))\n );\n\n // Mounts the element on the DOM\n this.element.mount(this.ref.nativeElement);\n }\n\n ngOnChanges(_: SimpleChanges) {\n // Updates the element on input changes\n this.update(this.options);\n }\n\n ngDoCheck() {\n // Whenever the StripeElements locale has changed...\n if (this.locale !== this.elements.locale) {\n // Disposed of the current element\n this.ngOnDestroy();\n // Creates a ne element\n this.ngOnInit();\n // Updates the locale\n this.locale = this.elements.locale;\n }\n }\n\n ngOnDestroy() {\n // Resets the ready flag\n this.ready = false;\n // Disposes of the element\n if (typeof this.element?.destroy === \"function\") {\n this.element.destroy();\n }\n }\n\n /** Updates the element */\n public update(options: ElementOptions) {\n if (!this.element) {\n return;\n }\n\n // Ensures to correctly reflect the disabled status\n if (\"disabled\" in options) {\n this.disabled = options.disabled;\n }\n\n // Updates the element\n this.element.update(options);\n }\n\n /** Focus the element */\n public focus() {\n if (isFunction(this.element?.focus)) {\n this.element.focus();\n }\n }\n\n /** Blurs the element */\n public blur() {\n if (isFunction(this.element?.blur)) {\n this.element.blur();\n }\n }\n\n /** Clears the element */\n public clear() {\n if (isFunction(this.element?.clear)) {\n this.element.clear();\n }\n }\n\n /** Emits when fully loaded */\n // tslint:disable-next-line\n @Output(\"ready\")\n readyChange = new EventEmitter();\n\n /** Emits when focused */\n // tslint:disable-next-line\n @Output(\"focus\")\n focusChange = new EventEmitter();\n\n /** Emits when blurred */\n // tslint:disable-next-line\n @Output(\"blur\")\n blurChange = new EventEmitter();\n\n /** Emits on status changes */\n // tslint:disable-next-line\n @Output(\"change\")\n valueChange = new EventEmitter>();\n}\n", "import { Directive, forwardRef } from \"@angular/core\";\nimport {\n NG_VALUE_ACCESSOR,\n NG_VALIDATORS,\n AbstractControl,\n ControlValueAccessor,\n Validator,\n ValidationErrors,\n} from \"@angular/forms\";\nimport { StripeElementDirective } from \"../stripe-element\";\n\n/**\n * Bridges the StripeElementDirective with the Angular's form API implementing both a ControlValueAccessor\n * and a sync Validator enabling the use with FormControl\n */\n@Directive({\n selector:\n \"myqq-stripe-card[formControl], myqq-stripe-card[formControlName]\\\n myqq-stripe-card-number[formControl], myqq-stripe-card-number[formControlName]\\\n myqq-stripe-card-expiry[formControl], myqq-stripe-card-expiry[formControlName]\\\n myqq-stripe-card-cvc[formControl], myqq-stripe-card-cvc[formControlName]\\\n myqq-stripe-iban[formControl], myqq-stripe-iban[formControlName]\\\n myqq-stripe-ideal[formControl], myqq-stripe-ideal[formControlName]\",\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => StripeControl),\n multi: true,\n },\n {\n provide: NG_VALIDATORS,\n useExisting: forwardRef(() => StripeControl),\n multi: true,\n },\n ],\n})\nexport class StripeControl implements ControlValueAccessor, Validator {\n constructor(readonly element: StripeElementDirective) {}\n\n /**\n * Called by the forms API to write to the view when programmatic changes from model to view are requested.\n * NOTE: Only clearing the control is allowed\n */\n writeValue(value: any): void {\n !value && this.element.clear();\n }\n\n /**\n * Registers a callback function that is called when the control's value changes in the UI.\n * The value passed along the FormControl is the stripe Element instance to be used in the\n * payment_method object to setup or confirm the payment.\n */\n registerOnChange(fn: (_: any) => void): void {\n this.element.valueChange.subscribe((value) =>\n fn(value.complete ? this.element.element : null)\n );\n }\n\n /** Registers a callback function is called by the forms API on initialization to update the form model on blur. */\n registerOnTouched(fn: () => void): void {\n this.element.blurChange.subscribe(() => fn());\n }\n\n /**\n * Function that is called by the forms API when the control status changes to or from 'DISABLED'.\n * Depending on the status, it enables or disables the appropriate DOM element.\n */\n setDisabledState(disabled: boolean): void {\n this.element.update({ disabled });\n }\n\n /** Performs synchronous validation against the provided control. */\n validate(_: AbstractControl): ValidationErrors | null {\n const errorType = this.element.error && this.element.error.type;\n\n return errorType ? { [errorType]: true } : null;\n }\n}\n", "import { Directive, forwardRef } from \"@angular/core\";\nimport { MatFormFieldControl } from \"@angular/material/form-field\";\nimport { NgControl } from \"@angular/forms\";\nimport { StripeElementDirective } from \"../stripe-element\";\nimport { Observable, merge } from \"rxjs\";\n\n/**\n * MatFormFieldControl implementation for StripeElementDirective\n */\n@Directive({\n selector: \"[matStripe]\",\n host: { class: \"myqq-stripe-material\" },\n providers: [\n {\n provide: MatFormFieldControl,\n useExisting: forwardRef(() => StripeMaterialDirective),\n },\n ],\n})\nexport class StripeMaterialDirective implements MatFormFieldControl {\n constructor(readonly element: StripeElementDirective) {\n this.stateChanges = merge(\n element.readyChange,\n element.focusChange,\n element.blurChange,\n element.valueChange\n );\n }\n\n /** The value of the control. */\n get value(): any | null {\n return this.element.value || null;\n }\n\n /**\n * Stream that emits whenever the state of the control changes such that the parent `MatFormField`\n * needs to run change detection.\n */\n readonly stateChanges: Observable;\n\n /** The element ID for this control. */\n readonly id: string;\n\n /** The placeholder for this control. */\n readonly placeholder: string;\n\n /** Gets the NgControl for this control. */\n readonly ngControl: NgControl | null;\n\n /** Whether the control is focused. */\n get focused(): boolean {\n return this.element.focused;\n }\n\n /** Whether the control is empty. */\n get empty(): boolean {\n return !this.element.empty;\n }\n\n /** Whether the control is disabled. */\n get disabled(): boolean {\n return this.element.disabled;\n }\n\n /** Whether the `MatFormField` label should try to float. */\n get shouldLabelFloat(): boolean {\n return true;\n }\n\n /** Whether the control is required. */\n readonly required: boolean;\n\n /** Whether the control is in an error state. */\n get errorState(): boolean {\n const value = this.element.value;\n return !!value && !!value.error;\n }\n\n /** Sets the list of element IDs that currently describe this control. */\n setDescribedByIds(_: string[]): void {}\n\n /** Handles a click on the control's container. */\n onContainerClick(_: MouseEvent): void {\n this.element.focus();\n }\n}\n", "import {\n Component,\n Inject,\n forwardRef,\n Input,\n ElementRef,\n} from \"@angular/core\";\nimport { coerceBooleanProperty } from \"@angular/cdk/coercion\";\nimport { IconStyle, CardElementOptions } from \"../stripe-definitions/element\";\nimport { StripeConfig, StripeConfigToken } from \"../stripe-factory\";\nimport { StripeElements } from \"../stripe-elements\";\nimport { StripeElementDirective } from \"../stripe-element\";\n\n/** Stripe Card Element for Angular */\n@Component({\n selector: \"myqq-stripe-card\",\n template: \"\",\n providers: [\n {\n provide: StripeElementDirective,\n useExisting: forwardRef(() => StripeCard),\n },\n ],\n})\nexport class StripeCard extends StripeElementDirective<\"card\"> {\n constructor(\n elements: StripeElements,\n @Inject(StripeConfigToken) config: StripeConfig,\n ref: ElementRef\n ) {\n super(\"card\", elements, config, ref);\n }\n\n /** Card specific options */\n protected get options(): CardElementOptions {\n return {\n disabled: this.disabled,\n hidePostalCode: this.hidePostalCode,\n hideIcon: this.hideIcon,\n iconStyle: this.iconStyle,\n style: {\n base: {\n fontSize: \"16px\",\n },\n },\n };\n }\n\n /** The brand of the Card */\n get brand(): string {\n return \"\";\n }\n\n /** Disables the Card control */\n @Input(\"disabled\") set disableSetter(value: boolean) {\n this.disabled = coerceBooleanProperty(value);\n }\n public disabled = false;\n\n /** Hides the card icon */\n @Input(\"hideIcon\") set hideIconSetter(value: boolean) {\n this.hideIcon = coerceBooleanProperty(value);\n }\n public hideIcon: boolean;\n\n /** Hides the postal code */\n @Input(\"hidePostalCode\") set hidePostalCodeSetter(value: boolean) {\n this.hidePostalCode = coerceBooleanProperty(value);\n }\n public hidePostalCode: boolean;\n\n /** Selects the icon style */\n @Input() iconStyle: IconStyle;\n}\n", "import {\n APP_INITIALIZER,\n PLATFORM_ID,\n NgModule,\n ModuleWithProviders,\n Inject,\n Optional,\n forwardRef,\n} from \"@angular/core\";\nimport {\n StripeConfig,\n StripeConfigToken,\n stripeFactory,\n loadStripeJS,\n} from \"./stripe-factory\";\nimport { isPlatformBrowser } from \"@angular/common\";\nimport { StripeControl } from \"./stripe-control\";\nimport { StripeConnect } from \"./stripe-connect\";\nimport { StripeMaterialDirective } from \"./stripe-material\";\nimport { StripeElements } from \"./stripe-elements\";\nimport { StripeCard } from \"./stripe-card\";\nimport { StripeCardNumber } from \"./stripe-card-number\";\nimport { StripeCardExpiry } from \"./stripe-card-expiry\";\nimport { StripeCardCvc } from \"./stripe-card-cvc\";\nimport { StripeIban } from \"./stripe-iban\";\nimport { StripeIdeal } from \"./stripe-ideal\";\nimport { Stripe } from \"./stripe-definitions\";\n\nexport const STRIPE_EXPORTS = [\n StripeControl,\n StripeConnect,\n StripeMaterialDirective,\n StripeElements,\n StripeCard,\n StripeCardNumber,\n StripeCardExpiry,\n StripeCardCvc,\n StripeIban,\n StripeIdeal,\n];\n\n@NgModule({\n imports: [\n /*CommonModule*/\n ],\n declarations: STRIPE_EXPORTS,\n exports: STRIPE_EXPORTS,\n})\nexport class StripeModule {\n constructor(@Inject(PLATFORM_ID) platformId: Object) {\n if (!isPlatformBrowser(platformId)) {\n throw new Error(\"StripeModule package supports Browsers only\");\n }\n }\n\n static init(config: StripeConfig): ModuleWithProviders {\n return {\n ngModule: StripeModule,\n providers: [\n { provide: APP_INITIALIZER, useValue: loadStripeJS, multi: true },\n { provide: StripeConfigToken, useValue: config },\n {\n provide: Stripe,\n useFactory: stripeFactory,\n deps: [[new Optional(), new Inject(StripeConfigToken)]],\n },\n {\n provide: StripeElements,\n useFactory: (stripe: Stripe, config: StripeConfig) =>\n stripe.elements(config.elementsOptions),\n deps: [\n forwardRef(() => Stripe),\n [new Optional(), new Inject(StripeConfigToken)],\n ],\n },\n ],\n };\n }\n}\n"], "mappings": "kYAyBA,IAAMA,GAAqB,CACzBC,OAAQA,CAACC,EAAGC,IAAMD,IAAMC,GAEpBC,GAAgBC,EAAMC,GAAYN,GAAOA,EAAK,CAAC,EAC/CO,GAAYC,GAChBA,GAAM,KAKKC,GAAoB,IAAA,CAA3B,IAAOA,EAAP,MAAOA,CAAoB,CAHjCC,aAAA,CAIU,KAAAC,MAAuCC,EAE/C,KAAAC,aAAsC,CAAA,EACtC,KAAAC,aAAsC,CAAA,EACtC,KAAAC,aAAsC,CAAA,EACtC,KAAAC,aAAsC,CAAA,EAEtC,KAAAC,aAAsC,CAAA,EA+DtC,KAAAC,gBAAkB,CAChBC,EACAC,IACG,KAAKP,aAAaQ,KAAK,CAAEF,iBAAAA,EAAkBC,YAAAA,CAAW,CAAE,EAC7D,KAAAE,gBAAkB,CAChBH,EACAC,IACG,KAAKN,aAAaO,KAAK,CAAEF,iBAAAA,EAAkBC,YAAAA,CAAW,CAAE,EAC7D,KAAAG,gBAAkB,CAChBJ,EACAC,IACG,KAAKL,aAAaM,KAAK,CAAEF,iBAAAA,EAAkBC,YAAAA,CAAW,CAAE,EAC7D,KAAAI,gBAAkB,CAChBL,EACAC,IACG,KAAKJ,aAAaK,KAAK,CAAEF,iBAAAA,EAAkBC,YAAAA,CAAW,CAAE,EAE7D,KAAAK,eAAiB,CAACC,EAA+BC,IAAiB,CAChEC,EACEC,EAAmCH,EAASP,iBAAiBW,IAAI,CAAC,CAAC,EACnEC,EACE,IAAM,KAAKC,eAAeN,EAAUC,CAAO,EAC1CM,GAAO,KAAKC,cAAcD,EAAIN,CAAO,CAAC,CACxC,CAEL,EAEA,KAAAK,eAAiB,CAACN,EAA+BC,IAAiB,CAChED,EAASP,iBAAiBgB,mBAAmBT,EAASN,YAAaO,CAAO,CAC5E,EAEA,KAAAS,eAAkBV,GAChBA,EAASP,iBAAiBkB,MAAK,EAEjC,KAAAH,cAAgB,CAACI,EAA+BX,IAAiB,CAC3DA,IACFY,OAAOC,KAAKb,CAAO,EAAEc,QAASC,GAAO,CACnCJ,EAAQX,QAAQe,CAAG,EAAIf,EAAQe,CAAG,CACpC,CAAC,EACDJ,EAAQK,cAAa,EAEzB,EAtGA,IACIC,eAAejC,EAAuD,CAqBxE,GApBIJ,GAAMI,CAAK,IAEbA,EAAQC,GAILR,GAAcH,OAAOU,EAAO,KAAKA,KAAK,GACzC,KAAKM,aAAawB,QAAQ,KAAKL,cAAc,EAG3CS,EAAUlC,CAAK,IACjB,KAAKE,aAAa4B,QAAQ,KAAKhB,cAAc,EAC7C,KAAKR,aAAe,KAAKJ,cAGvBiC,EAAUnC,CAAK,IACjB,KAAKG,aAAa2B,QAAQ,KAAKhB,cAAc,EAC7C,KAAKR,aAAe,KAAKH,cAGvBiC,EAAUpC,CAAK,EACjB,GAAIqC,EAAOrC,EAAMsC,KAAK,EAAG,CACvB,IAAMtB,EAAU,CACduB,UAAWvC,EAAMsC,MAAME,KACvBC,WAAY,IAEd,KAAKrC,aAAa0B,QAASY,GAAO,KAAK5B,eAAe4B,EAAI1B,CAAO,CAAC,EAClE,KAAKV,aAAe,KAAKF,YAC3B,KAAO,CACL,IAAMY,EAAU,CACduB,UAAWvC,EAAMsC,MAAMK,MACvBF,WAAY,IAEd,KAAKpC,aAAayB,QAASY,GAAO,KAAK5B,eAAe4B,EAAI1B,CAAO,CAAC,EAClE,KAAKV,aAAe,KAAKD,YAC3B,CAGF,GAAIuC,EAAU5C,CAAK,EACjB,GAAIqC,EAAOrC,EAAMsC,KAAK,EAAG,CACvB,IAAMtB,EAAU,CACduB,UAAWvC,EAAMsC,MAAME,KACvBC,WAAY,IAEd,KAAKrC,aAAa0B,QAASY,GAAO,KAAK5B,eAAe4B,EAAI1B,CAAO,CAAC,EAClE,KAAKV,aAAe,KAAKF,YAC3B,KAAO,CACL,IAAMY,EAAU,CACduB,UAAWvC,EAAMsC,MAAMK,MACvBF,WAAY,IAEd,KAAKpC,aAAayB,QAASY,GAAO,KAAK5B,eAAe4B,EAAI1B,CAAO,CAAC,EAClE,KAAKV,aAAe,KAAKD,YAC3B,CAGF,KAAKL,MAAQA,CACf,yCArEWF,EAAoB,sBAApBA,EAAoB+C,UAAA,CAAA,CAAA,GAAA,iBAAA,EAAA,CAAA,EAAAC,OAAA,CAAAb,eAAA,gBAAA,CAAA,CAAA,EAA3B,IAAOnC,EAAPiD,SAAOjD,CAAoB,GAAA,ECtBjC,IAAakD,IAAgB,IAAA,CAAvB,IAAOA,EAAP,MAAOA,CAAgB,CAC3BC,YACWC,EACAC,EACoBC,EAA0C,CAF9D,KAAAF,cAAAA,EACA,KAAAC,YAAAA,EACoB,KAAAC,qBAAAA,EAEvBA,EACJA,EAAqBC,gBAAgBH,EAAeC,CAAW,EAE/DG,QAAQC,KACN,mEAAmE,CAGzE,yCAbWP,GAAgBQ,EAAAC,CAAA,EAAAD,EAAAE,CAAA,EAAAF,EAAAG,EAAA,CAAA,CAAA,CAAA,sBAAhBX,EAAgBY,UAAA,CAAA,CAAA,GAAA,YAAA,EAAA,CAAA,CAAA,CAAA,EAAvB,IAAOZ,EAAPa,SAAOb,CAAgB,GAAA,ECY7B,IAAMc,GAAqB,CACzBC,OAAQA,CAACC,EAAGC,IAAMD,IAAMC,GAEpBC,GAAUC,EAAML,EAAK,EACrBM,GAAYC,GAChBA,GAAM,KAKKC,GAAc,IAAA,CAArB,IAAOA,EAAP,MAAOA,CAAc,CAH3BC,aAAA,CAIU,KAAAC,MAAwBC,EAEhC,KAAAC,aAAgC,CAAA,EAChC,KAAAC,aAAgC,CAAA,EAChC,KAAAC,aAAgC,CAAA,EAChC,KAAAC,aAAgC,CAAA,EAEhC,KAAAC,aAAgC,CAAA,EA6ChC,KAAAC,gBAAkB,CAChBC,EACAC,IACG,KAAKP,aAAaQ,KAAK,CAAEF,iBAAAA,EAAkBC,YAAAA,CAAW,CAAE,EAC7D,KAAAE,gBAAkB,CAChBH,EACAC,IACG,KAAKN,aAAaO,KAAK,CAAEF,iBAAAA,EAAkBC,YAAAA,CAAW,CAAE,EAC7D,KAAAG,gBAAkB,CAChBJ,EACAC,IACG,KAAKL,aAAaM,KAAK,CAAEF,iBAAAA,EAAkBC,YAAAA,CAAW,CAAE,EAC7D,KAAAI,gBAAkB,CAChBL,EACAC,IACG,KAAKJ,aAAaK,KAAK,CAAEF,iBAAAA,EAAkBC,YAAAA,CAAW,CAAE,EAE7D,KAAAK,eAAiB,CAACC,EAAyBC,IAAiB,CAC1DC,EACEC,EAAmCH,EAASP,iBAAiBW,IAAI,CAAC,CAAC,EACnEC,EACE,IAAM,KAAKC,eAAeN,EAAUC,CAAO,EAC1CM,GAAO,KAAKC,cAAcD,EAAIN,CAAO,CAAC,CACxC,CAEL,EAEA,KAAAK,eAAiB,CAACN,EAAyBC,IAAiB,CAC1DD,EAASP,iBAAiBgB,mBAAmBT,EAASN,YAAaO,CAAO,CAC5E,EAEA,KAAAS,eAAkBV,GAChBA,EAASP,iBAAiBkB,MAAK,EAEjC,KAAAH,cAAgB,CAACI,EAA+BX,IAAiB,CAC3DA,IACFY,OAAOC,KAAKb,CAAO,EAAEc,QAASC,GAAO,CACnCJ,EAAQX,QAAQe,CAAG,EAAIf,EAAQe,CAAG,CACpC,CAAC,EACDJ,EAAQK,cAAa,EAEzB,EApFA,IACIC,SAASjC,EAAwC,CAqBnD,GApBIJ,GAAMI,CAAK,IAEbA,EAAQC,GAILP,GAAQH,OAAOS,EAAO,KAAKA,KAAK,GACnC,KAAKM,aAAawB,QAAQ,KAAKL,cAAc,EAG3CS,EAAUlC,CAAK,IACjB,KAAKE,aAAa4B,QAAQ,KAAKhB,cAAc,EAC7C,KAAKR,aAAe,KAAKJ,cAGvBiC,EAAUnC,CAAK,IACjB,KAAKG,aAAa2B,QAAQ,KAAKhB,cAAc,EAC7C,KAAKR,aAAe,KAAKH,cAGvBiC,EAAUpC,CAAK,EAAG,CACpB,IAAMgB,EAAU,CACdqB,UAAWrC,EAAMsC,MACjBC,WAAY,IAEd,KAAKnC,aAAa0B,QAASU,GAAO,KAAK1B,eAAe0B,EAAIxB,CAAO,CAAC,EAClE,KAAKV,aAAe,KAAKF,YAC3B,CAEA,GAAIqC,EAAUzC,CAAK,EAAG,CACpB,IAAMgB,EAAU,CACdqB,UAAWrC,EAAMsC,MACjBC,WAAY,IAEd,KAAKlC,aAAayB,QAASU,GAAO,KAAK1B,eAAe0B,EAAIxB,CAAO,CAAC,EAClE,KAAKV,aAAe,KAAKD,YAC3B,CAEA,KAAKL,MAAQA,CACf,yCAnDWF,EAAc,sBAAdA,EAAc4C,UAAA,CAAA,CAAA,GAAA,WAAA,EAAA,CAAA,EAAAC,OAAA,CAAAV,SAAA,UAAA,CAAA,CAAA,EAArB,IAAOnC,EAAP8C,SAAO9C,CAAc,GAAA,ECrB3B,IAAa+C,IAAgB,IAAA,CAAvB,IAAOA,EAAP,MAAOA,CAAgB,CAC3BC,YACWC,EACAC,EACoBC,EACAC,EAA8B,CAHlD,KAAAH,cAAAA,EACA,KAAAC,YAAAA,EACoB,KAAAC,qBAAAA,EACA,KAAAC,eAAAA,EAEvBD,EACJA,EAAqBE,gBAAgBJ,EAAeC,CAAW,EACpDE,EACXA,EAAeC,gBAAgBJ,EAAeC,CAAW,EAEzDI,QAAQC,KACN,qFAAqF,CAG3F,yCAhBWR,GAAgBS,EAAAC,CAAA,EAAAD,EAAAE,CAAA,EAAAF,EAAAG,EAAA,CAAA,EAAAH,EAAAI,EAAA,CAAA,CAAA,CAAA,sBAAhBb,EAAgBc,UAAA,CAAA,CAAA,GAAA,YAAA,EAAA,CAAA,CAAA,CAAA,EAAvB,IAAOd,EAAPe,SAAOf,CAAgB,GAAA,ECA7B,IAAagB,IAAgB,IAAA,CAAvB,IAAOA,EAAP,MAAOA,CAAgB,CAC3BC,YACWC,EACAC,EACoBC,EACAC,EAA8B,CAHlD,KAAAH,cAAAA,EACA,KAAAC,YAAAA,EACoB,KAAAC,qBAAAA,EACA,KAAAC,eAAAA,EAEvBD,EACJA,EAAqBE,gBAAgBJ,EAAeC,CAAW,EACpDE,EACXA,EAAeC,gBAAgBJ,EAAeC,CAAW,EAEzDI,QAAQC,KACN,qFAAqF,CAG3F,yCAhBWR,GAAgBS,EAAAC,CAAA,EAAAD,EAAAE,CAAA,EAAAF,EAAAG,EAAA,CAAA,EAAAH,EAAAI,EAAA,CAAA,CAAA,CAAA,sBAAhBb,EAAgBc,UAAA,CAAA,CAAA,GAAA,YAAA,EAAA,CAAA,CAAA,CAAA,EAAvB,IAAOd,EAAPe,SAAOf,CAAgB,GAAA,ECD7B,IAAagB,IAAgB,IAAA,CAAvB,IAAOA,EAAP,MAAOA,CAAgB,CAC3BC,YACWC,EACAC,EACoBC,EAA0C,CAF9D,KAAAF,cAAAA,EACA,KAAAC,YAAAA,EACoB,KAAAC,qBAAAA,EAEvBA,EACJA,EAAqBC,gBAAgBH,EAAeC,CAAW,EAE/DG,QAAQC,KACN,mEAAmE,CAGzE,yCAbWP,GAAgBQ,EAAAC,CAAA,EAAAD,EAAAE,CAAA,EAAAF,EAAAG,EAAA,CAAA,CAAA,CAAA,sBAAhBX,EAAgBY,UAAA,CAAA,CAAA,GAAA,YAAA,EAAA,CAAA,CAAA,CAAA,EAAvB,IAAOZ,EAAPa,SAAOb,CAAgB,GAAA,ECc7B,IAAac,IAAW,IAAA,CAAlB,IAAOA,EAAP,MAAOA,CAAW,yCAAXA,EAAW,sBAAXA,CAAW,CAAA,oBAAlB,IAAOA,EAAPC,SAAOD,CAAW,GAAA,ECZjB,IAAME,EAAoB,IAAIC,EACnC,cAAc,EAIV,SAAUC,GAAW,CACzB,OAASC,OAAUA,OAAeC,OAASC,MAC7C,CAGM,SAAUC,IAAY,CAE1B,IAAMC,EAAWL,EAAW,EAG5B,OAAOK,EACHC,QAAQC,QAAQF,CAAQ,EACxB,IAAIC,QAAQ,CAACC,EAASC,KAAU,CAC9B,IAAMC,EAASC,SAASC,cAAc,QAAQ,EAC9CF,EAAOG,IAAM,4BACbH,EAAOI,KAAO,kBACdJ,EAAOK,MAAQ,GACfL,EAAOM,MAAQ,GAEfN,EAAOO,QAAU,IAAK,CAChBf,QAAQgB,WAAWC,OACrBV,GAAO,IAAIW,MAAM,yBAAyB,CAAC,EAK3CZ,EAAQ,CAAA,CAAc,CAE1B,EACAE,EAAOW,OAAS,IAAMb,EAAQP,EAAW,CAAE,EAE3CU,SAASW,KAAKC,YAAYb,CAAM,CAClC,CAAC,CACP,CAGM,SAAUc,GAAcC,EAAoB,CAChD,IAAMnB,EAAWL,EAAW,EAC5B,GAAI,CAACK,EACH,MAAM,IAAIc,MAAM,yBAAyB,EAG3C,GAAI,CAACK,GAAU,OAAOA,EAAOC,WAAc,SACzC,MAAM,IAAIN,MAAM,oCAAoC,EAGtD,OAAOd,EAASmB,EAAOC,UAAWD,EAAOE,OAAO,CAClD,CCdM,IAAgBC,EAAhB,KAAsB,CAAA,EChC5B,IAAaC,GAAc,IAAA,CAArB,IAAOA,EAAP,MAAOA,CAAc,CAKzBC,YACWC,EAC0BC,EAAoB,CAD9C,KAAAD,OAAAA,EAC0B,KAAAC,OAAAA,CAClC,CAIIC,OACLC,EACAC,EAA2B,CAE3B,OAAO,KAAKC,UAAY,KAAKA,SAASH,OAAOC,EAAaC,CAAO,CACnE,CAEOE,WAAkCC,EAAO,CAC9C,OAAO,KAAKF,SAASC,WAAWC,CAAI,CACtC,CAEAC,UAAQ,CACN,IAAMJ,EAAUK,EAAAC,EAAA,GAAK,KAAKT,OAAOU,iBAAjB,CAAkCC,OAAQ,KAAKA,MAAM,GAErE,KAAKP,SAAW,KAAKL,OAAOK,SAASD,CAAO,CAC9C,CAEAS,YAAYC,EAAgB,CAC1B,KAAKT,UAAY,KAAKG,SAAQ,CAChC,yCA/BWV,GAAciB,EAAAC,CAAA,EAAAD,EAOfE,CAAiB,CAAA,CAAA,sBAPhBnB,EAAcoB,UAAA,CAAA,CAAA,sBAAA,EAAA,CAAA,GAAA,iBAAA,EAAA,CAAA,EAAAC,OAAA,CAAAP,OAAA,QAAA,EAAAQ,SAAA,CAAA,gBAAA,EAAAC,SAAA,CAAAC,CAAA,CAAA,CAAA,EAArB,IAAOxB,EAAPyB,SAAOzB,CAAc,GAAA,ECI3B,IAAM0B,EAAcC,GAAgC,OAAOA,GAAO,WAO5CC,GAAsB,IAAA,CAAtC,IAAgBA,EAAhB,MAAgBA,CAAsB,CAE1CC,YACWC,EACDC,EACAC,EACAC,EAA4B,CAH3B,KAAAH,YAAAA,EACD,KAAAC,SAAAA,EACA,KAAAC,OAAAA,EACA,KAAAC,IAAAA,EAeH,KAAAC,MAAQ,GA4Hf,KAAAC,YAAc,IAAIC,EAKlB,KAAAC,YAAc,IAAID,EAKlB,KAAAE,WAAa,IAAIF,EAKjB,KAAAG,YAAc,IAAIH,CAzJf,CAyBH,IAAWI,OAAK,CACd,MAAO,CAAC,KAAKC,OAAS,KAAKA,MAAMD,KACnC,CAGA,IAAWE,UAAQ,CACjB,MAAO,CAAC,CAAC,KAAKD,OAAS,KAAKA,MAAMC,QACpC,CAGA,IAAWC,OAAK,CACd,MAAQ,CAAC,CAAC,KAAKF,OAAS,KAAKA,MAAME,OAAU,IAC/C,CAEAC,UAAQ,CAEN,KAAKC,OAAS,KAAKd,SAASc,OAG5B,KAAKC,QAAU,KAAKC,SAAW,KAAKN,MAAQO,OAG5C,KAAKC,QAAU,KAAKlB,SAASmB,OAAO,KAAKpB,YAAaqB,IAAA,GACjD,KAAKnB,OAAOoB,gBACZ,KAAKC,QACT,EAGD,KAAKJ,QAAQK,GAAG,QAAUb,GAAS,CACjC,KAAKP,MAAQ,GACb,KAAKC,YAAYoB,KAAKd,CAAK,CAC7B,CAAC,EACD,KAAKQ,QAAQK,GAAG,QAAUb,GAAS,CACjC,KAAKK,QAAU,GACf,KAAKT,YAAYkB,KAAKd,CAAK,CAC7B,CAAC,EACD,KAAKQ,QAAQK,GAAG,OAASb,GAAS,CAChC,KAAKK,QAAU,GACf,KAAKR,WAAWiB,KAAKd,CAAK,CAC5B,CAAC,EACD,KAAKQ,QAAQK,GAAG,SAAWb,GACzB,KAAKF,YAAYgB,KAAM,KAAKd,MAAQA,CAAM,CAAC,EAI7C,KAAKQ,QAAQO,MAAM,KAAKvB,IAAIwB,aAAa,CAC3C,CAEAC,YAAYC,EAAgB,CAE1B,KAAKC,OAAO,KAAKP,OAAO,CAC1B,CAEAQ,WAAS,CAEH,KAAKhB,SAAW,KAAKd,SAASc,SAEhC,KAAKiB,YAAW,EAEhB,KAAKlB,SAAQ,EAEb,KAAKC,OAAS,KAAKd,SAASc,OAEhC,CAEAiB,aAAW,CAET,KAAK5B,MAAQ,GAET,OAAO,KAAKe,SAASc,SAAY,YACnC,KAAKd,QAAQc,QAAO,CAExB,CAGOH,OAAOP,EAA0B,CACjC,KAAKJ,UAKN,aAAcI,IAChB,KAAKN,SAAWM,EAAQN,UAI1B,KAAKE,QAAQW,OAAOP,CAAO,EAC7B,CAGOW,OAAK,CACNtC,EAAW,KAAKuB,SAASe,KAAK,GAChC,KAAKf,QAAQe,MAAK,CAEtB,CAGOC,MAAI,CACLvC,EAAW,KAAKuB,SAASgB,IAAI,GAC/B,KAAKhB,QAAQgB,KAAI,CAErB,CAGOC,OAAK,CACNxC,EAAW,KAAKuB,SAASiB,KAAK,GAChC,KAAKjB,QAAQiB,MAAK,CAEtB,oDA5IoBtC,EAAsBuC,QAAA,CAAAhC,YAAA,QAAAE,YAAA,QAAAC,WAAA,OAAAC,YAAA,QAAA,EAAA6B,SAAA,CAAAC,CAAA,CAAA,CAAA,EAAtC,IAAgBzC,EAAhB0C,SAAgB1C,CAAsB,GAAA,ECI5C,IAAa2C,IAAa,IAAA,CAApB,IAAOA,EAAP,MAAOA,CAAa,CACxBC,YAAqBC,EAAoC,CAApC,KAAAA,QAAAA,CAAuC,CAM5DC,WAAWC,EAAU,CACnB,CAACA,GAAS,KAAKF,QAAQG,MAAK,CAC9B,CAOAC,iBAAiBC,EAAoB,CACnC,KAAKL,QAAQM,YAAYC,UAAWL,GAClCG,EAAGH,EAAMM,SAAW,KAAKR,QAAQA,QAAU,IAAI,CAAC,CAEpD,CAGAS,kBAAkBJ,EAAc,CAC9B,KAAKL,QAAQU,WAAWH,UAAU,IAAMF,EAAE,CAAE,CAC9C,CAMAM,iBAAiBC,EAAiB,CAChC,KAAKZ,QAAQa,OAAO,CAAED,SAAAA,CAAQ,CAAE,CAClC,CAGAE,SAASC,EAAkB,CACzB,IAAMC,EAAY,KAAKhB,QAAQiB,OAAS,KAAKjB,QAAQiB,MAAMC,KAE3D,OAAOF,EAAY,CAAE,CAACA,CAAS,EAAG,EAAI,EAAK,IAC7C,yCAxCWlB,GAAaqB,EAAAC,CAAA,CAAA,CAAA,sBAAbtB,EAAauB,UAAA,CAAA,CAAA,mBAAA,cAAA,EAAA,EAAA,CAAA,0BAAA,kBAAA,GAAA,cAAA,EAAA,EAAA,CAAA,0BAAA,kBAAA,GAAA,cAAA,EAAA,EAAA,CAAA,uBAAA,kBAAA,GAAA,cAAA,EAAA,EAAA,CAAA,mBAAA,kBAAA,GAAA,cAAA,EAAA,EAAA,CAAA,oBAAA,kBAAA,GAAA,cAAA,EAAA,EAAA,CAAA,oBAAA,kBAAA,EAAA,CAAA,EAAAC,SAAA,CAAAC,EAbb,CACT,CACEC,QAASC,GACTC,YAAaC,EAAW,IAAM7B,CAAa,EAC3C8B,MAAO,IAET,CACEJ,QAASK,GACTH,YAAaC,EAAW,IAAM7B,CAAa,EAC3C8B,MAAO,GACR,CACF,CAAA,CAAA,CAAA,EAEG,IAAO9B,EAAPgC,SAAOhC,CAAa,GAAA,ECjB1B,IAAaiC,IAAuB,IAAA,CAA9B,IAAOA,EAAP,MAAOA,CAAuB,CAClCC,YAAqBC,EAAoC,CAApC,KAAAA,QAAAA,EACnB,KAAKC,aAAeC,EAClBF,EAAQG,YACRH,EAAQI,YACRJ,EAAQK,WACRL,EAAQM,WAAW,CAEvB,CAGA,IAAIC,OAAK,CACP,OAAO,KAAKP,QAAQO,OAAS,IAC/B,CAkBA,IAAIC,SAAO,CACT,OAAO,KAAKR,QAAQQ,OACtB,CAGA,IAAIC,OAAK,CACP,MAAO,CAAC,KAAKT,QAAQS,KACvB,CAGA,IAAIC,UAAQ,CACV,OAAO,KAAKV,QAAQU,QACtB,CAGA,IAAIC,kBAAgB,CAClB,MAAO,EACT,CAMA,IAAIC,YAAU,CACZ,IAAML,EAAQ,KAAKP,QAAQO,MAC3B,MAAO,CAAC,CAACA,GAAS,CAAC,CAACA,EAAMM,KAC5B,CAGAC,kBAAkBC,EAAW,CAAS,CAGtCC,iBAAiBD,EAAa,CAC5B,KAAKf,QAAQiB,MAAK,CACpB,yCAjEWnB,GAAuBoB,EAAAC,CAAA,CAAA,CAAA,sBAAvBrB,EAAuBsB,UAAA,CAAA,CAAA,GAAA,YAAA,EAAA,CAAA,EAAAC,UAAA,CAAA,EAAA,sBAAA,EAAAC,SAAA,CAAAC,EAPvB,CACT,CACEC,QAASC,GACTC,YAAaC,EAAW,IAAM7B,CAAuB,EACtD,CACF,CAAA,CAAA,CAAA,EAEG,IAAOA,EAAP8B,SAAO9B,CAAuB,GAAA,ECKpC,IAAa+B,IAAW,IAAA,CAAlB,IAAOA,EAAP,MAAOA,UAAmBC,CAA8B,CAC5DC,YACEC,EAC2BC,EAC3BC,EAA4B,CAE5B,MAAM,OAAQF,EAAUC,EAAQC,CAAG,EA2B9B,KAAAC,SAAW,EA1BlB,CAGA,IAAcC,SAAO,CACnB,MAAO,CACLD,SAAU,KAAKA,SACfE,eAAgB,KAAKA,eACrBC,SAAU,KAAKA,SACfC,UAAW,KAAKA,UAChBC,MAAO,CACLC,KAAM,CACJC,SAAU,SAIlB,CAGA,IAAIC,OAAK,CACP,MAAO,EACT,CAGA,IAAuBC,cAAcC,EAAc,CACjD,KAAKV,SAAWW,EAAsBD,CAAK,CAC7C,CAIA,IAAuBE,eAAeF,EAAc,CAClD,KAAKP,SAAWQ,EAAsBD,CAAK,CAC7C,CAIA,IAA6BG,qBAAqBH,EAAc,CAC9D,KAAKR,eAAiBS,EAAsBD,CAAK,CACnD,yCA5CWhB,GAAUoB,EAAAC,CAAA,EAAAD,EAGXE,CAAiB,EAAAF,EAAAG,CAAA,CAAA,CAAA,sBAHhBvB,EAAUwB,UAAA,CAAA,CAAA,kBAAA,CAAA,EAAAC,OAAA,CAAAV,cAAA,CAAA,EAAA,WAAA,eAAA,EAAAG,eAAA,CAAA,EAAA,WAAA,gBAAA,EAAAC,qBAAA,CAAA,EAAA,iBAAA,sBAAA,EAAAT,UAAA,WAAA,EAAAgB,SAAA,CAAAC,EAPV,CACT,CACEC,QAAS3B,EACT4B,YAAaC,EAAW,IAAM9B,CAAU,EACzC,CACF,EAAA+B,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,CAAA,CAAA,EAEG,IAAOrC,EAAPsC,SAAOtC,CAAW,GAAA,ECwBxB,IAAauC,IAAY,IAAA,CAAnB,IAAOA,EAAP,MAAOA,CAAY,CACvBC,YAAiCC,EAAkB,CACjD,GAAI,CAACC,EAAkBD,CAAU,EAC/B,MAAM,IAAIE,MAAM,6CAA6C,CAEjE,CAEA,OAAOC,KAAKC,EAAoB,CAC9B,MAAO,CACLC,SAAUP,EACVQ,UAAW,CACT,CAAEC,QAASC,EAAiBC,SAAUC,GAAcC,MAAO,EAAI,EAC/D,CAAEJ,QAASK,EAAmBH,SAAUL,CAAM,EAC9C,CACEG,QAASM,EACTC,WAAYC,GACZC,KAAM,CAAC,CAAC,IAAIC,EAAY,IAAIC,EAAON,CAAiB,CAAC,CAAC,GAExD,CACEL,QAASY,EACTL,WAAYA,CAACM,EAAgBhB,IAC3BgB,EAAOC,SAASjB,EAAOkB,eAAe,EACxCN,KAAM,CACJO,EAAW,IAAMV,CAAM,EACvB,CAAC,IAAII,EAAY,IAAIC,EAAON,CAAiB,CAAC,CAAC,EAElD,EAGP,yCA7BWd,GAAY0B,EACHC,CAAW,CAAA,CAAA,sBADpB3B,CAAY,CAAA,oBAAnB,IAAOA,EAAP4B,SAAO5B,CAAY,GAAA", "names": ["objEq", "equals", "a", "b", "datumEitherEq", "getEq", "getEqEither", "isNil", "t", "DatumEitherDirective", "constructor", "datum", "initial", "initialCases", "pendingCases", "failureCases", "successCases", "mountedCases", "registerInitial", "viewContainerRef", "templateRef", "push", "registerPending", "registerFailure", "registerSuccess", "ensureCaseView", "caseView", "context", "pipe", "fromNullable", "get", "fold", "createCaseView", "vr", "updateViewRef", "createEmbeddedView", "removeCaseView", "clear", "viewRef", "Object", "keys", "forEach", "key", "detectChanges", "useDatumEither", "isInitial", "isPending", "isRefresh", "isLeft", "value", "$implicit", "left", "refreshing", "cv", "right", "isReplete", "selectors", "inputs", "_DatumEitherDirective", "FailureDirective", "constructor", "viewContainer", "templateRef", "datumEitherDirective", "registerFailure", "console", "warn", "\u0275\u0275directiveInject", "ViewContainerRef", "TemplateRef", "DatumEitherDirective", "selectors", "_FailureDirective", "objEq", "equals", "a", "b", "datumEq", "getEq", "isNil", "t", "DatumDirective", "constructor", "datum", "initial", "initialCases", "pendingCases", "refreshCases", "repleteCases", "mountedCases", "registerInitial", "viewContainerRef", "templateRef", "push", "registerPending", "registerRefresh", "registerReplete", "ensureCaseView", "caseView", "context", "pipe", "fromNullable", "get", "fold", "createCaseView", "vr", "updateViewRef", "createEmbeddedView", "removeCaseView", "clear", "viewRef", "Object", "keys", "forEach", "key", "detectChanges", "useDatum", "isInitial", "isPending", "isRefresh", "$implicit", "value", "refreshing", "cv", "isReplete", "selectors", "inputs", "_DatumDirective", "InitialDirective", "constructor", "viewContainer", "templateRef", "datumEitherDirective", "datumDirective", "registerInitial", "console", "warn", "\u0275\u0275directiveInject", "ViewContainerRef", "TemplateRef", "DatumEitherDirective", "DatumDirective", "selectors", "_InitialDirective", "PendingDirective", "constructor", "viewContainer", "templateRef", "datumEitherDirective", "datumDirective", "registerPending", "console", "warn", "\u0275\u0275directiveInject", "ViewContainerRef", "TemplateRef", "DatumEitherDirective", "DatumDirective", "selectors", "_PendingDirective", "SuccessDirective", "constructor", "viewContainer", "templateRef", "datumEitherDirective", "registerSuccess", "console", "warn", "\u0275\u0275directiveInject", "ViewContainerRef", "TemplateRef", "DatumEitherDirective", "selectors", "_SuccessDirective", "DatumModule", "_DatumModule", "StripeConfigToken", "InjectionToken", "getStripeJS", "window", "Stripe", "undefined", "loadStripeJS", "StripeJS", "Promise", "resolve", "reject", "script", "document", "createElement", "src", "type", "defer", "async", "onerror", "navigator", "onLine", "Error", "onload", "body", "appendChild", "stripeFactory", "config", "publicKey", "options", "Stripe", "StripeElements", "constructor", "stripe", "config", "create", "elementType", "options", "elements", "getElement", "type", "ngOnInit", "__spreadProps", "__spreadValues", "elementsOptions", "locale", "ngOnChanges", "_", "\u0275\u0275directiveInject", "Stripe", "StripeConfigToken", "selectors", "inputs", "exportAs", "features", "\u0275\u0275NgOnChangesFeature", "_StripeElements", "isFunction", "fn", "StripeElementDirective", "constructor", "elementType", "elements", "config", "ref", "ready", "readyChange", "EventEmitter", "focusChange", "blurChange", "valueChange", "empty", "value", "complete", "error", "ngOnInit", "locale", "focused", "disabled", "undefined", "element", "create", "__spreadValues", "elementOptions", "options", "on", "emit", "mount", "nativeElement", "ngOnChanges", "_", "update", "ngDoCheck", "ngOnDestroy", "destroy", "focus", "blur", "clear", "outputs", "features", "\u0275\u0275NgOnChangesFeature", "_StripeElementDirective", "StripeControl", "constructor", "element", "writeValue", "value", "clear", "registerOnChange", "fn", "valueChange", "subscribe", "complete", "registerOnTouched", "blurChange", "setDisabledState", "disabled", "update", "validate", "_", "errorType", "error", "type", "\u0275\u0275directiveInject", "StripeElementDirective", "selectors", "features", "\u0275\u0275ProvidersFeature", "provide", "NG_VALUE_ACCESSOR", "useExisting", "forwardRef", "multi", "NG_VALIDATORS", "_StripeControl", "StripeMaterialDirective", "constructor", "element", "stateChanges", "merge", "readyChange", "focusChange", "blurChange", "valueChange", "value", "focused", "empty", "disabled", "shouldLabelFloat", "errorState", "error", "setDescribedByIds", "_", "onContainerClick", "focus", "\u0275\u0275directiveInject", "StripeElementDirective", "selectors", "hostAttrs", "features", "\u0275\u0275ProvidersFeature", "provide", "MatFormFieldControl", "useExisting", "forwardRef", "_StripeMaterialDirective", "StripeCard", "StripeElementDirective", "constructor", "elements", "config", "ref", "disabled", "options", "hidePostalCode", "hideIcon", "iconStyle", "style", "base", "fontSize", "brand", "disableSetter", "value", "coerceBooleanProperty", "hideIconSetter", "hidePostalCodeSetter", "\u0275\u0275directiveInject", "StripeElements", "StripeConfigToken", "ElementRef", "selectors", "inputs", "features", "\u0275\u0275ProvidersFeature", "provide", "useExisting", "forwardRef", "\u0275\u0275InheritDefinitionFeature", "decls", "vars", "template", "rf", "ctx", "encapsulation", "_StripeCard", "StripeModule", "constructor", "platformId", "isPlatformBrowser", "Error", "init", "config", "ngModule", "providers", "provide", "APP_INITIALIZER", "useValue", "loadStripeJS", "multi", "StripeConfigToken", "Stripe", "useFactory", "stripeFactory", "deps", "Optional", "Inject", "StripeElements", "stripe", "elements", "elementsOptions", "forwardRef", "\u0275\u0275inject", "PLATFORM_ID", "_StripeModule"] }