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

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 (55) hide show
  1. package/dist/components/entities/client/AClientForm.vue.d.ts +570 -0
  2. package/dist/components/entities/client/AClientForm.vue.d.ts.map +1 -0
  3. package/dist/components/entities/client/index.d.ts +1 -1
  4. package/dist/components/entities/client/index.d.ts.map +1 -1
  5. package/dist/components/entities/identity-provider/AIdentityProviderPicker.vue.d.ts +3 -2
  6. package/dist/components/entities/identity-provider/AIdentityProviderPicker.vue.d.ts.map +1 -1
  7. package/dist/components/entities/policy/APolicyBasicForm.vue.d.ts +3 -2
  8. package/dist/components/entities/policy/APolicyBasicForm.vue.d.ts.map +1 -1
  9. package/dist/components/entities/policy/APolicyForm.vue.d.ts +15 -14
  10. package/dist/components/entities/policy/APolicyForm.vue.d.ts.map +1 -1
  11. package/dist/components/entities/policy/APolicyTypePicker.vue.d.ts +3 -2
  12. package/dist/components/entities/policy/APolicyTypePicker.vue.d.ts.map +1 -1
  13. package/dist/components/entities/policy/attribute-names/AAttributeNamesPolicyForm.vue.d.ts +5 -4
  14. package/dist/components/entities/policy/attribute-names/AAttributeNamesPolicyForm.vue.d.ts.map +1 -1
  15. package/dist/components/entities/policy/composite/ACompositePolicyForm.vue.d.ts +3 -2
  16. package/dist/components/entities/policy/composite/ACompositePolicyForm.vue.d.ts.map +1 -1
  17. package/dist/components/entities/policy/date/ADatePolicyForm.vue.d.ts +3 -2
  18. package/dist/components/entities/policy/date/ADatePolicyForm.vue.d.ts.map +1 -1
  19. package/dist/components/entities/policy/identity/AIdentityPolicyForm.vue.d.ts +5 -4
  20. package/dist/components/entities/policy/identity/AIdentityPolicyForm.vue.d.ts.map +1 -1
  21. package/dist/components/entities/policy/realm-match/ARealmMatchPolicyForm.vue.d.ts +5 -4
  22. package/dist/components/entities/policy/realm-match/ARealmMatchPolicyForm.vue.d.ts.map +1 -1
  23. package/dist/components/entities/policy/time/ATimePolicyForm.vue.d.ts +3 -2
  24. package/dist/components/entities/policy/time/ATimePolicyForm.vue.d.ts.map +1 -1
  25. package/dist/components/entities/user/AUserForm.d.ts.map +1 -1
  26. package/dist/components/utility/form-input-list/AFormInputList.vue.d.ts +5 -4
  27. package/dist/components/utility/form-input-list/AFormInputList.vue.d.ts.map +1 -1
  28. package/dist/components/utility/form-input-list/AFormInputListItem.vue.d.ts +3 -2
  29. package/dist/components/utility/form-input-list/AFormInputListItem.vue.d.ts.map +1 -1
  30. package/dist/components/workflows/Login.vue.d.ts +3 -2
  31. package/dist/components/workflows/Login.vue.d.ts.map +1 -1
  32. package/dist/components/workflows/authorize/Authorize.vue.d.ts +30 -29
  33. package/dist/components/workflows/authorize/Authorize.vue.d.ts.map +1 -1
  34. package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts +3 -2
  35. package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts.map +1 -1
  36. package/dist/components/workflows/authorize/AuthorizeScope.vue.d.ts +3 -2
  37. package/dist/components/workflows/authorize/AuthorizeScope.vue.d.ts.map +1 -1
  38. package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts +3 -2
  39. package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts.map +1 -1
  40. package/dist/components/workflows/authorize/AuthorizeText.vue.d.ts +3 -2
  41. package/dist/components/workflows/authorize/AuthorizeText.vue.d.ts.map +1 -1
  42. package/dist/core/store/create.d.ts +18 -16
  43. package/dist/core/store/create.d.ts.map +1 -1
  44. package/dist/core/translator/constants.d.ts +3 -1
  45. package/dist/core/translator/constants.d.ts.map +1 -1
  46. package/dist/core/translator/de/client.d.ts.map +1 -1
  47. package/dist/core/translator/en/client.d.ts.map +1 -1
  48. package/dist/index.css +11 -11
  49. package/dist/index.mjs +1510 -1823
  50. package/dist/index.mjs.map +1 -1
  51. package/package.json +26 -25
  52. package/dist/components/entities/client/AClientForm.d.ts +0 -43
  53. package/dist/components/entities/client/AClientForm.d.ts.map +0 -1
  54. package/dist/index.cjs +0 -10498
  55. package/dist/index.cjs.map +0 -1
