@authup/client-web-kit 1.0.0-beta.27 → 1.0.0-beta.29
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/client/AClientForm.vue.d.ts +570 -0
- package/dist/components/entities/client/AClientForm.vue.d.ts.map +1 -0
- package/dist/components/entities/client/index.d.ts +1 -1
- package/dist/components/entities/client/index.d.ts.map +1 -1
- package/dist/components/entities/client-role/AClientRoleAssignments.d.ts +2 -0
- package/dist/components/entities/client-role/AClientRoleAssignments.d.ts.map +1 -1
- package/dist/components/entities/identity-provider/AIdentityProviderPicker.vue.d.ts +3 -2
- package/dist/components/entities/identity-provider/AIdentityProviderPicker.vue.d.ts.map +1 -1
- package/dist/components/entities/permission/APermissionCheck.d.ts +3 -3
- package/dist/components/entities/permission/APermissionCheck.d.ts.map +1 -1
- package/dist/components/entities/policy/APolicyBasicForm.vue.d.ts +3 -2
- package/dist/components/entities/policy/APolicyBasicForm.vue.d.ts.map +1 -1
- package/dist/components/entities/policy/APolicyForm.vue.d.ts +15 -14
- package/dist/components/entities/policy/APolicyForm.vue.d.ts.map +1 -1
- package/dist/components/entities/policy/APolicyTypePicker.vue.d.ts +3 -2
- package/dist/components/entities/policy/APolicyTypePicker.vue.d.ts.map +1 -1
- package/dist/components/entities/policy/attribute-names/AAttributeNamesPolicyForm.vue.d.ts +5 -4
- package/dist/components/entities/policy/attribute-names/AAttributeNamesPolicyForm.vue.d.ts.map +1 -1
- package/dist/components/entities/policy/composite/ACompositePolicyForm.vue.d.ts +3 -2
- package/dist/components/entities/policy/composite/ACompositePolicyForm.vue.d.ts.map +1 -1
- package/dist/components/entities/policy/date/ADatePolicyForm.vue.d.ts +3 -2
- package/dist/components/entities/policy/date/ADatePolicyForm.vue.d.ts.map +1 -1
- package/dist/components/entities/policy/identity/AIdentityPolicyForm.vue.d.ts +5 -4
- package/dist/components/entities/policy/identity/AIdentityPolicyForm.vue.d.ts.map +1 -1
- package/dist/components/entities/policy/realm-match/ARealmMatchPolicyForm.vue.d.ts +5 -4
- package/dist/components/entities/policy/realm-match/ARealmMatchPolicyForm.vue.d.ts.map +1 -1
- package/dist/components/entities/policy/time/ATimePolicyForm.vue.d.ts +3 -2
- package/dist/components/entities/policy/time/ATimePolicyForm.vue.d.ts.map +1 -1
- package/dist/components/entities/user/AUserForm.d.ts.map +1 -1
- package/dist/components/utility/entity/record/module.d.ts.map +1 -1
- package/dist/components/utility/form-input-list/AFormInputList.vue.d.ts +5 -4
- package/dist/components/utility/form-input-list/AFormInputList.vue.d.ts.map +1 -1
- package/dist/components/utility/form-input-list/AFormInputListItem.vue.d.ts +3 -2
- package/dist/components/utility/form-input-list/AFormInputListItem.vue.d.ts.map +1 -1
- package/dist/components/workflows/Login.vue.d.ts +3 -2
- package/dist/components/workflows/Login.vue.d.ts.map +1 -1
- package/dist/components/workflows/authorize/Authorize.vue.d.ts +30 -29
- package/dist/components/workflows/authorize/Authorize.vue.d.ts.map +1 -1
- package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts +3 -2
- package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts.map +1 -1
- package/dist/components/workflows/authorize/AuthorizeScope.vue.d.ts +3 -2
- package/dist/components/workflows/authorize/AuthorizeScope.vue.d.ts.map +1 -1
- package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts +3 -2
- package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts.map +1 -1
- package/dist/components/workflows/authorize/AuthorizeText.vue.d.ts +3 -2
- package/dist/components/workflows/authorize/AuthorizeText.vue.d.ts.map +1 -1
- package/dist/core/permission-check/module.d.ts.map +1 -1
- package/dist/core/store/create.d.ts +18 -16
- package/dist/core/store/create.d.ts.map +1 -1
- package/dist/core/translator/constants.d.ts +3 -1
- package/dist/core/translator/constants.d.ts.map +1 -1
- package/dist/core/translator/de/client.d.ts.map +1 -1
- package/dist/core/translator/en/client.d.ts.map +1 -1
- package/dist/index.css +11 -11
- package/dist/index.mjs +1693 -1983
- package/dist/index.mjs.map +1 -1
- package/package.json +28 -27
- package/dist/components/entities/client/AClientForm.d.ts +0 -43
- package/dist/components/entities/client/AClientForm.d.ts.map +0 -1
- package/dist/index.cjs +0 -10498
- package/dist/index.cjs.map +0 -1
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { Client, OAuth2AuthorizationCodeRequest, Scope } from '@authup/core-kit';
|
|
2
2
|
import type { PropType, VNodeChild } from 'vue';
|
|
3
|
-
declare const _default:
|
|
3
|
+
declare const _default: typeof __VLS_export;
|
|
4
|
+
export default _default;
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
6
|
codeRequest: {
|
|
5
7
|
type: PropType<OAuth2AuthorizationCodeRequest>;
|
|
6
8
|
};
|
|
@@ -231,23 +233,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
231
233
|
default: boolean;
|
|
232
234
|
};
|
|
233
235
|
loading: {
|
|
234
|
-
type: PropType<boolean | import("
|
|
236
|
+
type: PropType<boolean | import("../../index.ts").ListLoadingOptions<import("@authup/core-kit").Realm>>;
|
|
235
237
|
default: boolean;
|
|
236
238
|
};
|
|
237
239
|
noMore: {
|
|
238
|
-
type: PropType<boolean | import("
|
|
240
|
+
type: PropType<boolean | import("../../index.ts").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
|
|
239
241
|
default: boolean;
|
|
240
242
|
};
|
|
241
243
|
footer: {
|
|
242
|
-
type: PropType<boolean | import("
|
|
244
|
+
type: PropType<boolean | import("../../index.ts").ListFooterOptions<import("@authup/core-kit").Realm>>;
|
|
243
245
|
default: boolean;
|
|
244
246
|
};
|
|
245
247
|
header: {
|
|
246
|
-
type: PropType<boolean | import("
|
|
248
|
+
type: PropType<boolean | import("../../index.ts").ListHeaderOptions<import("@authup/core-kit").Realm>>;
|
|
247
249
|
default: boolean;
|
|
248
250
|
};
|
|
249
251
|
body: {
|
|
250
|
-
type: PropType<import("
|
|
252
|
+
type: PropType<import("../../index.ts").ListBodyOptions<import("@authup/core-kit").Realm>>;
|
|
251
253
|
};
|
|
252
254
|
value: {
|
|
253
255
|
type: PropType<string[] | string | null>;
|
|
@@ -259,7 +261,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
259
261
|
[key: string]: any;
|
|
260
262
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
261
263
|
change: (values: string[]) => true;
|
|
262
|
-
} & import("
|
|
264
|
+
} & import("../../index.ts").EntityCollectionVEmitOptions<import("@authup/core-kit").Realm>, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
263
265
|
query: {
|
|
264
266
|
type: PropType<import("rapiq").BuildInput<import("@authup/core-kit").Realm>>;
|
|
265
267
|
default(): {};
|
|
@@ -273,23 +275,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
273
275
|
default: boolean;
|
|
274
276
|
};
|
|
275
277
|
loading: {
|
|
276
|
-
type: PropType<boolean | import("
|
|
278
|
+
type: PropType<boolean | import("../../index.ts").ListLoadingOptions<import("@authup/core-kit").Realm>>;
|
|
277
279
|
default: boolean;
|
|
278
280
|
};
|
|
279
281
|
noMore: {
|
|
280
|
-
type: PropType<boolean | import("
|
|
282
|
+
type: PropType<boolean | import("../../index.ts").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
|
|
281
283
|
default: boolean;
|
|
282
284
|
};
|
|
283
285
|
footer: {
|
|
284
|
-
type: PropType<boolean | import("
|
|
286
|
+
type: PropType<boolean | import("../../index.ts").ListFooterOptions<import("@authup/core-kit").Realm>>;
|
|
285
287
|
default: boolean;
|
|
286
288
|
};
|
|
287
289
|
header: {
|
|
288
|
-
type: PropType<boolean | import("
|
|
290
|
+
type: PropType<boolean | import("../../index.ts").ListHeaderOptions<import("@authup/core-kit").Realm>>;
|
|
289
291
|
default: boolean;
|
|
290
292
|
};
|
|
291
293
|
body: {
|
|
292
|
-
type: PropType<import("
|
|
294
|
+
type: PropType<import("../../index.ts").ListBodyOptions<import("@authup/core-kit").Realm>>;
|
|
293
295
|
};
|
|
294
296
|
value: {
|
|
295
297
|
type: PropType<string[] | string | null>;
|
|
@@ -310,7 +312,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
310
312
|
loadOnSetup: boolean;
|
|
311
313
|
loading: boolean;
|
|
312
314
|
noMore: boolean;
|
|
313
|
-
}, import("vue").SlotsType<import("
|
|
315
|
+
}, import("vue").SlotsType<import("../../index.ts").EntityPickerVSlots<import("@authup/core-kit").Realm>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
314
316
|
APagination: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
315
317
|
total: {
|
|
316
318
|
type: NumberConstructor;
|
|
@@ -322,7 +324,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
322
324
|
type: BooleanConstructor;
|
|
323
325
|
};
|
|
324
326
|
load: {
|
|
325
|
-
type: PropType<import("../../utility/pagination/type").PaginationLoadFn>;
|
|
327
|
+
type: PropType<import("../../utility/pagination/type.ts").PaginationLoadFn>;
|
|
326
328
|
required: true;
|
|
327
329
|
};
|
|
328
330
|
}>, () => VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -336,7 +338,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
336
338
|
type: BooleanConstructor;
|
|
337
339
|
};
|
|
338
340
|
load: {
|
|
339
|
-
type: PropType<import("../../utility/pagination/type").PaginationLoadFn>;
|
|
341
|
+
type: PropType<import("../../utility/pagination/type.ts").PaginationLoadFn>;
|
|
340
342
|
required: true;
|
|
341
343
|
};
|
|
342
344
|
}>> & Readonly<{}>, {
|
|
@@ -377,7 +379,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
377
379
|
}>> & Readonly<{}>, {
|
|
378
380
|
icon: boolean;
|
|
379
381
|
}, import("vue").SlotsType<{
|
|
380
|
-
default: import("../../utility/title/type").TitleSlotProps;
|
|
382
|
+
default: import("../../utility/title/type.ts").TitleSlotProps;
|
|
381
383
|
}>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
382
384
|
IVuelidate: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
383
385
|
validation: {
|
|
@@ -406,25 +408,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
406
408
|
default: boolean;
|
|
407
409
|
};
|
|
408
410
|
loading: {
|
|
409
|
-
type: PropType<boolean | import("
|
|
411
|
+
type: PropType<boolean | import("../../index.ts").ListLoadingOptions<import("@authup/core-kit").IdentityProvider>>;
|
|
410
412
|
default: boolean;
|
|
411
413
|
};
|
|
412
414
|
noMore: {
|
|
413
|
-
type: PropType<boolean | import("
|
|
415
|
+
type: PropType<boolean | import("../../index.ts").ListNoMoreOptions<import("@authup/core-kit").IdentityProvider>>;
|
|
414
416
|
default: boolean;
|
|
415
417
|
};
|
|
416
418
|
footer: {
|
|
417
|
-
type: PropType<boolean | import("
|
|
419
|
+
type: PropType<boolean | import("../../index.ts").ListFooterOptions<import("@authup/core-kit").IdentityProvider>>;
|
|
418
420
|
default: boolean;
|
|
419
421
|
};
|
|
420
422
|
header: {
|
|
421
|
-
type: PropType<boolean | import("
|
|
423
|
+
type: PropType<boolean | import("../../index.ts").ListHeaderOptions<import("@authup/core-kit").IdentityProvider>>;
|
|
422
424
|
default: boolean;
|
|
423
425
|
};
|
|
424
426
|
body: {
|
|
425
|
-
type: PropType<import("
|
|
427
|
+
type: PropType<import("../../index.ts").ListBodyOptions<import("@authup/core-kit").IdentityProvider>>;
|
|
426
428
|
};
|
|
427
|
-
}>, () => VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("
|
|
429
|
+
}>, () => VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("../../index.ts").EntityCollectionVEmitOptions<import("@authup/core-kit").IdentityProvider>, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
428
430
|
query: {
|
|
429
431
|
type: PropType<import("rapiq").BuildInput<import("@authup/core-kit").IdentityProvider>>;
|
|
430
432
|
default(): {};
|
|
@@ -438,23 +440,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
438
440
|
default: boolean;
|
|
439
441
|
};
|
|
440
442
|
loading: {
|
|
441
|
-
type: PropType<boolean | import("
|
|
443
|
+
type: PropType<boolean | import("../../index.ts").ListLoadingOptions<import("@authup/core-kit").IdentityProvider>>;
|
|
442
444
|
default: boolean;
|
|
443
445
|
};
|
|
444
446
|
noMore: {
|
|
445
|
-
type: PropType<boolean | import("
|
|
447
|
+
type: PropType<boolean | import("../../index.ts").ListNoMoreOptions<import("@authup/core-kit").IdentityProvider>>;
|
|
446
448
|
default: boolean;
|
|
447
449
|
};
|
|
448
450
|
footer: {
|
|
449
|
-
type: PropType<boolean | import("
|
|
451
|
+
type: PropType<boolean | import("../../index.ts").ListFooterOptions<import("@authup/core-kit").IdentityProvider>>;
|
|
450
452
|
default: boolean;
|
|
451
453
|
};
|
|
452
454
|
header: {
|
|
453
|
-
type: PropType<boolean | import("
|
|
455
|
+
type: PropType<boolean | import("../../index.ts").ListHeaderOptions<import("@authup/core-kit").IdentityProvider>>;
|
|
454
456
|
default: boolean;
|
|
455
457
|
};
|
|
456
458
|
body: {
|
|
457
|
-
type: PropType<import("
|
|
459
|
+
type: PropType<import("../../index.ts").ListBodyOptions<import("@authup/core-kit").IdentityProvider>>;
|
|
458
460
|
};
|
|
459
461
|
}>> & Readonly<{
|
|
460
462
|
onUpdated?: (item: import("@authup/core-kit").IdentityProvider) => any;
|
|
@@ -468,7 +470,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
468
470
|
loadOnSetup: boolean;
|
|
469
471
|
loading: boolean;
|
|
470
472
|
noMore: boolean;
|
|
471
|
-
}, import("vue").SlotsType<import("
|
|
473
|
+
}, import("vue").SlotsType<import("../../index.ts").EntityCollectionVSlots<import("@authup/core-kit").IdentityProvider>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
472
474
|
AIdentityProviderIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
473
475
|
entity: {
|
|
474
476
|
type: PropType<import("@authup/core-kit").IdentityProvider>;
|
|
@@ -484,5 +486,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
484
486
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
485
487
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
486
488
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
487
|
-
export default _default;
|
|
488
489
|
//# sourceMappingURL=Authorize.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Authorize.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/Authorize.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Authorize.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/Authorize.vue"],"names":[],"mappings":"AAqJA,OAAO,KAAK,EACR,MAAM,EAAE,8BAA8B,EAAE,KAAK,EAChD,MAAM,kBAAkB,CAAC;AAE1B,OAAO,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;wBAuB3B,OAAO,YAAY;AAAxC,wBAAyC;AAazC,QAAA,MAAM,YAAY;;cAQU,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEA2EzC,CAAC"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { Client, OAuth2AuthorizationCodeRequest, Scope } from '@authup/core-kit';
|
|
2
2
|
import type { PropType } from 'vue';
|
|
3
|
-
declare const _default:
|
|
3
|
+
declare const _default: typeof __VLS_export;
|
|
4
|
+
export default _default;
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
6
|
client: {
|
|
5
7
|
type: PropType<Client>;
|
|
6
8
|
required: true;
|
|
@@ -79,5 +81,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
79
81
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
80
82
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
81
83
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
82
|
-
export default _default;
|
|
83
84
|
//# sourceMappingURL=AuthorizeForm.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AuthorizeForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/AuthorizeForm.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AuthorizeForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/AuthorizeForm.vue"],"names":[],"mappings":"AA6JA,OAAO,KAAK,EAAE,MAAM,EAAE,8BAA8B,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACtF,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;wBAKf,OAAO,YAAY;AAAxC,wBAAyC;AA8IzC,QAAA,MAAM,YAAY;;cAIU,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEAoDlE,CAAC"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { Scope } from '@authup/core-kit';
|
|
2
2
|
import type { PropType } from 'vue';
|
|
3
|
-
declare const _default:
|
|
3
|
+
declare const _default: typeof __VLS_export;
|
|
4
|
+
export default _default;
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
6
|
entity: {
|
|
5
7
|
type: PropType<Scope>;
|
|
6
8
|
required: true;
|
|
@@ -23,5 +25,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
23
25
|
}>> & Readonly<{}>, {
|
|
24
26
|
requested: string[];
|
|
25
27
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
26
|
-
export default _default;
|
|
27
28
|
//# sourceMappingURL=AuthorizeScope.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AuthorizeScope.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/AuthorizeScope.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AuthorizeScope.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/AuthorizeScope.vue"],"names":[],"mappings":"AAsDA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;wBAGf,OAAO,YAAY;AAAxC,wBAAyC;AAwCzC,QAAA,MAAM,YAAY;;cAGU,QAAQ,CAAC,KAAK,CAAC;;;;cAIhB,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;;;;cAJjB,QAAQ,CAAC,KAAK,CAAC;;;;cAIhB,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;;4EAW3C,CAAC"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { Client, Scope } from '@authup/core-kit';
|
|
2
2
|
import type { PropType } from 'vue';
|
|
3
|
-
declare const _default:
|
|
3
|
+
declare const _default: typeof __VLS_export;
|
|
4
|
+
export default _default;
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
6
|
client: {
|
|
5
7
|
type: PropType<Client>;
|
|
6
8
|
required: true;
|
|
@@ -50,5 +52,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
50
52
|
requested: string[];
|
|
51
53
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
52
54
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
53
|
-
export default _default;
|
|
54
55
|
//# sourceMappingURL=AuthorizeScopes.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AuthorizeScopes.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/AuthorizeScopes.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AuthorizeScopes.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/AuthorizeScopes.vue"],"names":[],"mappings":"AA6FA,OAAO,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAEtD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;wBAKf,OAAO,YAAY;AAAxC,wBAAyC;AAiDzC,QAAA,MAAM,YAAY;;cAIU,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;;;;;;;;;;;;;;;;;;;;;;;;;;oEA4C9D,CAAC"}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: typeof __VLS_export;
|
|
2
|
+
export default _default;
|
|
3
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
isError: {
|
|
3
5
|
type: BooleanConstructor;
|
|
4
6
|
};
|
|
@@ -17,5 +19,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
17
19
|
}>> & Readonly<{}>, {
|
|
18
20
|
isError: boolean;
|
|
19
21
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
20
|
-
export default _default;
|
|
21
22
|
//# sourceMappingURL=AuthorizeText.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AuthorizeText.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/AuthorizeText.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AuthorizeText.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/workflows/authorize/AuthorizeText.vue"],"names":[],"mappings":"wBA0CqB,OAAO,YAAY;AAAxC,wBAAyC;AAwCzC,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;4EAUhB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../src/core/permission-check/module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../../src/core/permission-check/module.ts"],"names":[],"mappings":"AAeA,OAAO,KAAK,EAAE,2BAA2B,EAAE,wCAAwC,EAAE,MAAM,SAAS,CAAC;AAErG,wBAAgB,iCAAiC,CAC7C,GAAG,GAAE,wCAA6C,GAClD,2BAA2B,CAoF9B"}
|
|
@@ -49,7 +49,7 @@ export declare function createStore(context: StoreCreateContext): {
|
|
|
49
49
|
first_name: string | null;
|
|
50
50
|
last_name: string | null;
|
|
51
51
|
display_name: string | null;
|
|
52
|
-
email: string
|
|
52
|
+
email: string;
|
|
53
53
|
password: string | null;
|
|
54
54
|
avatar: string | null;
|
|
55
55
|
cover: string | null;
|
|
@@ -65,20 +65,23 @@ export declare function createStore(context: StoreCreateContext): {
|
|
|
65
65
|
client_id: import("@authup/core-kit").Client["id"] | null;
|
|
66
66
|
client: {
|
|
67
67
|
id: string;
|
|
68
|
+
active: boolean;
|
|
68
69
|
built_in: boolean;
|
|
70
|
+
is_confidential: boolean;
|
|
69
71
|
name: string;
|
|
70
72
|
display_name: string | null;
|
|
71
73
|
description: string | null;
|
|
72
|
-
secret: string;
|
|
74
|
+
secret: string | null;
|
|
75
|
+
secret_hashed: boolean;
|
|
76
|
+
secret_encrypted: boolean;
|
|
73
77
|
redirect_uri: string | null;
|
|
74
78
|
grant_types: string | null;
|
|
75
79
|
scope: string | null;
|
|
76
80
|
base_url: string | null;
|
|
77
81
|
root_url: string | null;
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
realm_id: Realm["id"] | null;
|
|
82
|
+
created_at: string;
|
|
83
|
+
updated_at: string;
|
|
84
|
+
realm_id: Realm["id"];
|
|
82
85
|
realm: {
|
|
83
86
|
id: string;
|
|
84
87
|
name: string;
|
|
@@ -88,8 +91,6 @@ export declare function createStore(context: StoreCreateContext): {
|
|
|
88
91
|
created_at: string;
|
|
89
92
|
updated_at: string;
|
|
90
93
|
};
|
|
91
|
-
user_id: User["id"] | null;
|
|
92
|
-
user: /*elided*/ any;
|
|
93
94
|
};
|
|
94
95
|
realm_id: Realm["id"];
|
|
95
96
|
realm: {
|
|
@@ -109,7 +110,7 @@ export declare function createStore(context: StoreCreateContext): {
|
|
|
109
110
|
first_name: string | null;
|
|
110
111
|
last_name: string | null;
|
|
111
112
|
display_name: string | null;
|
|
112
|
-
email: string
|
|
113
|
+
email: string;
|
|
113
114
|
password: string | null;
|
|
114
115
|
avatar: string | null;
|
|
115
116
|
cover: string | null;
|
|
@@ -125,20 +126,23 @@ export declare function createStore(context: StoreCreateContext): {
|
|
|
125
126
|
client_id: import("@authup/core-kit").Client["id"] | null;
|
|
126
127
|
client: {
|
|
127
128
|
id: string;
|
|
129
|
+
active: boolean;
|
|
128
130
|
built_in: boolean;
|
|
131
|
+
is_confidential: boolean;
|
|
129
132
|
name: string;
|
|
130
133
|
display_name: string | null;
|
|
131
134
|
description: string | null;
|
|
132
|
-
secret: string;
|
|
135
|
+
secret: string | null;
|
|
136
|
+
secret_hashed: boolean;
|
|
137
|
+
secret_encrypted: boolean;
|
|
133
138
|
redirect_uri: string | null;
|
|
134
139
|
grant_types: string | null;
|
|
135
140
|
scope: string | null;
|
|
136
141
|
base_url: string | null;
|
|
137
142
|
root_url: string | null;
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
realm_id: Realm["id"] | null;
|
|
143
|
+
created_at: string;
|
|
144
|
+
updated_at: string;
|
|
145
|
+
realm_id: Realm["id"];
|
|
142
146
|
realm: {
|
|
143
147
|
id: string;
|
|
144
148
|
name: string;
|
|
@@ -148,8 +152,6 @@ export declare function createStore(context: StoreCreateContext): {
|
|
|
148
152
|
created_at: string;
|
|
149
153
|
updated_at: string;
|
|
150
154
|
};
|
|
151
|
-
user_id: User["id"] | null;
|
|
152
|
-
user: /*elided*/ any;
|
|
153
155
|
};
|
|
154
156
|
realm_id: Realm["id"];
|
|
155
157
|
realm: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/core/store/create.ts"],"names":[],"mappings":"AAOA,OAAO,EACH,iBAAiB,EAGpB,MAAM,gBAAgB,CAAC;AAKxB,OAAO,KAAK,EACR,wBAAwB,EAE3B,MAAM,eAAe,CAAC;AACvB,OAAO,KAAK,EACR,KAAK,EACL,IAAI,EACP,MAAM,kBAAkB,CAAC;AAM1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAErE,KAAK,OAAO,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC;AAChD,KAAK,QAAQ,CAAC,CAAC,SAAS,OAAO,IAAI,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC,CAAC,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AA8B/F,KAAK,YAAY,GAAG,IAAI,CAAC,KAAK,EAAE,IAAI,GAAG,MAAM,CAAC,CAAC;AAE/C,wBAAgB,WAAW,CAAC,OAAO,EAAE,kBAAkB;;4BAMpB,OAAO;;iBAkRZ,iBAAiB;;;4BAlCR,OAAO,CAAC,IAAI,CAAC;wCA1ClC,wBAAwB;;4BA/LP,MAAM,GAAG,IAAI;;sCAYH,IAAI,GAAG,MAAM,GAAG,MAAM,GAAG,IAAI;;6BAgBtC,MAAM,GAAG,IAAI;;;;;;;;;;;sBAiCpB,YAAY,GAAG,IAAI;;;;;;;;;;gCAUT,YAAY,GAAG,IAAI
|
|
1
|
+
{"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/core/store/create.ts"],"names":[],"mappings":"AAOA,OAAO,EACH,iBAAiB,EAGpB,MAAM,gBAAgB,CAAC;AAKxB,OAAO,KAAK,EACR,wBAAwB,EAE3B,MAAM,eAAe,CAAC;AACvB,OAAO,KAAK,EACR,KAAK,EACL,IAAI,EACP,MAAM,kBAAkB,CAAC;AAM1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAErE,KAAK,OAAO,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC;AAChD,KAAK,QAAQ,CAAC,CAAC,SAAS,OAAO,IAAI,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC,CAAC,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AA8B/F,KAAK,YAAY,GAAG,IAAI,CAAC,KAAK,EAAE,IAAI,GAAG,MAAM,CAAC,CAAC;AAE/C,wBAAgB,WAAW,CAAC,OAAO,EAAE,kBAAkB;;4BAMpB,OAAO;;iBAkRZ,iBAAiB;;;4BAlCR,OAAO,CAAC,IAAI,CAAC;wCA1ClC,wBAAwB;;4BA/LP,MAAM,GAAG,IAAI;;sCAYH,IAAI,GAAG,MAAM,GAAG,MAAM,GAAG,IAAI;;6BAgBtC,MAAM,GAAG,IAAI;;;;;;;;;;;sBAiCpB,YAAY,GAAG,IAAI;;;;;;;;;;gCAUT,YAAY,GAAG,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBA7B9B,IAAI,GAAG,IAAI;EA4RtC"}
|
|
@@ -11,7 +11,9 @@ export declare enum TranslatorTranslationClientKey {
|
|
|
11
11
|
NAME_HINT = "nameHint",
|
|
12
12
|
DESCRIPTION_HINT = "descriptionHint",
|
|
13
13
|
REDIRECT_URI_HINT = "redirectURIHint",
|
|
14
|
-
IS_CONFIDENTIAL = "isConfidential"
|
|
14
|
+
IS_CONFIDENTIAL = "isConfidential",
|
|
15
|
+
IS_ACTIVE = "isActive",
|
|
16
|
+
HASH_SECRET = "hashSecret"
|
|
15
17
|
}
|
|
16
18
|
export declare enum TranslatorTranslationDefaultKey {
|
|
17
19
|
ADD = "add",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/core/translator/constants.ts"],"names":[],"mappings":"AAOA,oBAAY,0BAA0B;IAClC,OAAO,YAAY;IAEnB,MAAM,iBAAiB;IAEvB,KAAK,UAAU;IACf,SAAS,cAAc;CAC1B;AAED,oBAAY,6BAA6B;IACrC,OAAO,WAAW;CACrB;AAED,oBAAY,8BAA8B;IACtC,SAAS,aAAa;IACtB,gBAAgB,oBAAoB;IACpC,iBAAiB,oBAAoB;IACrC,eAAe,mBAAmB;
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/core/translator/constants.ts"],"names":[],"mappings":"AAOA,oBAAY,0BAA0B;IAClC,OAAO,YAAY;IAEnB,MAAM,iBAAiB;IAEvB,KAAK,UAAU;IACf,SAAS,cAAc;CAC1B;AAED,oBAAY,6BAA6B;IACrC,OAAO,WAAW;CACrB;AAED,oBAAY,8BAA8B;IACtC,SAAS,aAAa;IACtB,gBAAgB,oBAAoB;IACpC,iBAAiB,oBAAoB;IACrC,eAAe,mBAAmB;IAClC,SAAS,aAAa;IACtB,WAAW,eAAe;CAC7B;AAED,oBAAY,+BAA+B;IACvC,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,MAAM,WAAW;IAEjB,MAAM,WAAW;IACjB,QAAQ,aAAa;IAErB,MAAM,WAAW;IACjB,UAAU,cAAc;IAExB,cAAc,iBAAiB;IAE/B,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,aAAa,iBAAiB;IAC9B,YAAY,gBAAgB;IAC5B,KAAK,UAAU;IACf,WAAW,eAAe;IAC1B,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,kBAAkB,sBAAsB;IACxC,IAAI,SAAS;IACb,WAAW,gBAAgB;IAC3B,WAAW,gBAAgB;IAC3B,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,aAAa,iBAAiB;IAC9B,KAAK,UAAU;CAClB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../src/core/translator/de/client.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAG1C,eAAO,MAAM,iCAAiC,EAAG,
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../src/core/translator/de/client.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAG1C,eAAO,MAAM,iCAAiC,EAAG,WAOhD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../src/core/translator/en/client.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAG1C,eAAO,MAAM,kCAAkC,EAAG,
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../src/core/translator/en/client.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAG1C,eAAO,MAAM,kCAAkC,EAAG,WAOjD,CAAC"}
|
package/dist/index.css
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
|
|
2
|
-
.identity-provider-picker-item[data-v-
|
|
3
|
-
cursor: pointer;
|
|
4
|
-
border-radius: 4px;
|
|
5
|
-
min-width: 120px;
|
|
6
|
-
color: #5b646c;
|
|
7
|
-
background-color: #ececec;
|
|
2
|
+
.identity-provider-picker-item[data-v-af0f282c] {
|
|
3
|
+
cursor: pointer;
|
|
4
|
+
border-radius: 4px;
|
|
5
|
+
min-width: 120px;
|
|
6
|
+
color: #5b646c;
|
|
7
|
+
background-color: #ececec;
|
|
8
8
|
padding: 0.5rem;
|
|
9
9
|
}
|
|
10
|
-
.identity-provider-picker-item.active[data-v-
|
|
11
|
-
.identity-provider-picker-item[data-v-
|
|
12
|
-
.identity-provider-picker-item[data-v-
|
|
13
|
-
background-color: #6d7fcc;
|
|
10
|
+
.identity-provider-picker-item.active[data-v-af0f282c],
|
|
11
|
+
.identity-provider-picker-item[data-v-af0f282c]:hover,
|
|
12
|
+
.identity-provider-picker-item[data-v-af0f282c]:active {
|
|
13
|
+
background-color: #6d7fcc;
|
|
14
14
|
color: #fff;
|
|
15
|
-
}
|
|
15
|
+
}
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
.a-picker-item[data-v-3fa3964f] {
|