@authup/client-web-kit 1.0.0-beta.26 → 1.0.0-beta.27

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.
Files changed (48) hide show
  1. package/dist/components/entities/client/AClientForm.d.ts +1 -1
  2. package/dist/components/entities/identity-provider/AIdentityProviderForm.d.ts +1 -11
  3. package/dist/components/entities/identity-provider/AIdentityProviderForm.d.ts.map +1 -1
  4. package/dist/components/entities/identity-provider/AIdentityProviderLdapForm.d.ts +1 -1
  5. package/dist/components/entities/identity-provider/AIdentityProviderOAuth2Form.d.ts +1 -10
  6. package/dist/components/entities/identity-provider/AIdentityProviderOAuth2Form.d.ts.map +1 -1
  7. package/dist/components/entities/permission/APermissionCheck.d.ts +5 -5
  8. package/dist/components/entities/permission/APermissionCheck.d.ts.map +1 -1
  9. package/dist/components/entities/policy/APolicyBasicForm.vue.d.ts +3 -3
  10. package/dist/components/entities/policy/APolicyForm.vue.d.ts +4 -4
  11. package/dist/components/entities/policy/attribute-names/AAttributeNamesPolicyForm.vue.d.ts +3 -3
  12. package/dist/components/entities/policy/composite/ACompositePolicyForm.vue.d.ts +3 -3
  13. package/dist/components/entities/policy/date/ADatePolicyForm.vue.d.ts +3 -3
  14. package/dist/components/entities/policy/identity/AIdentityPolicyForm.vue.d.ts +3 -3
  15. package/dist/components/entities/policy/realm-match/ARealmMatchPolicyForm.vue.d.ts +6 -6
  16. package/dist/components/entities/policy/time/ATimePolicyForm.vue.d.ts +3 -3
  17. package/dist/components/entities/robot/ARobotForm.d.ts +1 -1
  18. package/dist/components/entities/user/AUserForm.d.ts +1 -1
  19. package/dist/components/index.d.ts +1 -0
  20. package/dist/components/index.d.ts.map +1 -1
  21. package/dist/components/utility/AFormSubmit.d.ts +1 -1
  22. package/dist/components/utility/form-input-list/AFormInputList.vue.d.ts +3 -3
  23. package/dist/components/utility/form-input-list/AFormInputListItem.vue.d.ts +3 -3
  24. package/dist/components/workflows/Login.vue.d.ts +353 -0
  25. package/dist/components/workflows/Login.vue.d.ts.map +1 -0
  26. package/dist/components/workflows/authorize/Authorize.vue.d.ts +488 -0
  27. package/dist/components/workflows/authorize/Authorize.vue.d.ts.map +1 -0
  28. package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts +83 -0
  29. package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts.map +1 -0
  30. package/dist/components/workflows/authorize/AuthorizeScope.vue.d.ts +27 -0
  31. package/dist/components/workflows/authorize/AuthorizeScope.vue.d.ts.map +1 -0
  32. package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts +54 -0
  33. package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts.map +1 -0
  34. package/dist/components/workflows/authorize/AuthorizeText.vue.d.ts +21 -0
  35. package/dist/components/workflows/authorize/AuthorizeText.vue.d.ts.map +1 -0
  36. package/dist/components/workflows/authorize/helpers.d.ts +10 -0
  37. package/dist/components/workflows/authorize/helpers.d.ts.map +1 -0
  38. package/dist/components/workflows/authorize/index.d.ts +3 -0
  39. package/dist/components/workflows/authorize/index.d.ts.map +1 -0
  40. package/dist/components/workflows/index.d.ts +3 -0
  41. package/dist/components/workflows/index.d.ts.map +1 -0
  42. package/dist/index.cjs +1241 -393
  43. package/dist/index.cjs.map +1 -1
  44. package/dist/index.css +20 -0
  45. package/dist/index.mjs +1094 -249
  46. package/dist/index.mjs.map +1 -1
  47. package/dist/module.d.ts.map +1 -1
  48. package/package.json +22 -22