@@ -1,6 +1,8 @@
1
1
  import type { PropType } from 'vue';
2
2
  import type { Policy } from '@authup/core-kit';
3
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
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<Policy>;
6
8
  };
@@ -176,23 +178,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
176
178
  default: boolean;
177
179
  };
178
180
  loading: {
179
- type: PropType<boolean | import("../..").ListLoadingOptions<import("@authup/core-kit").Realm>>;
181
+ type: PropType<boolean | import("../../index.ts").ListLoadingOptions<import("@authup/core-kit").Realm>>;
180
182
  default: boolean;
181
183
  };
182
184
  noMore: {
183
- type: PropType<boolean | import("../..").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
185
+ type: PropType<boolean | import("../../index.ts").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
184
186
  default: boolean;
185
187
  };
186
188
  footer: {
187
- type: PropType<boolean | import("../..").ListFooterOptions<import("@authup/core-kit").Realm>>;
189
+ type: PropType<boolean | import("../../index.ts").ListFooterOptions<import("@authup/core-kit").Realm>>;
188
190
  default: boolean;
189
191
  };
190
192
  header: {
191
- type: PropType<boolean | import("../..").ListHeaderOptions<import("@authup/core-kit").Realm>>;
193
+ type: PropType<boolean | import("../../index.ts").ListHeaderOptions<import("@authup/core-kit").Realm>>;
192
194
  default: boolean;
193
195
  };
194
196
  body: {
195
- type: PropType<import("../..").ListBodyOptions<import("@authup/core-kit").Realm>>;
197
+ type: PropType<import("../../index.ts").ListBodyOptions<import("@authup/core-kit").Realm>>;
196
198
  };
197
199
  value: {
198
200
  type: PropType<string[] | string | null>;
@@ -204,7 +206,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
204
206
  [key: string]: any;
205
207
  }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
206
208
  change: (values: string[]) => true;
207
- } & import("../..").EntityCollectionVEmitOptions<import("@authup/core-kit").Realm>, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
209
+ } & import("../../index.ts").EntityCollectionVEmitOptions<import("@authup/core-kit").Realm>, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
208
210
  query: {
209
211
  type: PropType<import("rapiq").BuildInput<import("@authup/core-kit").Realm>>;
210
212
  default(): {};
@@ -218,23 +220,23 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
218
220
  default: boolean;
219
221
  };
220
222
  loading: {
221
- type: PropType<boolean | import("../..").ListLoadingOptions<import("@authup/core-kit").Realm>>;
223
+ type: PropType<boolean | import("../../index.ts").ListLoadingOptions<import("@authup/core-kit").Realm>>;
222
224
  default: boolean;
223
225
  };
224
226
  noMore: {
225
- type: PropType<boolean | import("../..").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
227
+ type: PropType<boolean | import("../../index.ts").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
226
228
  default: boolean;
227
229
  };
228
230
  footer: {
229
- type: PropType<boolean | import("../..").ListFooterOptions<import("@authup/core-kit").Realm>>;
231
+ type: PropType<boolean | import("../../index.ts").ListFooterOptions<import("@authup/core-kit").Realm>>;
230
232
  default: boolean;
231
233
  };
