@alviere/ui 0.10.0 → 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 +4 -2
- package/dist/index.js +2754 -945
- 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 +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -91,7 +91,7 @@ export { PaymentInstrumentRequest }
|
|
|
91
91
|
|
|
92
92
|
export { PaymentInstrumentResponse }
|
|
93
93
|
|
|
94
|
-
export declare type StepStatus = 'INCOMPLETE' | 'COMPLETE' | 'IN_PROGRESS' | 'ERROR';
|
|
94
|
+
export declare type StepStatus = 'INCOMPLETE' | 'COMPLETE' | 'IN_PROGRESS' | 'ERROR' | 'INFO_BLOCKED' | 'ACTION_REQUIRED';
|
|
95
95
|
|
|
96
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
97
|
|
|
@@ -109,6 +109,8 @@ export { SvelteComponent as CurrencyInput }
|
|
|
109
109
|
export { SvelteComponent as DateOfBirthInput }
|
|
110
110
|
export { SvelteComponent as ErrorBoundary }
|
|
111
111
|
export { SvelteComponent as FormErrorBoundary }
|
|
112
|
+
export { SvelteComponent as LegalTextConsent }
|
|
113
|
+
export { SvelteComponent as Modal }
|
|
112
114
|
export { SvelteComponent as MultiStepFlow }
|
|
113
115
|
export { SvelteComponent as PhoneInput }
|
|
114
116
|
export { SvelteComponent as Spinner }
|
|
@@ -127,7 +129,7 @@ export declare interface TokensConfig {
|
|
|
127
129
|
disableAutoInject?: boolean;
|
|
128
130
|
}
|
|
129
131
|
|
|
130
|
-
export declare type ValidationState = 'valid' | 'invalid' | 'neutral';
|
|
132
|
+
export declare type ValidationState = 'valid' | 'invalid' | 'neutral' | 'warning';
|
|
131
133
|
|
|
132
134
|
export declare const version = "1.0.0";
|
|
133
135
|
|