@@ -0,0 +1,488 @@
1
+ import type { Client, OAuth2AuthorizationCodeRequest, Scope } from '@authup/core-kit';
2
+ import type { PropType, VNodeChild } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ codeRequest: {
5
+ type: PropType<OAuth2AuthorizationCodeRequest>;
6
+ };
7
+ client: {
8
+ type: PropType<Client>;
9
+ };
10
+ clientId: {
11
+ type: StringConstructor;
12
+ };
13
+ scopes: {
14
+ type: PropType<Scope[]>;
15
+ };
16
+ error: {
17
+ type: PropType<Error>;
18
+ };
19
+ }>, () => any[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
20
+ [key: string]: any;
21
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "redirect"[], "redirect", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
22
+ codeRequest: {
23
+ type: PropType<OAuth2AuthorizationCodeRequest>;
24
+ };
25
+ client: {
26
+ type: PropType<Client>;
27
+ };
28
+ clientId: {
29
+ type: StringConstructor;
30
+ };
31
+ scopes: {
32
+ type: PropType<Scope[]>;
33
+ };
34
+ error: {
35
+ type: PropType<Error>;
36
+ };
37
+ }>> & Readonly<{
38
+ onRedirect?: (...args: any[]) => any;
39
+ }>, {}, {}, {
40
+ AuthorizeText: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
41
+ isError: {
42
+ type: BooleanConstructor;
43
+ };
44
+ message: {
45
+ type: StringConstructor;
46
+ required: true;
47
+ };
48
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
49
+ isError: {
50
+ type: BooleanConstructor;
51
+ };
52
+ message: {
53
+ type: StringConstructor;
54
+ required: true;
55
+ };
56
+ }>> & Readonly<{}>, {
57
+ isError: boolean;
58
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
59
+ AuthorizeForm: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
60
+ client: {
61
+ type: PropType<Client>;
62
+ required: true;
63
+ };
64
+ scopes: {
65
+ type: PropType<Scope[]>;
66
+ };
67
+ codeRequest: {
68
+ type: PropType<OAuth2AuthorizationCodeRequest>;
69
+ required: true;
70
+ };
71
+ }>, {
72
+ authorize: () => Promise<void>;
73
+ abort: () => void;
74
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
75
+ client: {
76
+ type: PropType<Client>;
77
+ required: true;
78
+ };
79
+ scopes: {
80
+ type: PropType<Scope[]>;
81
+ };
82
+ codeRequest: {
83
+ type: PropType<OAuth2AuthorizationCodeRequest>;
84
+ required: true;
85
+ };
86
+ }>> & Readonly<{}>, {}, {}, {
87
+ AuthorizeScopes: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
88
+ client: {
89
+ type: PropType<Client>;
90
+ required: true;
91
+ };
92
+ scopesAvailable: {
93
+ type: PropType<Scope[]>;
94
+ };
95
+ scopesRequested: {
96
+ type: PropType<string[] | string>;
97
+ };
98
+ }>, {
99
+ scopesRequestedNormalized: import("vue").ComputedRef<string[]>;
100
+ scopesAvailableNormalized: import("vue").Ref<any[], any[]>;
101
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
102
+ client: {
103
+ type: PropType<Client>;
104
+ required: true;
105
+ };
106
+ scopesAvailable: {
107
+ type: PropType<Scope[]>;
108
+ };
109
+ scopesRequested: {
110
+ type: PropType<string[] | string>;
111
+ };
112
+ }>> & Readonly<{}>, {}, {}, {
113
+ AuthorizeScope: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
114
+ entity: {
115
+ type: PropType<Scope>;
116
+ required: true;
117
+ };
118
+ requested: {
119
+ type: PropType<string[]>;
120
+ default: () => any[];
121
+ };
122
+ }>, {
123
+ isEnabled: import("vue").ComputedRef<boolean>;
124
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
125
+ entity: {
126
+ type: PropType<Scope>;
127
+ required: true;
128
+ };
129
+ requested: {
130
+ type: PropType<string[]>;
131
+ default: () => any[];
132
+ };
133
+ }>> & Readonly<{}>, {
134
+ requested: string[];
135
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
136
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
137
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
138
+ Login: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
139
+ codeRequest: {
140
+ type: PropType<OAuth2AuthorizationCodeRequest>;
141
+ };
142
+ }>, {
143
+ updateRealmId: (realmId: string | string[]) => void;
144
+ vuelidate: import("vue").Ref<import("@vuelidate/core").Validation<{
145
+ name: {
146
+ required: import("@vuelidate/core").ValidationRuleWithoutParams<any>;
147
+ minLength: import("@vuelidate/core").ValidationRuleWithParams<{
148
+ min: number;
149
+ }, any>;
150
+ maxLength: import("@vuelidate/core").ValidationRuleWithParams<{
151
+ max: number;
152
+ }, any>;
153
+ };
154
+ password: {
155
+ required: import("@vuelidate/core").ValidationRuleWithoutParams<any>;
156
+ minLength: import("@vuelidate/core").ValidationRuleWithParams<{
157
+ min: number;
158
+ }, any>;
159
+ maxLength: import("@vuelidate/core").ValidationRuleWithParams<{
160
+ max: number;
161
+ }, any>;
162
+ };
163
+ realm_id: {};
164
+ }, {
165
+ name: string;
166
+ password: string;
167
+ realm_id: string;
168
+ }>, import("@vuelidate/core").Validation<{
169
+ name: {
170
+ required: import("@vuelidate/core").ValidationRuleWithoutParams<any>;
171
+ minLength: import("@vuelidate/core").ValidationRuleWithParams<{
172
+ min: number;
173
+ }, any>;
174
+ maxLength: import("@vuelidate/core").ValidationRuleWithParams<{
175
+ max: number;
176
+ }, any>;
177
+ };
178
+ password: {
179
+ required: import("@vuelidate/core").ValidationRuleWithoutParams<any>;
180
+ minLength: import("@vuelidate/core").ValidationRuleWithParams<{
181
+ min: number;
182
+ }, any>;
183
+ maxLength: import("@vuelidate/core").ValidationRuleWithParams<{
184
+ max: number;
185
+ }, any>;
186
+ };
187
+ realm_id: {};
188
+ }, {
189
+ name: string;
190
+ password: string;
191
+ realm_id: string;
192
+ }>>;
193
+ form: {
194
+ name: string;
195
+ password: string;
196
+ realm_id: string;
197
+ };
198
+ submit: () => Promise<void>;
199
+ busy: import("vue").Ref<boolean, boolean>;
200
+ identityProviderQuery: import("vue").Ref<import("rapiq").BuildInput<import("@authup/core-kit").IdentityProvider>, import("rapiq").BuildInput<import("@authup/core-kit").IdentityProvider>>;
201
+ identityProviderRef: import("vue").Ref<{
202
+ [x: string]: any;
203
+ load: () => any;
204
+ }, {
205
+ [key: string]: any;
206
+ load: () => any;
207
+ } | {
208
+ [x: string]: any;
209
+ load: () => any;
210
+ }>;
211
+ buildIdentityProviderURL: (id: string) => string;
212
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("done" | "failed")[], "done" | "failed", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
213
+ codeRequest: {
214
+ type: PropType<OAuth2AuthorizationCodeRequest>;
215
+ };
216
+ }>> & Readonly<{
217
+ onDone?: (...args: any[]) => any;
218
+ onFailed?: (...args: any[]) => any;
219
+ }>, {}, {}, {
220
+ ARealmPicker: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
221
+ query: {
222
+ type: PropType<import("rapiq").BuildInput<import("@authup/core-kit").Realm>>;
223
+ default(): {};
224
+ };
225
+ realmId: {
226
+ type: StringConstructor;
227
+ default: any;
228
+ };
229
+ loadOnSetup: {
230
+ type: BooleanConstructor;
231
+ default: boolean;
232
+ };
233
+ loading: {
234
+ type: PropType<boolean | import("../..").ListLoadingOptions<import("@authup/core-kit").Realm>>;
235
+ default: boolean;
236
+ };
237
+ noMore: {
238
+ type: PropType<boolean | import("../..").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
239
+ default: boolean;
240
+ };
241
+ footer: {
242
+ type: PropType<boolean | import("../..").ListFooterOptions<import("@authup/core-kit").Realm>>;
243
+ default: boolean;
244
+ };
245
+ header: {
246
+ type: PropType<boolean | import("../..").ListHeaderOptions<import("@authup/core-kit").Realm>>;
247
+ default: boolean;
248
+ };
249
+ body: {
250
+ type: PropType<import("../..").ListBodyOptions<import("@authup/core-kit").Realm>>;
251
+ };
252
+ value: {
253
+ type: PropType<string[] | string | null>;
254
+ };
255
+ multiple: {
256
+ type: PropType<boolean | undefined>;
257
+ };
258
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
259
+ [key: string]: any;
260
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
261
+ change: (values: string[]) => true;
262
+ } & import("../..").EntityCollectionVEmitOptions<import("@authup/core-kit").Realm>, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
263
+ query: {
264
+ type: PropType<import("rapiq").BuildInput<import("@authup/core-kit").Realm>>;
265
+ default(): {};
266
+ };
267
+ realmId: {
268
+ type: StringConstructor;
269
+ default: any;
270
+ };
271
+ loadOnSetup: {
272
+ type: BooleanConstructor;
273
+ default: boolean;
274
+ };
275
+ loading: {
276
+ type: PropType<boolean | import("../..").ListLoadingOptions<import("@authup/core-kit").Realm>>;
277
+ default: boolean;
278
+ };
279
+ noMore: {
280
+ type: PropType<boolean | import("../..").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
281
+ default: boolean;
282
+ };
283
+ footer: {
284
+ type: PropType<boolean | import("../..").ListFooterOptions<import("@authup/core-kit").Realm>>;
285
+ default: boolean;
286
+ };
287
+ header: {
288
+ type: PropType<boolean | import("../..").ListHeaderOptions<import("@authup/core-kit").Realm>>;
289
+ default: boolean;
290
+ };
291
+ body: {
292
+ type: PropType<import("../..").ListBodyOptions<import("@authup/core-kit").Realm>>;
293
+ };
294
+ value: {
295
+ type: PropType<string[] | string | null>;
296
+ };
297
+ multiple: {
298
+ type: PropType<boolean | undefined>;
299
+ };
300
+ }>> & Readonly<{
301
+ onUpdated?: (item: import("@authup/core-kit").Realm) => any;
302
+ onDeleted?: (item: import("@authup/core-kit").Realm) => any;
303
+ onCreated?: (item: import("@authup/core-kit").Realm) => any;
304
+ onChange?: (values: string[]) => any;
305
+ }>, {
306
+ footer: boolean;
307
+ header: boolean;
308
+ query: import("rapiq").BuildInput<import("@authup/core-kit").Realm>;
309
+ realmId: string;
310
+ loadOnSetup: boolean;
311
+ loading: boolean;
312
+ noMore: boolean;
313
+ }, import("vue").SlotsType<import("../..").EntityPickerVSlots<import("@authup/core-kit").Realm>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
314
+ APagination: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
315
+ total: {
316
+ type: NumberConstructor;
317
+ };
318
+ meta: {
319
+ type: PropType<Record<string, any>>;
320
+ };
321
+ busy: {
322
+ type: BooleanConstructor;
323
+ };
324
+ load: {
325
+ type: PropType<import("../../utility/pagination/type").PaginationLoadFn>;
326
+ required: true;
327
+ };
328
+ }>, () => VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
329
+ total: {
330
+ type: NumberConstructor;
331
+ };
332
+ meta: {
333
+ type: PropType<Record<string, any>>;
334
+ };
335
+ busy: {
336
+ type: BooleanConstructor;
337
+ };
338
+ load: {
339
+ type: PropType<import("../../utility/pagination/type").PaginationLoadFn>;
340
+ required: true;
341
+ };
342
+ }>> & Readonly<{}>, {
343
+ busy: boolean;
344
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
345
+ ATitle: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
346
+ icon: {
347
+ type: BooleanConstructor;
348
+ default: boolean;
349
+ };
350
+ iconPosition: {
351
+ type: PropType<"start" | "end">;
352
+ };
353
+ iconClass: {
354
+ type: StringConstructor;
355
+ };
356
+ text: {
357
+ type: StringConstructor;
358
+ };
359
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
360
+ [key: string]: any;
361
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
362
+ [key: string]: any;
363
+ }>[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
364
+ icon: {
365
+ type: BooleanConstructor;
366
+ default: boolean;
367
+ };
368
+ iconPosition: {
369
+ type: PropType<"start" | "end">;
370
+ };
371
+ iconClass: {
372
+ type: StringConstructor;
373
+ };
374
+ text: {
375
+ type: StringConstructor;
376
+ };
377
+ }>> & Readonly<{}>, {
378
+ icon: boolean;
379
+ }, import("vue").SlotsType<{
380
+ default: import("../../utility/title/type").TitleSlotProps;
381
+ }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
382
+ IVuelidate: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
383
+ validation: {
384
+ type: PropType<Record<string, any>>;
385
+ required: true;
386
+ };
387
+ }>, () => import("vue").VNodeArrayChildren, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
388
+ validation: {
389
+ type: PropType<Record<string, any>>;
390
+ required: true;
391
+ };
392
+ }>> & Readonly<{}>, {}, import("vue").SlotsType<{
393
+ default: import("@ilingo/vuelidate").SlotProps;
394
+ }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
395
+ AIdentityProviders: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
396
+ query: {
397
+ type: PropType<import("rapiq").BuildInput<import("@authup/core-kit").IdentityProvider>>;
398
+ default(): {};
399
+ };
400
+ realmId: {
401
+ type: StringConstructor;
402
+ default: any;
403
+ };
404
+ loadOnSetup: {
405
+ type: BooleanConstructor;
406
+ default: boolean;
407
+ };
408
+ loading: {
409
+ type: PropType<boolean | import("../..").ListLoadingOptions<import("@authup/core-kit").IdentityProvider>>;
410
+ default: boolean;
411
+ };
412
+ noMore: {
413
+ type: PropType<boolean | import("../..").ListNoMoreOptions<import("@authup/core-kit").IdentityProvider>>;
414
+ default: boolean;
415
+ };
416
+ footer: {
417
+ type: PropType<boolean | import("../..").ListFooterOptions<import("@authup/core-kit").IdentityProvider>>;
418
+ default: boolean;
419
+ };
420
+ header: {
421
+ type: PropType<boolean | import("../..").ListHeaderOptions<import("@authup/core-kit").IdentityProvider>>;
422
+ default: boolean;
423
+ };
424
+ body: {
425
+ type: PropType<import("../..").ListBodyOptions<import("@authup/core-kit").IdentityProvider>>;
426
+ };
427
+ }>, () => VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("../..").EntityCollectionVEmitOptions<import("@authup/core-kit").IdentityProvider>, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
428
+ query: {
429
+ type: PropType<import("rapiq").BuildInput<import("@authup/core-kit").IdentityProvider>>;
430
+ default(): {};
431
+ };
432
+ realmId: {
433
+ type: StringConstructor;
434
+ default: any;
435
+ };
436
+ loadOnSetup: {
437
+ type: BooleanConstructor;
438
+ default: boolean;
439
+ };
440
+ loading: {
441
+ type: PropType<boolean | import("../..").ListLoadingOptions<import("@authup/core-kit").IdentityProvider>>;
442
+ default: boolean;
443
+ };
444
+ noMore: {
445
+ type: PropType<boolean | import("../..").ListNoMoreOptions<import("@authup/core-kit").IdentityProvider>>;
446
+ default: boolean;
447
+ };
448
+ footer: {
449
+ type: PropType<boolean | import("../..").ListFooterOptions<import("@authup/core-kit").IdentityProvider>>;
450
+ default: boolean;
451
+ };
452
+ header: {
453
+ type: PropType<boolean | import("../..").ListHeaderOptions<import("@authup/core-kit").IdentityProvider>>;
454
+ default: boolean;
455
+ };
456
+ body: {
457
+ type: PropType<import("../..").ListBodyOptions<import("@authup/core-kit").IdentityProvider>>;
458
+ };
459
+ }>> & Readonly<{
460
+ onUpdated?: (item: import("@authup/core-kit").IdentityProvider) => any;
461
+ onDeleted?: (item: import("@authup/core-kit").IdentityProvider) => any;
462
+ onCreated?: (item: import("@authup/core-kit").IdentityProvider) => any;
463
+ }>, {
464
+ footer: boolean;
465
+ header: boolean;
466
+ query: import("rapiq").BuildInput<import("@authup/core-kit").IdentityProvider>;
467
+ realmId: string;
468
+ loadOnSetup: boolean;
469
+ loading: boolean;
470
+ noMore: boolean;
471
+ }, import("vue").SlotsType<import("../..").EntityCollectionVSlots<import("@authup/core-kit").IdentityProvider>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
472
+ AIdentityProviderIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
473
+ entity: {
474
+ type: PropType<import("@authup/core-kit").IdentityProvider>;
475
+ required: true;
476
+ };
477
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
478
+ [key: string]: any;
479
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
480
+ entity: {
481
+ type: PropType<import("@authup/core-kit").IdentityProvider>;
482
+ required: true;
483
+ };
484
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
485
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
486
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
487
+ export default _default;
488
+ //# sourceMappingURL=Authorize.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Authorize.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/Authorize.vue"],"names":[],"mappings":"AAoJA,OAAO,KAAK,EACR,MAAM,EAAE,8BAA8B,EAAE,KAAK,EAChD,MAAM,kBAAkB,CAAC;AAE1B,OAAO,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;;;cA+BpB,QAAQ,CAAC,8BAA8B,CAAC;;;cAGxC,QAAQ,CAAC,MAAM,CAAC;;;;;;cAMjB,QAAQ,CAAC,KAAK,EAAE,CAAC;;;cAGhB,QAAQ,CAAC,KAAK,CAAC;;;;;;cAZf,QAAQ,CAAC,8BAA8B,CAAC;;;cAGxC,QAAQ,CAAC,MAAM,CAAC;;;;;;cAMjB,QAAQ,CAAC,KAAK,EAAE,CAAC;;;cAGhB,QAAQ,CAAC,KAAK,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AApB3C,wBA+FG"}
@@ -0,0 +1,83 @@
1
+ import type { Client, OAuth2AuthorizationCodeRequest, Scope } from '@authup/core-kit';
2
+ import type { PropType } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ client: {
5
+ type: PropType<Client>;
6
+ required: true;
7
+ };
8
+ scopes: {
9
+ type: PropType<Scope[]>;
10
+ };
11
+ codeRequest: {
12
+ type: PropType<OAuth2AuthorizationCodeRequest>;
13
+ required: true;
14
+ };
15
+ }>, {
16
+ authorize: () => Promise<void>;
17
+ abort: () => void;
18
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
19
+ client: {
20
+ type: PropType<Client>;
21
+ required: true;
22
+ };
23
+ scopes: {
24
+ type: PropType<Scope[]>;
25
+ };
26
+ codeRequest: {
27
+ type: PropType<OAuth2AuthorizationCodeRequest>;
28
+ required: true;
29
+ };
30
+ }>> & Readonly<{}>, {}, {}, {
31
+ AuthorizeScopes: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
32
+ client: {
33
+ type: PropType<Client>;
34
+ required: true;
35
+ };
36
+ scopesAvailable: {
37
+ type: PropType<Scope[]>;
38
+ };
39
+ scopesRequested: {
40
+ type: PropType<string[] | string>;
41
+ };
42
+ }>, {
43
+ scopesRequestedNormalized: import("vue").ComputedRef<string[]>;
44
+ scopesAvailableNormalized: import("vue").Ref<any[], any[]>;
45
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
46
+ client: {
47
+ type: PropType<Client>;
48
+ required: true;
49
+ };
50
+ scopesAvailable: {
51
+ type: PropType<Scope[]>;
52
+ };
53
+ scopesRequested: {
54
+ type: PropType<string[] | string>;
55
+ };
56
+ }>> & Readonly<{}>, {}, {}, {
57
+ AuthorizeScope: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
58
+ entity: {
59
+ type: PropType<Scope>;
60
+ required: true;
61
+ };
62
+ requested: {
63
+ type: PropType<string[]>;
64
+ default: () => any[];
65
+ };
66
+ }>, {
67
+ isEnabled: import("vue").ComputedRef<boolean>;
68
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
69
+ entity: {
70
+ type: PropType<Scope>;
71
+ required: true;
72
+ };
73
+ requested: {
74
+ type: PropType<string[]>;
75
+ default: () => any[];
76
+ };
77
+ }>> & Readonly<{}>, {
78
+ requested: string[];
79
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
80
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
81
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
82
+ export default _default;
83
+ //# sourceMappingURL=AuthorizeForm.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AuthorizeForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/AuthorizeForm.vue"],"names":[],"mappings":"AA4JA,OAAO,KAAK,EAAE,MAAM,EAAE,8BAA8B,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACtF,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;cASR,QAAQ,CAAC,MAAM,CAAC;;;;cAIjB,QAAQ,CAAC,KAAK,EAAE,CAAC;;;cAGhB,QAAQ,CAAC,8BAA8B,CAAC;;;;;;;;cAPxC,QAAQ,CAAC,MAAM,CAAC;;;;cAIjB,QAAQ,CAAC,KAAK,EAAE,CAAC;;;cAGhB,QAAQ,CAAC,8BAA8B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAXpE,wBA+DG"}
@@ -0,0 +1,27 @@
1
+ import type { Scope } from '@authup/core-kit';
2
+ import type { PropType } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ entity: {
5
+ type: PropType<Scope>;
6
+ required: true;
7
+ };
8
+ requested: {
9
+ type: PropType<string[]>;
10
+ default: () => any[];
11
+ };
12
+ }>, {
13
+ isEnabled: import("vue").ComputedRef<boolean>;
14
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
+ entity: {
16
+ type: PropType<Scope>;
17
+ required: true;
18
+ };
19
+ requested: {
20
+ type: PropType<string[]>;
21
+ default: () => any[];
22
+ };
23
+ }>> & Readonly<{}>, {
24
+ requested: string[];
25
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
26
+ export default _default;
27
+ //# sourceMappingURL=AuthorizeScope.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AuthorizeScope.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/AuthorizeScope.vue"],"names":[],"mappings":"AAqDA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;cAMR,QAAQ,CAAC,KAAK,CAAC;;;;cAIhB,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;;;;cAJjB,QAAQ,CAAC,KAAK,CAAC;;;;cAIhB,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;;;AAP7C,wBAkBG"}
@@ -0,0 +1,54 @@
1
+ import type { Client, Scope } from '@authup/core-kit';
2
+ import type { PropType } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ client: {
5
+ type: PropType<Client>;
6
+ required: true;
7
+ };
8
+ scopesAvailable: {
9
+ type: PropType<Scope[]>;
10
+ };
11
+ scopesRequested: {
12
+ type: PropType<string[] | string>;
13
+ };
14
+ }>, {
15
+ scopesRequestedNormalized: import("vue").ComputedRef<string[]>;
16
+ scopesAvailableNormalized: import("vue").Ref<any[], any[]>;
17
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
18
+ client: {
19
+ type: PropType<Client>;
20
+ required: true;
21
+ };
22
+ scopesAvailable: {
23
+ type: PropType<Scope[]>;
24
+ };
25
+ scopesRequested: {
26
+ type: PropType<string[] | string>;
27
+ };
28
+ }>> & Readonly<{}>, {}, {}, {
29
+ AuthorizeScope: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
30
+ entity: {
31
+ type: PropType<Scope>;
32
+ required: true;
33
+ };
34
+ requested: {
35
+ type: PropType<string[]>;
36
+ default: () => any[];
37
+ };
38
+ }>, {
39
+ isEnabled: import("vue").ComputedRef<boolean>;
40
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
41
+ entity: {
42
+ type: PropType<Scope>;
43
+ required: true;
44
+ };
45
+ requested: {
46
+ type: PropType<string[]>;
47
+ default: () => any[];
48
+ };
49
+ }>> & Readonly<{}>, {
50
+ requested: string[];
51
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
52
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
53
+ export default _default;
54
+ //# sourceMappingURL=AuthorizeScopes.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AuthorizeScopes.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/AuthorizeScopes.vue"],"names":[],"mappings":"AA4FA,OAAO,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAEtD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;cASR,QAAQ,CAAC,MAAM,CAAC;;;;cAIjB,QAAQ,CAAC,KAAK,EAAE,CAAC;;;cAGP,QAAQ,CAAC,MAAM,EAAE,GAAG,MAAM,CAAC;;;;;;;cAPpC,QAAQ,CAAC,MAAM,CAAC;;;;cAIjB,QAAQ,CAAC,KAAK,EAAE,CAAC;;;cAGP,QAAQ,CAAC,MAAM,EAAE,GAAG,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;AAXhE,wBAuDG"}