@authup/client-web-kit 1.0.0-beta.46 → 1.0.0-beta.47
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/entities/identity-provider/AIdentityProviderPicker.vue.d.ts.map +1 -1
- package/dist/components/entities/policy/APolicyTypePicker.vue.d.ts.map +1 -1
- package/dist/components/entities/realm/ARealmGrid.vue.d.ts +67 -0
- package/dist/components/entities/realm/ARealmGrid.vue.d.ts.map +1 -0
- package/dist/components/entities/realm/index.d.ts +1 -0
- package/dist/components/entities/realm/index.d.ts.map +1 -1
- package/dist/components/utility/AAuthBackLink.vue.d.ts +87 -0
- package/dist/components/utility/AAuthBackLink.vue.d.ts.map +1 -0
- package/dist/components/utility/AAuthGadgets.vue.d.ts +52 -0
- package/dist/components/utility/AAuthGadgets.vue.d.ts.map +1 -0
- package/dist/components/utility/AAuthShell.vue.d.ts +16 -0
- package/dist/components/utility/AAuthShell.vue.d.ts.map +1 -0
- package/dist/components/utility/AColorModeSwitcher.vue.d.ts +22 -0
- package/dist/components/utility/AColorModeSwitcher.vue.d.ts.map +1 -0
- package/dist/components/utility/ALanguageSwitcherDropdown.d.ts +35 -0
- package/dist/components/utility/ALanguageSwitcherDropdown.d.ts.map +1 -0
- package/dist/components/utility/index.d.ts +5 -1
- package/dist/components/utility/index.d.ts.map +1 -1
- package/dist/components/workflows/authorize/Authorize.vue.d.ts +98 -2
- package/dist/components/workflows/authorize/Authorize.vue.d.ts.map +1 -1
- package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts +2 -0
- package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts.map +1 -1
- package/dist/components/workflows/index.d.ts +3 -1
- package/dist/components/workflows/index.d.ts.map +1 -1
- package/dist/components/workflows/{Login.vue.d.ts → login/LoginForm.vue.d.ts} +112 -30
- package/dist/components/workflows/login/LoginForm.vue.d.ts.map +1 -0
- package/dist/components/workflows/login/index.d.ts +6 -0
- package/dist/components/workflows/login/index.d.ts.map +1 -0
- package/dist/components/workflows/password/PasswordForgotForm.vue.d.ts +461 -0
- package/dist/components/workflows/password/PasswordForgotForm.vue.d.ts.map +1 -0
- package/dist/components/workflows/password/PasswordResetForm.vue.d.ts +386 -0
- package/dist/components/workflows/password/PasswordResetForm.vue.d.ts.map +1 -0
- package/dist/components/workflows/password/index.d.ts +3 -0
- package/dist/components/workflows/password/index.d.ts.map +1 -0
- package/dist/components/workflows/register/ActivateForm.vue.d.ts +376 -0
- package/dist/components/workflows/register/ActivateForm.vue.d.ts.map +1 -0
- package/dist/components/workflows/register/RegisterForm.vue.d.ts +837 -0
- package/dist/components/workflows/register/RegisterForm.vue.d.ts.map +1 -0
- package/dist/components/workflows/register/index.d.ts +3 -0
- package/dist/components/workflows/register/index.d.ts.map +1 -0
- package/dist/core/http-client/authentication-hook/install.d.ts.map +1 -1
- package/dist/core/http-client/authentication-hook/types.d.ts +2 -0
- package/dist/core/http-client/authentication-hook/types.d.ts.map +1 -1
- package/dist/core/http-client/install.d.ts.map +1 -1
- package/dist/core/http-client/singleton.d.ts +3 -3
- package/dist/core/http-client/singleton.d.ts.map +1 -1
- package/dist/core/http-client/types.d.ts +2 -0
- package/dist/core/http-client/types.d.ts.map +1 -1
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/oauth2/authorization-request.d.ts +29 -0
- package/dist/core/oauth2/authorization-request.d.ts.map +1 -0
- package/dist/core/oauth2/index.d.ts +3 -0
- package/dist/core/oauth2/index.d.ts.map +1 -0
- package/dist/core/oauth2/pkce.d.ts +8 -0
- package/dist/core/oauth2/pkce.d.ts.map +1 -0
- package/dist/core/store/create.d.ts +6 -1
- package/dist/core/store/create.d.ts.map +1 -1
- package/dist/core/store/install.d.ts.map +1 -1
- package/dist/core/store/types.d.ts +3 -0
- package/dist/core/store/types.d.ts.map +1 -1
- package/dist/core/translator/index.d.ts +1 -0
- package/dist/core/translator/index.d.ts.map +1 -1
- package/dist/core/translator/locale.d.ts +21 -0
- package/dist/core/translator/locale.d.ts.map +1 -0
- package/dist/index.mjs +1366 -374
- package/dist/index.mjs.map +1 -1
- package/dist/module.d.ts.map +1 -1
- package/dist/types.d.ts +8 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +22 -19
- package/dist/components/utility/LanguageSwitcherDropdown.d.ts +0 -17
- package/dist/components/utility/LanguageSwitcherDropdown.d.ts.map +0 -1
- package/dist/components/workflows/Login.vue.d.ts.map +0 -1
- package/dist/style.css +0 -48
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
import type { PropType, Ref } from 'vue';
|
|
2
2
|
import type { IdentityProvider, OAuth2AuthorizationCodeRequest } from '@authup/core-kit';
|
|
3
|
-
import { TranslatorTranslationActionKey, TranslatorTranslationEntityKey, TranslatorTranslationFieldKey } from '@authup/i18n';
|
|
3
|
+
import { TranslatorTranslationActionKey, TranslatorTranslationClientKey, TranslatorTranslationEntityKey, TranslatorTranslationFieldKey } from '@authup/i18n';
|
|
4
4
|
import type { BuildInput } from 'rapiq';
|
|
5
|
+
import type { LinkProperties } from '@vuecs/link';
|
|
5
6
|
declare const _default: typeof __VLS_export;
|
|
6
7
|
export default _default;
|
|
7
8
|
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8
9
|
codeRequest: {
|
|
9
10
|
type: PropType<OAuth2AuthorizationCodeRequest>;
|
|
10
11
|
};
|
|
12
|
+
registerLink: {
|
|
13
|
+
type: PropType<LinkProperties>;
|
|
14
|
+
};
|
|
15
|
+
passwordForgotLink: {
|
|
16
|
+
type: PropType<LinkProperties>;
|
|
17
|
+
};
|
|
11
18
|
}>, {
|
|
12
19
|
updateRealmId: (realmId: string | string[]) => void;
|
|
13
20
|
v: import("@validup/vue").Composable<{
|
|
@@ -35,11 +42,17 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
35
42
|
load: () => Promise<void>;
|
|
36
43
|
}>;
|
|
37
44
|
buildIdentityProviderURL: (id: string) => string;
|
|
38
|
-
translationsDefault: Record<TranslatorTranslationActionKey.LOGIN | TranslatorTranslationFieldKey.NAME | TranslatorTranslationFieldKey.PASSWORD | TranslatorTranslationEntityKey.IDENTITY_PROVIDER, string>;
|
|
45
|
+
translationsDefault: Record<TranslatorTranslationActionKey.LOGIN | TranslatorTranslationFieldKey.NAME | TranslatorTranslationFieldKey.PASSWORD | TranslatorTranslationEntityKey.IDENTITY_PROVIDER | TranslatorTranslationClientKey.CREATE_ACCOUNT | TranslatorTranslationClientKey.FORGOT_PASSWORD, string>;
|
|
39
46
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("done" | "failed")[], "done" | "failed", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
40
47
|
codeRequest: {
|
|
41
48
|
type: PropType<OAuth2AuthorizationCodeRequest>;
|
|
42
49
|
};
|
|
50
|
+
registerLink: {
|
|
51
|
+
type: PropType<LinkProperties>;
|
|
52
|
+
};
|
|
53
|
+
passwordForgotLink: {
|
|
54
|
+
type: PropType<LinkProperties>;
|
|
55
|
+
};
|
|
43
56
|
}>> & Readonly<{
|
|
44
57
|
onDone?: (...args: any[]) => any;
|
|
45
58
|
onFailed?: (...args: any[]) => any;
|
|
@@ -58,23 +71,23 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
58
71
|
default: boolean;
|
|
59
72
|
};
|
|
60
73
|
loading: {
|
|
61
|
-
type: PropType<boolean | import("
|
|
74
|
+
type: PropType<boolean | import("../..").ListLoadingOptions<import("@authup/core-kit").Realm>>;
|
|
62
75
|
default: boolean;
|
|
63
76
|
};
|
|
64
77
|
noMore: {
|
|
65
|
-
type: PropType<boolean | import("
|
|
78
|
+
type: PropType<boolean | import("../..").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
|
|
66
79
|
default: boolean;
|
|
67
80
|
};
|
|
68
81
|
footer: {
|
|
69
|
-
type: PropType<boolean | import("
|
|
82
|
+
type: PropType<boolean | import("../..").ListFooterOptions<import("@authup/core-kit").Realm>>;
|
|
70
83
|
default: boolean;
|
|
71
84
|
};
|
|
72
85
|
header: {
|
|
73
|
-
type: PropType<boolean | import("
|
|
86
|
+
type: PropType<boolean | import("../..").ListHeaderOptions<import("@authup/core-kit").Realm>>;
|
|
74
87
|
default: boolean;
|
|
75
88
|
};
|
|
76
89
|
body: {
|
|
77
|
-
type: PropType<import("
|
|
90
|
+
type: PropType<import("../..").ListBodyOptions<import("@authup/core-kit").Realm>>;
|
|
78
91
|
};
|
|
79
92
|
value: {
|
|
80
93
|
type: PropType<string[] | string | null>;
|
|
@@ -86,7 +99,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
86
99
|
[key: string]: any;
|
|
87
100
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
88
101
|
change: (values: string[]) => true;
|
|
89
|
-
} & import("
|
|
102
|
+
} & import("../..").EntityCollectionVEmitOptions<import("@authup/core-kit").Realm>, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
90
103
|
query: {
|
|
91
104
|
type: PropType<BuildInput<import("@authup/core-kit").Realm>>;
|
|
92
105
|
default(): {};
|
|
@@ -100,23 +113,23 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
100
113
|
default: boolean;
|
|
101
114
|
};
|
|
102
115
|
loading: {
|
|
103
|
-
type: PropType<boolean | import("
|
|
116
|
+
type: PropType<boolean | import("../..").ListLoadingOptions<import("@authup/core-kit").Realm>>;
|
|
104
117
|
default: boolean;
|
|
105
118
|
};
|
|
106
119
|
noMore: {
|
|
107
|
-
type: PropType<boolean | import("
|
|
120
|
+
type: PropType<boolean | import("../..").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
|
|
108
121
|
default: boolean;
|
|
109
122
|
};
|
|
110
123
|
footer: {
|
|
111
|
-
type: PropType<boolean | import("
|
|
124
|
+
type: PropType<boolean | import("../..").ListFooterOptions<import("@authup/core-kit").Realm>>;
|
|
112
125
|
default: boolean;
|
|
113
126
|
};
|
|
114
127
|
header: {
|
|
115
|
-
type: PropType<boolean | import("
|
|
128
|
+
type: PropType<boolean | import("../..").ListHeaderOptions<import("@authup/core-kit").Realm>>;
|
|
116
129
|
default: boolean;
|
|
117
130
|
};
|
|
118
131
|
body: {
|
|
119
|
-
type: PropType<import("
|
|
132
|
+
type: PropType<import("../..").ListBodyOptions<import("@authup/core-kit").Realm>>;
|
|
120
133
|
};
|
|
121
134
|
value: {
|
|
122
135
|
type: PropType<string[] | string | null>;
|
|
@@ -137,7 +150,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
137
150
|
loadOnSetup: boolean;
|
|
138
151
|
loading: boolean;
|
|
139
152
|
noMore: boolean;
|
|
140
|
-
}, import("vue").SlotsType<import("
|
|
153
|
+
}, import("vue").SlotsType<import("../..").EntityPickerVSlots<import("@authup/core-kit").Realm>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
141
154
|
APagination: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
142
155
|
total: {
|
|
143
156
|
type: NumberConstructor;
|
|
@@ -149,7 +162,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
149
162
|
type: BooleanConstructor;
|
|
150
163
|
};
|
|
151
164
|
load: {
|
|
152
|
-
type: PropType<import("
|
|
165
|
+
type: PropType<import("../../utility/pagination/type").PaginationLoadFn>;
|
|
153
166
|
};
|
|
154
167
|
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
155
168
|
total: {
|
|
@@ -162,7 +175,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
162
175
|
type: BooleanConstructor;
|
|
163
176
|
};
|
|
164
177
|
load: {
|
|
165
|
-
type: PropType<import("
|
|
178
|
+
type: PropType<import("../../utility/pagination/type").PaginationLoadFn>;
|
|
166
179
|
};
|
|
167
180
|
}>> & Readonly<{}>, {
|
|
168
181
|
busy: boolean;
|
|
@@ -202,7 +215,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
202
215
|
}>> & Readonly<{}>, {
|
|
203
216
|
icon: boolean;
|
|
204
217
|
}, import("vue").SlotsType<{
|
|
205
|
-
default: import("
|
|
218
|
+
default: import("../../utility/title/type").TitleSlotProps;
|
|
206
219
|
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
207
220
|
AIdentityProviders: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
208
221
|
query: {
|
|
@@ -218,25 +231,25 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
218
231
|
default: boolean;
|
|
219
232
|
};
|
|
220
233
|
loading: {
|
|
221
|
-
type: PropType<boolean | import("
|
|
234
|
+
type: PropType<boolean | import("../..").ListLoadingOptions<IdentityProvider>>;
|
|
222
235
|
default: boolean;
|
|
223
236
|
};
|
|
224
237
|
noMore: {
|
|
225
|
-
type: PropType<boolean | import("
|
|
238
|
+
type: PropType<boolean | import("../..").ListNoMoreOptions<IdentityProvider>>;
|
|
226
239
|
default: boolean;
|
|
227
240
|
};
|
|
228
241
|
footer: {
|
|
229
|
-
type: PropType<boolean | import("
|
|
242
|
+
type: PropType<boolean | import("../..").ListFooterOptions<IdentityProvider>>;
|
|
230
243
|
default: boolean;
|
|
231
244
|
};
|
|
232
245
|
header: {
|
|
233
|
-
type: PropType<boolean | import("
|
|
246
|
+
type: PropType<boolean | import("../..").ListHeaderOptions<IdentityProvider>>;
|
|
234
247
|
default: boolean;
|
|
235
248
|
};
|
|
236
249
|
body: {
|
|
237
|
-
type: PropType<import("
|
|
250
|
+
type: PropType<import("../..").ListBodyOptions<IdentityProvider>>;
|
|
238
251
|
};
|
|
239
|
-
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("
|
|
252
|
+
}>, () => import("vue").VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("../..").EntityCollectionVEmitOptions<IdentityProvider>, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
240
253
|
query: {
|
|
241
254
|
type: PropType<BuildInput<IdentityProvider>>;
|
|
242
255
|
default(): {};
|
|
@@ -250,23 +263,23 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
250
263
|
default: boolean;
|
|
251
264
|
};
|
|
252
265
|
loading: {
|
|
253
|
-
type: PropType<boolean | import("
|
|
266
|
+
type: PropType<boolean | import("../..").ListLoadingOptions<IdentityProvider>>;
|
|
254
267
|
default: boolean;
|
|
255
268
|
};
|
|
256
269
|
noMore: {
|
|
257
|
-
type: PropType<boolean | import("
|
|
270
|
+
type: PropType<boolean | import("../..").ListNoMoreOptions<IdentityProvider>>;
|
|
258
271
|
default: boolean;
|
|
259
272
|
};
|
|
260
273
|
footer: {
|
|
261
|
-
type: PropType<boolean | import("
|
|
274
|
+
type: PropType<boolean | import("../..").ListFooterOptions<IdentityProvider>>;
|
|
262
275
|
default: boolean;
|
|
263
276
|
};
|
|
264
277
|
header: {
|
|
265
|
-
type: PropType<boolean | import("
|
|
278
|
+
type: PropType<boolean | import("../..").ListHeaderOptions<IdentityProvider>>;
|
|
266
279
|
default: boolean;
|
|
267
280
|
};
|
|
268
281
|
body: {
|
|
269
|
-
type: PropType<import("
|
|
282
|
+
type: PropType<import("../..").ListBodyOptions<IdentityProvider>>;
|
|
270
283
|
};
|
|
271
284
|
}>> & Readonly<{
|
|
272
285
|
onUpdated?: (item: IdentityProvider) => any;
|
|
@@ -280,7 +293,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
280
293
|
loadOnSetup: boolean;
|
|
281
294
|
loading: boolean;
|
|
282
295
|
noMore: boolean;
|
|
283
|
-
}, import("vue").SlotsType<import("
|
|
296
|
+
}, import("vue").SlotsType<import("../..").EntityCollectionVSlots<IdentityProvider>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
284
297
|
AIdentityProviderIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
285
298
|
entity: {
|
|
286
299
|
type: PropType<IdentityProvider>;
|
|
@@ -650,6 +663,75 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
650
663
|
groupAppend: import("@vuecs/forms").FormInputGroupSlotProps;
|
|
651
664
|
groupPrepend: import("@vuecs/forms").FormInputGroupSlotProps;
|
|
652
665
|
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
666
|
+
VCLink: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
667
|
+
active: {
|
|
668
|
+
type: BooleanConstructor;
|
|
669
|
+
default: boolean;
|
|
670
|
+
};
|
|
671
|
+
disabled: {
|
|
672
|
+
type: BooleanConstructor;
|
|
673
|
+
default: boolean;
|
|
674
|
+
};
|
|
675
|
+
href: {
|
|
676
|
+
type: StringConstructor;
|
|
677
|
+
default: any;
|
|
678
|
+
};
|
|
679
|
+
prefetch: {
|
|
680
|
+
type: BooleanConstructor;
|
|
681
|
+
default: boolean;
|
|
682
|
+
};
|
|
683
|
+
target: {
|
|
684
|
+
type: StringConstructor;
|
|
685
|
+
default: string;
|
|
686
|
+
};
|
|
687
|
+
to: {
|
|
688
|
+
type: PropType<string | Record<string, any>>;
|
|
689
|
+
default: any;
|
|
690
|
+
};
|
|
691
|
+
query: {
|
|
692
|
+
type: PropType<import("@vuecs/link").LinkQuery>;
|
|
693
|
+
};
|
|
694
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
695
|
+
[key: string]: any;
|
|
696
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "clicked")[], "click" | "clicked", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
697
|
+
active: {
|
|
698
|
+
type: BooleanConstructor;
|
|
699
|
+
default: boolean;
|
|
700
|
+
};
|
|
701
|
+
disabled: {
|
|
702
|
+
type: BooleanConstructor;
|
|
703
|
+
default: boolean;
|
|
704
|
+
};
|
|
705
|
+
href: {
|
|
706
|
+
type: StringConstructor;
|
|
707
|
+
default: any;
|
|
708
|
+
};
|
|
709
|
+
prefetch: {
|
|
710
|
+
type: BooleanConstructor;
|
|
711
|
+
default: boolean;
|
|
712
|
+
};
|
|
713
|
+
target: {
|
|
714
|
+
type: StringConstructor;
|
|
715
|
+
default: string;
|
|
716
|
+
};
|
|
717
|
+
to: {
|
|
718
|
+
type: PropType<string | Record<string, any>>;
|
|
719
|
+
default: any;
|
|
720
|
+
};
|
|
721
|
+
query: {
|
|
722
|
+
type: PropType<import("@vuecs/link").LinkQuery>;
|
|
723
|
+
};
|
|
724
|
+
}>> & Readonly<{
|
|
725
|
+
onClick?: (...args: any[]) => any;
|
|
726
|
+
onClicked?: (...args: any[]) => any;
|
|
727
|
+
}>, {
|
|
728
|
+
active: boolean;
|
|
729
|
+
disabled: boolean;
|
|
730
|
+
href: string;
|
|
731
|
+
prefetch: boolean;
|
|
732
|
+
target: string;
|
|
733
|
+
to: string | Record<string, any>;
|
|
734
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
653
735
|
IFieldValidation: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
654
736
|
field: {
|
|
655
737
|
type: PropType<import("@validup/vue").FieldState>;
|
|
@@ -666,4 +748,4 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
666
748
|
}) => import("vue").VNodeChild;
|
|
667
749
|
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
668
750
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
669
|
-
//# sourceMappingURL=
|
|
751
|
+
//# sourceMappingURL=LoginForm.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LoginForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/login/LoginForm.vue"],"names":[],"mappings":"AAoWA,OAAO,KAAK,EAAE,QAAQ,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAQzC,OAAO,KAAK,EAAE,gBAAgB,EAAE,8BAA8B,EAAE,MAAM,kBAAkB,CAAC;AAGzF,OAAO,EACH,8BAA8B,EAC9B,8BAA8B,EAC9B,8BAA8B,EAC9B,6BAA6B,EAEhC,MAAM,cAAc,CAAC;AAUtB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;AAGxC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;wBA2B7B,OAAO,YAAY;AAAxC,wBAAyC;AAmVzC,QAAA,MAAM,YAAY;;cAeqB,QAAQ,CAAC,8BAA8B,CAAC;;;cAKvC,QAAQ,CAAC,cAAc,CAAC;;;cAClB,QAAQ,CAAC,cAAc,CAAC;;;6BA8E9B,MAAM,GAAG,MAAM,EAAE;;cAlc/C,MAAM;kBACF,MAAM;kBACN,MAAM;;;;;;;;;;;;;cAubF,MAAM,OAAO,CAAC,IAAI,CAAC;;;cAAnB,MAAM,OAAO,CAAC,IAAI,CAAC;;;cAAnB,MAAM,OAAO,CAAC,IAAI,CAAC;;mCAsCS,MAAM;;;;cAjHb,QAAQ,CAAC,8BAA8B,CAAC;;;cAKvC,QAAQ,CAAC,cAAc,CAAC;;;cAClB,QAAQ,CAAC,cAAc,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCAlatE,GA7HO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA6HP,GApSE;qBAoSF,GAnS2B;;;;;;;;;;;;;;;;;;;;;;;;oEAq1BzB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/login/index.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAExD;;GAEG;AACH,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,iBAAiB,CAAC"}
|