232
234
  header: {
233
- type: PropType<boolean | import("../..").ListHeaderOptions<import("@authup/core-kit").Realm>>;
235
+ type: PropType<boolean | import("../../index.ts").ListHeaderOptions<import("@authup/core-kit").Realm>>;
234
236
  default: boolean;
235
237
  };
236
238
  body: {
237
- type: PropType<import("../..").ListBodyOptions<import("@authup/core-kit").Realm>>;
239
+ type: PropType<import("../../index.ts").ListBodyOptions<import("@authup/core-kit").Realm>>;
238
240
  };
239
241
  value: {
240
242
  type: PropType<string[] | string | null>;
@@ -255,7 +257,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
255
257
  loadOnSetup: boolean;
256
258
  loading: boolean;
257
259
  noMore: boolean;
258
- }, import("vue").SlotsType<import("../..").EntityPickerVSlots<import("@authup/core-kit").Realm>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
260
+ }, import("vue").SlotsType<import("../../index.ts").EntityPickerVSlots<import("@authup/core-kit").Realm>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
259
261
  VCFormInput: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
260
262
  modelValue: {
261
263
  type: StringConstructor;
@@ -441,5 +443,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
441
443
  }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
442
444
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
443
445
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
444
- export default _default;
445
446
  //# sourceMappingURL=APolicyForm.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"APolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/entities/policy/APolicyForm.vue"],"names":[],"mappings":"AAoIA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAEpC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;;;cAoBnB,QAAQ,CAAC,MAAM,CAAC;;;cAGhB,QAAQ,CAAC,MAAM,CAAC;;;;;;;;;;;;cAHhB,QAAQ,CAAC,MAAM,CAAC;;;cAGhB,QAAQ,CAAC,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAzB5C,GAnH+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAmH/B,GA7GqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+HrC,wBAgFG"}
1
+ {"version":3,"file":"APolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/entities/policy/APolicyForm.vue"],"names":[],"mappings":"AAqIA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAEpC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;wBAgB1B,OAAO,YAAY;AAAxC,wBAAyC;AAyEzC,QAAA,MAAM,YAAY;;cAIU,QAAQ,CAAC,MAAM,CAAC;;;cAGhB,QAAQ,CAAC,MAAM,CAAC;;;;;;;;;;;;cAHhB,QAAQ,CAAC,MAAM,CAAC;;;cAGhB,QAAQ,CAAC,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAlG5C,GApH+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAoH/B,GA9GqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEAyRnC,CAAC"}
@@ -1,6 +1,8 @@
1
1
  import type { PropType } from 'vue';
2
2
  import type { FormSelectOption } from '@vuecs/form-controls';
3
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ declare const _default: typeof __VLS_export;
4
+ export default _default;
5
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
6
  type: {
5
7
  type: StringConstructor;
6
8
  };
@@ -21,5 +23,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
21
23
  }>> & Readonly<{
22
24
  onPick?: (...args: any[]) => any;
23
25
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
24
- export default _default;
25
26
  //# sourceMappingURL=APolicyTypePicker.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"APolicyTypePicker.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/entities/policy/APolicyTypePicker.vue"],"names":[],"mappings":"AAgGA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAEpC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;;;;;;cASlC,QAAQ,CAAC,CAAC,gBAAgB,GAAG,MAAM,CAAC,EAAE,CAAC;;;;;gBA4BvC,MAAM;;;;;;cA5BN,QAAQ,CAAC,CAAC,gBAAgB,GAAG,MAAM,CAAC,EAAE,CAAC;;;;;AANlE,wBA6CG"}
1
+ {"version":3,"file":"APolicyTypePicker.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/entities/policy/APolicyTypePicker.vue"],"names":[],"mappings":"AAiGA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAEpC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;wBAGxC,OAAO,YAAY;AAAxC,wBAAyC;AA0DzC,QAAA,MAAM,YAAY;;;;;cAMS,QAAQ,CAAC,CAAC,gBAAgB,GAAG,MAAM,CAAC,EAAE,CAAC;;;;;gBA4BvC,MAAM;;;;;;cA5BN,QAAQ,CAAC,CAAC,gBAAgB,GAAG,MAAM,CAAC,EAAE,CAAC;;;;iFAuChE,CAAC"}
@@ -1,6 +1,8 @@
1
1
  import type { Policy } from '@authup/core-kit';
