@alviere/ui 0.9.0 → 0.10.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/index.d.ts +23 -22
- package/dist/index.js +5896 -3259
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/web-components.js +1 -1
- package/dist/web-components.js.map +1 -1
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { AlviereCoreConfig } from '@alviere/core';
|
|
|
2
2
|
import { PaymentInstrument } from '@alviere/core';
|
|
3
3
|
import { PaymentInstrumentRequest } from '@alviere/core';
|
|
4
4
|
import { PaymentInstrumentResponse } from '@alviere/core';
|
|
5
|
-
import {
|
|
5
|
+
import { SvelteComponent } from 'svelte';
|
|
6
6
|
|
|
7
7
|
export { AlviereCoreConfig }
|
|
8
8
|
|
|
@@ -58,6 +58,7 @@ export declare interface FlowConfig {
|
|
|
58
58
|
amount?: number;
|
|
59
59
|
title?: string;
|
|
60
60
|
description?: string;
|
|
61
|
+
profile?: string;
|
|
61
62
|
allowSkip?: boolean;
|
|
62
63
|
allowBack?: boolean;
|
|
63
64
|
showProgress?: boolean;
|
|
@@ -92,27 +93,27 @@ export { PaymentInstrumentResponse }
|
|
|
92
93
|
|
|
93
94
|
export declare type StepStatus = 'INCOMPLETE' | 'COMPLETE' | 'IN_PROGRESS' | 'ERROR';
|
|
94
95
|
|
|
95
|
-
export declare type StepType = 'CREATE_ACCOUNT' | 'CREATE_CONSUMER_ACCOUNT' | 'CREATE_BUSINESS_ACCOUNT' | 'ADD_BANK_ACCOUNT' | 'ADD_PAYMENT_INSTRUMENT' | 'BANK_ACCOUNTS' | 'CHECKOUT_CONFIRM';
|
|
96
|
-
|
|
97
|
-
export {
|
|
98
|
-
export {
|
|
99
|
-
export {
|
|
100
|
-
export {
|
|
101
|
-
export {
|
|
102
|
-
export {
|
|
103
|
-
export {
|
|
104
|
-
export {
|
|
105
|
-
export {
|
|
106
|
-
export {
|
|
107
|
-
export {
|
|
108
|
-
export {
|
|
109
|
-
export {
|
|
110
|
-
export {
|
|
111
|
-
export {
|
|
112
|
-
export {
|
|
113
|
-
export {
|
|
114
|
-
export {
|
|
115
|
-
export {
|
|
96
|
+
export declare type StepType = 'CREATE_ACCOUNT' | 'CREATE_CONSUMER_ACCOUNT' | 'CREATE_BUSINESS_ACCOUNT' | 'ADD_BANK_ACCOUNT' | 'ADD_DOSSIER' | 'ADD_PAYMENT_INSTRUMENT' | 'BANK_ACCOUNTS' | 'CHECKOUT_CONFIRM' | 'START_ONBOARDING';
|
|
97
|
+
|
|
98
|
+
export { SvelteComponent as AddBankAccount }
|
|
99
|
+
export { SvelteComponent as AddPaymentInstrument }
|
|
100
|
+
export { SvelteComponent as Badge }
|
|
101
|
+
export { SvelteComponent as Button }
|
|
102
|
+
export { SvelteComponent as CardCVVInput }
|
|
103
|
+
export { SvelteComponent as CardExpInput }
|
|
104
|
+
export { SvelteComponent as CardPanInput }
|
|
105
|
+
export { SvelteComponent as Checkbox }
|
|
106
|
+
export { SvelteComponent as CheckoutConfirm }
|
|
107
|
+
export { SvelteComponent as CreateConsumerAccount }
|
|
108
|
+
export { SvelteComponent as CurrencyInput }
|
|
109
|
+
export { SvelteComponent as DateOfBirthInput }
|
|
110
|
+
export { SvelteComponent as ErrorBoundary }
|
|
111
|
+
export { SvelteComponent as FormErrorBoundary }
|
|
112
|
+
export { SvelteComponent as MultiStepFlow }
|
|
113
|
+
export { SvelteComponent as PhoneInput }
|
|
114
|
+
export { SvelteComponent as Spinner }
|
|
115
|
+
export { SvelteComponent as TextInput }
|
|
116
|
+
export { SvelteComponent as Timeline }
|
|
116
117
|
|
|
117
118
|
/**
|
|
118
119
|
* Configuration options for token injection
|