@aws-amplify/ui 3.3.1 → 3.3.2
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/esm/index.js +24 -24
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +23 -1
- package/dist/index.js +24 -24
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/theme.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -533,7 +533,29 @@ declare type AuthenticatorMachineOptions = AuthContext['config'] & {
|
|
|
533
533
|
declare function createAuthenticatorMachine(): xstate.StateMachine<AuthContext, any, AuthEvent, {
|
|
534
534
|
value: any;
|
|
535
535
|
context: AuthContext;
|
|
536
|
-
}, xstate.
|
|
536
|
+
}, xstate.BaseActionObject, Record<string, {
|
|
537
|
+
data: any;
|
|
538
|
+
}>, xstate.TypegenDisabled & {
|
|
539
|
+
missingImplementations: {
|
|
540
|
+
actions: never;
|
|
541
|
+
delays: never;
|
|
542
|
+
guards: never;
|
|
543
|
+
services: never;
|
|
544
|
+
};
|
|
545
|
+
} & {
|
|
546
|
+
eventsCausingActions: Record<string, string>;
|
|
547
|
+
eventsCausingDelays: Record<string, string>;
|
|
548
|
+
eventsCausingGuards: Record<string, string>;
|
|
549
|
+
eventsCausingServices: Record<string, string>;
|
|
550
|
+
} & {
|
|
551
|
+
indexedActions: xstate.IndexByType<xstate.BaseActionObject>;
|
|
552
|
+
indexedEvents: Record<string, AuthEvent> & {
|
|
553
|
+
__XSTATE_ALLOW_ANY_INVOKE_DATA_HACK__: {
|
|
554
|
+
data: any;
|
|
555
|
+
};
|
|
556
|
+
};
|
|
557
|
+
invokeSrcNameMap: Record<string, "__XSTATE_ALLOW_ANY_INVOKE_DATA_HACK__">;
|
|
558
|
+
}>;
|
|
537
559
|
|
|
538
560
|
/**
|
|
539
561
|
* Helper function to test if something is a design token or not.
|