2
2
  import type { PropType } from 'vue';
3
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
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<Partial<Policy>>;
6
8
  };
@@ -73,14 +75,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
73
75
  }, {}, {
74
76
  ATranslationDefault: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
75
77
  name: {
76
- type: PropType<`${import("../../../..").TranslatorTranslationDefaultKey}`>;
78
+ type: PropType<`${import("../../../../index.ts").TranslatorTranslationDefaultKey}`>;
77
79
  required: true;
78
80
  };
79
81
  }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
80
82
  [key: string]: any;
81
83
  }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
82
84
  name: {
83
- type: PropType<`${import("../../../..").TranslatorTranslationDefaultKey}`>;
85
+ type: PropType<`${import("../../../../index.ts").TranslatorTranslationDefaultKey}`>;
84
86
  required: true;
85
87
  };
86
88
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -277,5 +279,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
277
279
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
278
280
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
279
281
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
280
- export default _default;
281
282
  //# sourceMappingURL=AAttributeNamesPolicyForm.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AAttributeNamesPolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/entities/policy/attribute-names/AAttributeNamesPolicyForm.vue"],"names":[],"mappings":"AAoEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAE/C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;cAaR,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;0BA4BhB,MAAM,EAAE;;;;eAvBN,MAAM,EAAE;;;;eAAR,MAAM,EAAE;;;;cALnB,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yCAhBrD,GA/BgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyChB,wBA6CG"}
1
+ {"version":3,"file":"AAttributeNamesPolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/entities/policy/attribute-names/AAttributeNamesPolicyForm.vue"],"names":[],"mappings":"AAqEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAE/C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;wBAOf,OAAO,YAAY;AAAxC,wBAAyC;AAoCzC,QAAA,MAAM,YAAY;;cAMU,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;0BA4BhB,MAAM,EAAE;;;;eAvBN,MAAM,EAAE;;;;eAAR,MAAM,EAAE;;;;cALnB,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yCApDrD,GAnC+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEA8H7B,CAAC"}
@@ -1,7 +1,9 @@
1
1
  import type { BuildInput } from 'rapiq';
2
2
  import { type PropType } from 'vue';
3
3
  import type { Policy } from '@authup/core-kit';
4
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ declare const _default: typeof __VLS_export;
5
+ export default _default;
6
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5
7
  entity: {
6
8
  type: PropType<Partial<Policy>>;
7
9
  };
@@ -220,5 +222,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
220
222
  default: import("@ilingo/vuelidate").SlotProps;
221
223
  }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
222
224
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
223
- export default _default;
224
225
  //# sourceMappingURL=ACompositePolicyForm.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ACompositePolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/entities/policy/composite/ACompositePolicyForm.vue"],"names":[],"mappings":"AAsIA,OAAO,KAAK,EAAE,UAAU,EAAqB,MAAM,OAAO,CAAC;AAC3D,OAAO,EACH,KAAK,QAAQ,EAChB,MAAM,KAAK,CAAC;AAEb,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;;;cAenB,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;8BAoEZ,MAAM,EAAE;;;;eA/DV,MAAM,EAAE;;;;eAAR,MAAM,EAAE;;;oBAkBkB,MAAM,GAAG,IAAI;;;;cAvBlD,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AARrD,wBA+FG"}
1
+ {"version":3,"file":"ACompositePolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/entities/policy/composite/ACompositePolicyForm.vue"],"names":[],"mappings":"AAuIA,OAAO,KAAK,EAAE,UAAU,EAAqB,MAAM,OAAO,CAAC;AAC3D,OAAO,EACH,KAAK,QAAQ,EAChB,MAAM,KAAK,CAAC;AAEb,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;wBAO1B,OAAO,YAAY;AAAxC,wBAAyC;AAkFzC,QAAA,MAAM,YAAY;;cAQU,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;8BAoEZ,MAAM,EAAE;;;;eA/DV,MAAM,EAAE;;;;eAAR,MAAM,EAAE;;;oBAkBkB,MAAM,GAAG,IAAI;;;;cAvBlD,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEAuFnD,CAAC"}
@@ -1,6 +1,8 @@
1
1
  import { type PropType } from 'vue';
