@alviere/ui 0.9.1 → 0.11.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 CHANGED
@@ -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;
@@ -90,9 +91,9 @@ export { PaymentInstrumentRequest }
90
91
 
91
92
  export { PaymentInstrumentResponse }
92
93
 
93
- export declare type StepStatus = 'INCOMPLETE' | 'COMPLETE' | 'IN_PROGRESS' | 'ERROR';
94
+ export declare type StepStatus = 'INCOMPLETE' | 'COMPLETE' | 'IN_PROGRESS' | 'ERROR' | 'INFO_BLOCKED' | 'ACTION_REQUIRED';
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
+ 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';
96
97
 
97
98
  export { SvelteComponent as AddBankAccount }
98
99
  export { SvelteComponent as AddPaymentInstrument }
@@ -108,6 +109,8 @@ export { SvelteComponent as CurrencyInput }
108
109
  export { SvelteComponent as DateOfBirthInput }
109
110
  export { SvelteComponent as ErrorBoundary }
110
111
  export { SvelteComponent as FormErrorBoundary }
112
+ export { SvelteComponent as LegalTextConsent }
113
+ export { SvelteComponent as Modal }
111
114
  export { SvelteComponent as MultiStepFlow }
112
115
  export { SvelteComponent as PhoneInput }
113
116
  export { SvelteComponent as Spinner }
@@ -126,7 +129,7 @@ export declare interface TokensConfig {
126
129
  disableAutoInject?: boolean;
127
130
  }
128
131
 
129
- export declare type ValidationState = 'valid' | 'invalid' | 'neutral';
132
+ export declare type ValidationState = 'valid' | 'invalid' | 'neutral' | 'warning';
130
133
 
131
134
  export declare const version = "1.0.0";
132
135