@aws-amplify/ui-vue 2.0.9 → 2.1.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/components/authenticator-force-new-password-form-fields.vue.d.ts +5 -0
- package/dist/components/authenticator-force-new-password-form-fields.vue.d.ts.map +1 -0
- package/dist/components/authenticator-sign-up-form-fields.vue.d.ts.map +1 -1
- package/dist/components/authenticator.vue.d.ts +6 -0
- package/dist/components/authenticator.vue.d.ts.map +1 -1
- package/dist/components/confirm-reset-password.vue.d.ts.map +1 -1
- package/dist/components/confirm-sign-up.vue.d.ts.map +1 -1
- package/dist/components/federated-sign-in.vue.d.ts.map +1 -1
- package/dist/components/force-new-password.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/primitives/amplify-text-field.vue.d.ts +7 -0
- package/dist/components/primitives/amplify-text-field.vue.d.ts.map +1 -1
- package/dist/components/reset-password.vue.d.ts.map +1 -1
- package/dist/components/sign-up.vue.d.ts.map +1 -1
- package/dist/composables/useAuth.d.ts.map +1 -1
- package/dist/index.cjs +65 -26
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +895 -729
- package/dist/style.css +1 -1
- package/package.json +6 -6
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {} & {}>, {}>;
|
|
4
|
+
export default _sfc_main;
|
|
5
|
+
//# sourceMappingURL=authenticator-force-new-password-form-fields.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authenticator-force-new-password-form-fields.vue.d.ts","sourceRoot":"","sources":["../../src/components/authenticator-force-new-password-form-fields.vue"],"names":[],"mappings":"AAUA,QAAA,MAAM,SAAS;;8PAwBb,CAAC;AACH,eAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authenticator-sign-up-form-fields.vue.d.ts","sourceRoot":"","sources":["../../src/components/authenticator-sign-up-form-fields.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"authenticator-sign-up-form-fields.vue.d.ts","sourceRoot":"","sources":["../../src/components/authenticator-sign-up-form-fields.vue"],"names":[],"mappings":"AAkBA,QAAA,MAAM,SAAS;;8PA0Eb,CAAC;AACH,eAAe,SAAS,CAAC"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
hideSignUp: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
};
|
|
2
5
|
initialState: null;
|
|
3
6
|
loginMechanisms: null;
|
|
4
7
|
services: null;
|
|
@@ -10,6 +13,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
10
13
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
11
14
|
[key: string]: any;
|
|
12
15
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("signInSubmit" | "confirmSignUpSubmit" | "resetPasswordSubmit" | "confirmResetPasswordSubmit" | "confirmSignInSubmit" | "mSetupTOTPSubmit" | "forceNewPasswordSubmit" | "signUpSubmit" | "verifyUserSubmit" | "confirmVerifyUserSubmit")[], "signInSubmit" | "confirmSignUpSubmit" | "resetPasswordSubmit" | "confirmResetPasswordSubmit" | "confirmSignInSubmit" | "mSetupTOTPSubmit" | "forceNewPasswordSubmit" | "signUpSubmit" | "verifyUserSubmit" | "confirmVerifyUserSubmit", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
16
|
+
hideSignUp?: unknown;
|
|
13
17
|
initialState?: unknown;
|
|
14
18
|
loginMechanisms?: unknown;
|
|
15
19
|
services?: unknown;
|
|
@@ -17,6 +21,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
17
21
|
variation?: unknown;
|
|
18
22
|
socialProviders?: unknown;
|
|
19
23
|
} & {
|
|
24
|
+
hideSignUp: boolean;
|
|
20
25
|
variation: string;
|
|
21
26
|
} & {
|
|
22
27
|
initialState?: any;
|
|
@@ -36,6 +41,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
36
41
|
onVerifyUserSubmit?: ((...args: any[]) => any) | undefined;
|
|
37
42
|
onConfirmVerifyUserSubmit?: ((...args: any[]) => any) | undefined;
|
|
38
43
|
}, {
|
|
44
|
+
hideSignUp: boolean;
|
|
39
45
|
variation: string;
|
|
40
46
|
}>;
|
|
41
47
|
export default _sfc_main;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authenticator.vue.d.ts","sourceRoot":"","sources":["../../src/components/authenticator.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"authenticator.vue.d.ts","sourceRoot":"","sources":["../../src/components/authenticator.vue"],"names":[],"mappings":"AAmCA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0ab,CAAC;AACH,eAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"confirm-reset-password.vue.d.ts","sourceRoot":"","sources":["../../src/components/confirm-reset-password.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"confirm-reset-password.vue.d.ts","sourceRoot":"","sources":["../../src/components/confirm-reset-password.vue"],"names":[],"mappings":"AAWA,QAAA,MAAM,SAAS;;;;;MAgOb,CAAC;AACH,eAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"confirm-sign-up.vue.d.ts","sourceRoot":"","sources":["../../src/components/confirm-sign-up.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"confirm-sign-up.vue.d.ts","sourceRoot":"","sources":["../../src/components/confirm-sign-up.vue"],"names":[],"mappings":"AAMA,QAAA,MAAM,SAAS;;;;;MAiLb,CAAC;AACH,eAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"federated-sign-in.vue.d.ts","sourceRoot":"","sources":["../../src/components/federated-sign-in.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"federated-sign-in.vue.d.ts","sourceRoot":"","sources":["../../src/components/federated-sign-in.vue"],"names":[],"mappings":"AAqFA,QAAA,MAAM,SAAS;;8PAmFb,CAAC;AACH,eAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"force-new-password.vue.d.ts","sourceRoot":"","sources":["../../src/components/force-new-password.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"force-new-password.vue.d.ts","sourceRoot":"","sources":["../../src/components/force-new-password.vue"],"names":[],"mappings":"AAYA,QAAA,MAAM,SAAS;;;;;MAsMb,CAAC;AACH,eAAe,SAAS,CAAC"}
|
|
@@ -3,6 +3,7 @@ export { default as SignUp } from './sign-up.vue';
|
|
|
3
3
|
export { default as FederatedSignIn } from './federated-sign-in.vue';
|
|
4
4
|
export { default as Authenticator } from './authenticator.vue';
|
|
5
5
|
export { default as AuthenticatorSignUpFormFields } from './authenticator-sign-up-form-fields.vue';
|
|
6
|
+
export { default as AuthenticatorForceNewPasswordFormFields } from './authenticator-force-new-password-form-fields.vue';
|
|
6
7
|
export { default as RenderInfo } from './primitives/render-info.vue';
|
|
7
8
|
export { default as PasswordControl } from './password-control.vue';
|
|
8
9
|
export { default as UserNameAlias } from './user-name-alias.vue';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;AACnG,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AACvE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,qCAAqC,CAAC;AAClF,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAChF,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAC3E,cAAc,UAAU,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;AACnG,OAAO,EAAE,OAAO,IAAI,uCAAuC,EAAE,MAAM,oDAAoD,CAAC;AACxH,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AACvE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,qCAAqC,CAAC;AAClF,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAChF,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAC3E,cAAc,UAAU,CAAC"}
|
|
@@ -25,6 +25,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
25
25
|
type: {
|
|
26
26
|
default: string;
|
|
27
27
|
};
|
|
28
|
+
hideLabel: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
28
32
|
}, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
29
33
|
[key: string]: any;
|
|
30
34
|
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
@@ -36,6 +40,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
36
40
|
disabled?: unknown;
|
|
37
41
|
name?: unknown;
|
|
38
42
|
type?: unknown;
|
|
43
|
+
hideLabel?: unknown;
|
|
39
44
|
} & {
|
|
40
45
|
label: string;
|
|
41
46
|
id: string;
|
|
@@ -45,6 +50,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
45
50
|
disabled: boolean;
|
|
46
51
|
name: string;
|
|
47
52
|
type: string;
|
|
53
|
+
hideLabel: boolean;
|
|
48
54
|
} & {}>, {
|
|
49
55
|
label: string;
|
|
50
56
|
id: string;
|
|
@@ -54,6 +60,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
54
60
|
disabled: boolean;
|
|
55
61
|
name: string;
|
|
56
62
|
type: string;
|
|
63
|
+
hideLabel: boolean;
|
|
57
64
|
}>;
|
|
58
65
|
export default _sfc_main;
|
|
59
66
|
//# sourceMappingURL=amplify-text-field.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"amplify-text-field.vue.d.ts","sourceRoot":"","sources":["../../../src/components/primitives/amplify-text-field.vue"],"names":[],"mappings":"AAGA,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"amplify-text-field.vue.d.ts","sourceRoot":"","sources":["../../../src/components/primitives/amplify-text-field.vue"],"names":[],"mappings":"AAGA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgDb,CAAC;AACH,eAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reset-password.vue.d.ts","sourceRoot":"","sources":["../../src/components/reset-password.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"reset-password.vue.d.ts","sourceRoot":"","sources":["../../src/components/reset-password.vue"],"names":[],"mappings":"AASA,QAAA,MAAM,SAAS;;;;;MA2Kb,CAAC;AACH,eAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sign-up.vue.d.ts","sourceRoot":"","sources":["../../src/components/sign-up.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"sign-up.vue.d.ts","sourceRoot":"","sources":["../../src/components/sign-up.vue"],"names":[],"mappings":"AAQA,QAAA,MAAM,SAAS;;;;MAiGb,CAAC;AACH,eAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useAuth.d.ts","sourceRoot":"","sources":["../../src/composables/useAuth.ts"],"names":[],"mappings":"AACA,OAAO,EAAiB,GAAG,EAAe,MAAM,KAAK,CAAC;AAGtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAMhD,eAAO,MAAM,OAAO;;;;;;;;;CAKnB,CAAC;AAUF,eAAO,MAAM,gBAAgB,
|
|
1
|
+
{"version":3,"file":"useAuth.d.ts","sourceRoot":"","sources":["../../src/composables/useAuth.ts"],"names":[],"mappings":"AACA,OAAO,EAAiB,GAAG,EAAe,MAAM,KAAK,CAAC;AAGtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAMhD,eAAO,MAAM,OAAO;;;;;;;;;CAKnB,CAAC;AAUF,eAAO,MAAM,gBAAgB,WAA2B,CAAC"}
|