2
2
  import type { Policy } from '@authup/core-kit';
3
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
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<Partial<Policy>>;
6
8
  };
@@ -164,5 +166,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
164
166
  default: import("@ilingo/vuelidate").SlotProps;
165
167
  }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
166
168
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
167
- export default _default;
168
169
  //# sourceMappingURL=ADatePolicyForm.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ADatePolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/entities/policy/date/ADatePolicyForm.vue"],"names":[],"mappings":"AA0GA,OAAO,EACH,KAAK,QAAQ,EAChB,MAAM,KAAK,CAAC;AAEb,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;;;cAenB,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;cAAzB,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCAnBrD,GArEiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgFjB,wBAmDG"}
1
+ {"version":3,"file":"ADatePolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/entities/policy/date/ADatePolicyForm.vue"],"names":[],"mappings":"AA2GA,OAAO,EACH,KAAK,QAAQ,EAChB,MAAM,KAAK,CAAC;AAEb,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;wBAO1B,OAAO,YAAY;AAAxC,wBAAyC;AA6IzC,QAAA,MAAM,YAAY;;cAQU,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;cAAzB,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCAhKrD,GAzE6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEAoR3B,CAAC"}
@@ -1,6 +1,8 @@
1
1
  import type { Policy } from '@authup/core-kit';
2
2
  import type { PropType } from 'vue';
3
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
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<Partial<Policy>>;
6
8
  };
@@ -73,14 +75,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
73
75
  }, {}, {
74
76
  ATranslationDefault: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
75
77
  name: {
76
- type: PropType<`${import("../../../..").TranslatorTranslationDefaultKey}`>;
78
+ type: PropType<`${import("../../../../index.ts").TranslatorTranslationDefaultKey}`>;
77
79
  required: true;
78
80
  };
79
81
  }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
80
82
  [key: string]: any;
81
83
  }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
82
84
  name: {
83
- type: PropType<`${import("../../../..").TranslatorTranslationDefaultKey}`>;
85
+ type: PropType<`${import("../../../../index.ts").TranslatorTranslationDefaultKey}`>;
84
86
  required: true;
85
87
  };
86
88
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -277,5 +279,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
277
279
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
278
280
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
279
281
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
280
- export default _default;
281
282
  //# sourceMappingURL=AIdentityPolicyForm.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AIdentityPolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/entities/policy/identity/AIdentityPolicyForm.vue"],"names":[],"mappings":"AAwEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAE/C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;cAaR,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;0BA4BhB,MAAM,EAAE;;;;eAvBN,MAAM,EAAE;;;;eAAR,MAAM,EAAE;;;;cALnB,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yCAhBrD,GAnCsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6CtB,wBA6CG"}
1
+ {"version":3,"file":"AIdentityPolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/entities/policy/identity/AIdentityPolicyForm.vue"],"names":[],"mappings":"AAyEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAE/C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;wBAOf,OAAO,YAAY;AAAxC,wBAAyC;AA4CzC,QAAA,MAAM,YAAY;;cAMU,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;0BA4BhB,MAAM,EAAE;;;;eAvBN,MAAM,EAAE;;;;eAAR,MAAM,EAAE;;;;cALnB,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yCA5DrD,GAvC2C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEA0IzC,CAAC"}
@@ -1,6 +1,8 @@
1
1
  import { type PropType } from 'vue';
2
2
  import type { Policy } from '@authup/core-kit';
3
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
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<Partial<Policy>>;
6
8
  };
@@ -86,14 +88,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
86
88
  }, {}, {
87
89
  ATranslationDefault: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
88
90
  name: {
89
- type: PropType<`${import("../../../..").TranslatorTranslationDefaultKey}`>;
91
+ type: PropType<`${import("../../../../core").TranslatorTranslationDefaultKey}`>;
90
92
  required: true;
91
93
  };
92
94
  }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
93
95
  [key: string]: any;
94
96
  }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
95
97
  name: {
96
- type: PropType<`${import("../../../..").TranslatorTranslationDefaultKey}`>;
98
+ type: PropType<`${import("../../../../core").TranslatorTranslationDefaultKey}`>;
97
99
  required: true;
98
100
  };
99
101
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -382,5 +384,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
382
384
  default: import("@ilingo/vuelidate").SlotProps;
383
385
  }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
384
386
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
385
- export default _default;
386
387
  //# sourceMappingURL=ARealmMatchPolicyForm.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ARealmMatchPolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/entities/policy/realm-match/ARealmMatchPolicyForm.vue"],"names":[],"mappings":"AAwKA,OAAO,EACH,KAAK,QAAQ,EAChB,MAAM,KAAK,CAAC;AAEb,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;;;cAgBnB,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;uCA6CH,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;cA7C9B,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yCApBrD,GA1IqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsJrB,wBAiEG"}
1
+ {"version":3,"file":"ARealmMatchPolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/entities/policy/realm-match/ARealmMatchPolicyForm.vue"],"names":[],"mappings":"AAyKA,OAAO,EACH,KAAK,QAAQ,EAChB,MAAM,KAAK,CAAC;AAEb,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;wBAQ1B,OAAO,YAAY;AAAxC,wBAAyC;AAySzC,QAAA,MAAM,YAAY;;cAQU,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;uCA6CH,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;cA7C9B,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yCA7TrD,GA5ImC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEAkgBjC,CAAC"}
@@ -1,7 +1,9 @@
1
1
  import { type PropType } from 'vue';
2
2
  import type { Policy } from '@authup/core-kit';
3
3
  import type { FormSelectOption } from '@vuecs/form-controls';
4
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ declare const _default: typeof __VLS_export;
5
+ export default _default;
6
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5
7
  entity: {
6
8
  type: PropType<Partial<Policy>>;
7
9
  };
@@ -228,5 +230,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
228
230
  default: import("@ilingo/vuelidate").SlotProps;
229
231
  }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
230
232
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
231
- export default _default;
232
233
  //# sourceMappingURL=ATimePolicyForm.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ATimePolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/entities/policy/time/ATimePolicyForm.vue"],"names":[],"mappings":"AAoQA,OAAO,EACH,KAAK,QAAQ,EAChB,MAAM,KAAK,CAAC;AAGb,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAE/C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;;;cAoBjC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;mCAwEP,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAxExB,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA3BrD,GApOO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuPP,wBA4GG"}
1
+ {"version":3,"file":"ATimePolicyForm.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/entities/policy/time/ATimePolicyForm.vue"],"names":[],"mappings":"AAqQA,OAAO,EACH,KAAK,QAAQ,EAChB,MAAM,KAAK,CAAC;AAGb,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAE/C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;wBAYxC,OAAO,YAAY;AAAxC,wBAAyC;AA6ZzC,QAAA,MAAM,YAAY;;cAQU,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;mCAwEP,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAxExB,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCAxbrD,GAtOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEAkwBE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"AUserForm.d.ts","sourceRoot":"","sources":["../../../../src/components/entities/user/AUserForm.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAS,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAUpD,OAAO,KAAK,EAAE,QAAQ,EAAsB,MAAM,KAAK,CAAC;AAmBxD,eAAO,MAAM,SAAS;;cAGM,QAAQ,CAAC,IAAI,CAAC;;;;;;;;;;;;;;;cAAd,QAAQ,CAAC,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;4EAkRxC,CAAC;AAEH,eAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"AUserForm.d.ts","sourceRoot":"","sources":["../../../../src/components/entities/user/AUserForm.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAS,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAUpD,OAAO,KAAK,EAAE,QAAQ,EAAsB,MAAM,KAAK,CAAC;AAmBxD,eAAO,MAAM,SAAS;;cAGM,QAAQ,CAAC,IAAI,CAAC;;;;;;;;;;;;;;;cAAd,QAAQ,CAAC,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;4EAuRxC,CAAC;AAEH,eAAe,SAAS,CAAC"}
@@ -1,5 +1,7 @@
1
1
  import type { PropType } from 'vue';
2
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
4
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
5
  names: {
4
6
  type: PropType<string[]>;
5
7
  default: () => any[];
@@ -50,14 +52,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
50
52
  }, {}, {
51
53
  ATranslationDefault: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
52
54
  name: {
53
- type: PropType<`${import("../../../index.js").TranslatorTranslationDefaultKey}`>;
55
+ type: PropType<`${import("../../../index.ts").TranslatorTranslationDefaultKey}`>;
54
56
  required: true;
55
57
  };
56
58
  }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
57
59
  [key: string]: any;
58
60
  }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
59
61
  name: {
60
- type: PropType<`${import("../../../index.js").TranslatorTranslationDefaultKey}`>;
62
+ type: PropType<`${import("../../../index.ts").TranslatorTranslationDefaultKey}`>;
61
63
  required: true;
62
64
  };
63
65
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -253,5 +255,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
253
255
  }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
254
256
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
255
257
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
256
- export default _default;
257
258
  //# sourceMappingURL=AFormInputList.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AFormInputList.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/utility/form-input-list/AFormInputList.vue"],"names":[],"mappings":"AAqKA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;cAgBT,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;;;;;;;;;iBAiBjB,MAAM;;;wBA8CC,MAAM;wBATN,MAAM,SAAS,MAAM;;YAvCxB,MAAM;eAAS,MAAM;;YAArB,MAAM;eAAS,MAAM;;YAArB,MAAM;eAAS,MAAM;;;;cAf1B,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAhB7C,GA5HsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqItB,wBA+FG"}
1
+ {"version":3,"file":"AFormInputList.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/utility/form-input-list/AFormInputList.vue"],"names":[],"mappings":"AAsKA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;wBASf,OAAO,YAAY;AAAxC,wBAAyC;AA2HzC,QAAA,MAAM,YAAY;;cAOS,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;;;;;;;;;iBAiBjB,MAAM;;;wBA8CC,MAAM;wBATN,MAAM,SAAS,MAAM;;YAvCxB,MAAM;eAAS,MAAM;;YAArB,MAAM;eAAS,MAAM;;YAArB,MAAM;eAAS,MAAM;;;;cAf1B,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCA3I7C,GA/HgD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEAkW9C,CAAC"}
@@ -1,4 +1,6 @@
1
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1
+ declare const _default: typeof __VLS_export;
2
+ export default _default;
3
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
4
  name: {
3
5
  type: StringConstructor;
4
6
  default: any;
@@ -189,5 +191,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
189
191
  hint: undefined;
190
192
  }>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
191
193
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
192
- export default _default;
193
194
  //# sourceMappingURL=AFormInputListItem.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AFormInputListItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/utility/form-input-list/AFormInputListItem.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCAwFA,GAjDC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2DD,wBAwCG"}
1
+ {"version":3,"file":"AFormInputListItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/utility/form-input-list/AFormInputListItem.vue"],"names":[],"mappings":"wBAmGqB,OAAO,YAAY;AAAxC,wBAAyC;AA0FzC,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iCApGlB,GApDU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEAgMR,CAAC"}
@@ -1,7 +1,9 @@
1
1
  import type { PropType, Ref } from 'vue';
2
2
  import type { IdentityProvider, OAuth2AuthorizationCodeRequest } from '@authup/core-kit';
3
3
  import type { BuildInput } from 'rapiq';
4
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ declare const _default: typeof __VLS_export;
5
+ export default _default;
6
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5
7
  codeRequest: {
6
8
  type: PropType<OAuth2AuthorizationCodeRequest>;
7
9
  };
@@ -349,5 +351,4 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
349
351
  };
350
352
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
351
353
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
352
- export default _default;
353
354
  //# sourceMappingURL=Login.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Login.vue.d.ts","sourceRoot":"","sources":["../../../src/components/workflows/Login.vue"],"names":[],"mappings":"AAgRA,OAAO,KAAK,EAAE,QAAQ,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AASzC,OAAO,KAAK,EAAE,gBAAgB,EAAE,8BAA8B,EAAE,MAAM,kBAAkB,CAAC;AAKzF,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;;;cAmBZ,QAAQ,CAAC,8BAA8B,CAAC;;;6BAiE5B,MAAM,GAAG,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAPH,MAAM,GAAG;;;cAAT,MAAM,GAAG;;;cAAT,MAAM,GAAG;;mCAgCjB,MAAM;;;cA1FxB,QAAQ,CAAC,8BAA8B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAdpE,wBAqIG"}
1
+ {"version":3,"file":"Login.vue.d.ts","sourceRoot":"","sources":["../../../src/components/workflows/Login.vue"],"names":[],"mappings":"AAiRA,OAAO,KAAK,EAAE,QAAQ,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AASzC,OAAO,KAAK,EAAE,gBAAgB,EAAE,8BAA8B,EAAE,MAAM,kBAAkB,CAAC;AAKzF,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;wBAKnB,OAAO,YAAY;AAAxC,wBAAyC;AAoTzC,QAAA,MAAM,YAAY;;cAcU,QAAQ,CAAC,8BAA8B,CAAC;;;6BAiE5B,MAAM,GAAG,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAPH,MAAM,GAAG;;;cAAT,MAAM,GAAG;;;cAAT,MAAM,GAAG;;mCAgCjB,MAAM;;;cA1FxB,QAAQ,CAAC,8BAA8B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEAuHlE,CAAC"}
@@ -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: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
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("../..").ListLoadingOptions<import("@authup/core-kit").Realm>>;
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("../..").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
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("../..").ListFooterOptions<import("@authup/core-kit").Realm>>;
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("../..").ListHeaderOptions<import("@authup/core-kit").Realm>>;
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("../..").ListBodyOptions<import("@authup/core-kit").Realm>>;
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("../..").EntityCollectionVEmitOptions<import("@authup/core-kit").Realm>, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
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("../..").ListLoadingOptions<import("@authup/core-kit").Realm>>;
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("../..").ListNoMoreOptions<import("@authup/core-kit").Realm>>;
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("../..").ListFooterOptions<import("@authup/core-kit").Realm>>;
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("../..").ListHeaderOptions<import("@authup/core-kit").Realm>>;
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("../..").ListBodyOptions<import("@authup/core-kit").Realm>>;
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("../..").EntityPickerVSlots<import("@authup/core-kit").Realm>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
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("../..").ListLoadingOptions<import("@authup/core-kit").IdentityProvider>>;
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("../..").ListNoMoreOptions<import("@authup/core-kit").IdentityProvider>>;
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("../..").ListFooterOptions<import("@authup/core-kit").IdentityProvider>>;
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("../..").ListHeaderOptions<import("@authup/core-kit").IdentityProvider>>;
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("../..").ListBodyOptions<import("@authup/core-kit").IdentityProvider>>;
427
+ type: PropType<import("../../index.ts").ListBodyOptions<import("@authup/core-kit").IdentityProvider>>;
426
428
  };
427
- }>, () => VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("../..").EntityCollectionVEmitOptions<import("@authup/core-kit").IdentityProvider>, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
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("../..").ListLoadingOptions<import("@authup/core-kit").IdentityProvider>>;
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("../..").ListNoMoreOptions<import("@authup/core-kit").IdentityProvider>>;
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("../..").ListFooterOptions<import("@authup/core-kit").IdentityProvider>>;
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("../..").ListHeaderOptions<import("@authup/core-kit").IdentityProvider>>;
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("../..").ListBodyOptions<import("@authup/core-kit").IdentityProvider>>;
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("../..").EntityCollectionVSlots<import("@authup/core-kit").IdentityProvider>>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
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