@authup/client-web-kit 1.0.0-beta.45 → 1.0.0-beta.46
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 +1 -1
- package/dist/components/entities/client/AClientForm.vue.d.ts.map +1 -1
- package/dist/components/entities/client/AClients.d.ts.map +1 -1
- package/dist/components/entities/client-scope/AClientScopes.d.ts.map +1 -1
- package/dist/components/entities/identity-provider/AIdentityProviderBasicFields.vue.d.ts +1 -1
- package/dist/components/entities/identity-provider/AIdentityProviderBasicFields.vue.d.ts.map +1 -1
- package/dist/components/entities/identity-provider/AIdentityProviders.d.ts.map +1 -1
- package/dist/components/entities/identity-provider-role/AIdentityProviderRoleAssignment.vue.d.ts +1 -1
- package/dist/components/entities/identity-provider-role/AIdentityProviderRoleAssignment.vue.d.ts.map +1 -1
- package/dist/components/entities/permission/APermissionForm.vue.d.ts +1 -1
- package/dist/components/entities/permission/APermissionForm.vue.d.ts.map +1 -1
- package/dist/components/entities/permission/APermissions.d.ts.map +1 -1
- package/dist/components/entities/policy/APolicies.d.ts.map +1 -1
- package/dist/components/entities/policy/APolicyDetailNav.vue.d.ts.map +1 -1
- package/dist/components/entities/policy/date/ADatePolicyForm.vue.d.ts +1 -1
- package/dist/components/entities/policy/date/ADatePolicyForm.vue.d.ts.map +1 -1
- package/dist/components/entities/policy/time/ATimePolicyForm.vue.d.ts +1 -1
- package/dist/components/entities/policy/time/ATimePolicyForm.vue.d.ts.map +1 -1
- package/dist/components/entities/realm/ARealmForm.vue.d.ts +1 -1
- package/dist/components/entities/realm/ARealmForm.vue.d.ts.map +1 -1
- package/dist/components/entities/realm/ARealms.d.ts.map +1 -1
- package/dist/components/entities/robot/ARobotForm.vue.d.ts +1 -1
- package/dist/components/entities/robot/ARobotForm.vue.d.ts.map +1 -1
- package/dist/components/entities/robot/ARobots.d.ts.map +1 -1
- package/dist/components/entities/role/ARoleForm.vue.d.ts +1 -1
- package/dist/components/entities/role/ARoleForm.vue.d.ts.map +1 -1
- package/dist/components/entities/role/ARoles.d.ts.map +1 -1
- package/dist/components/entities/scope/AScopeForm.vue.d.ts +1 -1
- package/dist/components/entities/scope/AScopeForm.vue.d.ts.map +1 -1
- package/dist/components/entities/scope/AScopes.d.ts.map +1 -1
- package/dist/components/entities/user/AUserForm.vue.d.ts +1 -1
- package/dist/components/entities/user/AUserForm.vue.d.ts.map +1 -1
- package/dist/components/entities/user/AUsers.d.ts.map +1 -1
- package/dist/components/utility/ANameInput.vue.d.ts.map +1 -1
- package/dist/components/utility/ASecretInput.vue.d.ts.map +1 -1
- package/dist/components/utility/entity/AEntityDelete.d.ts.map +1 -1
- package/dist/components/utility/form-input-list/AFormInputList.vue.d.ts +1 -1
- package/dist/components/utility/form-input-list/AFormInputList.vue.d.ts.map +1 -1
- package/dist/components/utility/title/ATitle.d.ts.map +1 -1
- package/dist/components/workflows/Login.vue.d.ts +1 -1
- package/dist/components/workflows/Login.vue.d.ts.map +1 -1
- package/dist/components/workflows/authorize/Authorize.vue.d.ts +1 -1
- package/dist/components/workflows/authorize/Authorize.vue.d.ts.map +1 -1
- package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts +1 -1
- package/dist/components/workflows/authorize/AuthorizeForm.vue.d.ts.map +1 -1
- package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts +1 -1
- package/dist/components/workflows/authorize/AuthorizeScopes.vue.d.ts.map +1 -1
- package/dist/core/form/defaults.d.ts.map +1 -1
- package/dist/core/translator/index.d.ts +0 -1
- package/dist/core/translator/index.d.ts.map +1 -1
- package/dist/index.mjs +186 -443
- package/dist/index.mjs.map +1 -1
- package/package.json +17 -17
- package/dist/core/translator/constants.d.ts +0 -2
- package/dist/core/translator/constants.d.ts.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -5,6 +5,7 @@ import { Fragment, Suspense, Teleport, computed, createBlock, createCommentVNode
|
|
|
5
5
|
import { VCFormCheckbox, VCFormGroup, VCFormInput, VCFormSelect, VCFormSwitch, VCFormTextarea, useSubmitButton } from "@vuecs/forms";
|
|
6
6
|
import { createValidator } from "@validup/zod";
|
|
7
7
|
import { IFieldValidation, install as install$1, useTranslationsForComposable as useTranslationsForComposable$1, useTranslationsForField as useTranslationsForField$1 } from "@ilingo/validup-vue";
|
|
8
|
+
import { CATALOGS, LOCALES, TranslatorTranslationActionKey, TranslatorTranslationClientKey, TranslatorTranslationCommonKey, TranslatorTranslationEntityKey, TranslatorTranslationFieldKey, TranslatorTranslationNamespace, TranslatorTranslationVuecsKey } from "@authup/i18n";
|
|
8
9
|
import { Client, ClientAuthenticationHook, ClientAuthenticationHookEventName, CookieName } from "@authup/core-http-kit";
|
|
9
10
|
import { defineStore, storeToRefs as storeToRefs$1 } from "pinia";
|
|
10
11
|
import { BuiltInPolicyType, PermissionEvaluator, PermissionMemoryProvider, PolicyData, PolicyEngine, TimePolicyInterval, isIntervalForDayOfMonth, isIntervalForDayOfWeek, isIntervalForDayOfYear } from "@authup/access";
|
|
@@ -12,7 +13,6 @@ import { OAuth2Error, deserializeOAuth2Scope, isOpenIDProviderMetadata } from "@
|
|
|
12
13
|
import { useCookies } from "@vueuse/integrations/useCookies";
|
|
13
14
|
import { extend } from "@vuecs/core";
|
|
14
15
|
import { VCButton } from "@vuecs/button";
|
|
15
|
-
import { CATALOGS, LOCALES } from "@authup/i18n";
|
|
16
16
|
import { injectIlingo, injectLocale, install as install$2, useTranslation as useTranslation$1 } from "@ilingo/vue";
|
|
17
17
|
import { MemoryStore } from "ilingo";
|
|
18
18
|
import { createMerger, isObject, merge } from "smob";
|
|
@@ -21,12 +21,8 @@ import { ClientManager, EventNameSuffix, buildEventFullName } from "@authup/core
|
|
|
21
21
|
import { DecisionStrategy, ValidatorGroup, base64URLEncode, extendObject, generateName, generateSecret, hasOwnProperty, isBCryptHash, isObject as isObject$1 } from "@authup/kit";
|
|
22
22
|
import { VCPagination } from "@vuecs/pagination";
|
|
23
23
|
import { VCList, VCListBody, VCListEmpty, VCListItem, VCListLoading } from "@vuecs/list";
|
|
24
|
-
export * from "@authup/i18n";
|
|
25
24
|
//#region \0rolldown/runtime.js
|
|
26
25
|
var __defProp = Object.defineProperty;
|
|
27
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
28
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
29
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
30
26
|
var __exportAll = (all, no_symbols) => {
|
|
31
27
|
let target = {};
|
|
32
28
|
for (var name in all) __defProp(target, name, {
|
|
@@ -36,17 +32,6 @@ var __exportAll = (all, no_symbols) => {
|
|
|
36
32
|
if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
37
33
|
return target;
|
|
38
34
|
};
|
|
39
|
-
var __copyProps = (to, from, except, desc) => {
|
|
40
|
-
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
41
|
-
key = keys[i];
|
|
42
|
-
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
43
|
-
get: ((k) => from[k]).bind(null, key),
|
|
44
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
45
|
-
});
|
|
46
|
-
}
|
|
47
|
-
return to;
|
|
48
|
-
};
|
|
49
|
-
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
50
35
|
//#endregion
|
|
51
36
|
//#region ../../node_modules/zod/v4/core/core.js
|
|
52
37
|
var _a$1;
|
|
@@ -3902,18 +3887,6 @@ function installTranslator(app, options = {}) {
|
|
|
3902
3887
|
install$1(app);
|
|
3903
3888
|
}
|
|
3904
3889
|
//#endregion
|
|
3905
|
-
//#region src/core/translator/index.ts
|
|
3906
|
-
var translator_exports = /* @__PURE__ */ __exportAll({
|
|
3907
|
-
injectTranslatorLocale: () => injectTranslatorLocale,
|
|
3908
|
-
installTranslator: () => installTranslator,
|
|
3909
|
-
useTranslation: () => useTranslation,
|
|
3910
|
-
useTranslations: () => useTranslations,
|
|
3911
|
-
useTranslationsForComposable: () => useTranslationsForComposable,
|
|
3912
|
-
useTranslationsForField: () => useTranslationsForField,
|
|
3913
|
-
useTranslationsForNamespace: () => useTranslationsForNamespace,
|
|
3914
|
-
useTranslator: () => useTranslator
|
|
3915
|
-
});
|
|
3916
|
-
//#endregion
|
|
3917
3890
|
//#region src/core/form/defaults.ts
|
|
3918
3891
|
/**
|
|
3919
3892
|
* Build the `submitButton` defaults for @vuecs/forms's
|
|
@@ -3929,12 +3902,12 @@ var translator_exports = /* @__PURE__ */ __exportAll({
|
|
|
3929
3902
|
function buildSubmitButtonDefaults() {
|
|
3930
3903
|
return {
|
|
3931
3904
|
createText: useTranslation({
|
|
3932
|
-
namespace:
|
|
3933
|
-
key:
|
|
3905
|
+
namespace: TranslatorTranslationNamespace.ACTION,
|
|
3906
|
+
key: TranslatorTranslationActionKey.CREATE
|
|
3934
3907
|
}),
|
|
3935
3908
|
updateText: useTranslation({
|
|
3936
|
-
namespace:
|
|
3937
|
-
key:
|
|
3909
|
+
namespace: TranslatorTranslationNamespace.ACTION,
|
|
3910
|
+
key: TranslatorTranslationActionKey.UPDATE
|
|
3938
3911
|
}),
|
|
3939
3912
|
createIcon: "fa6-solid:plus",
|
|
3940
3913
|
updateIcon: "fa6-solid:floppy-disk",
|
|
@@ -4160,67 +4133,6 @@ function extractValidupResultsFromChild(composable, name, keys) {
|
|
|
4160
4133
|
return output;
|
|
4161
4134
|
}
|
|
4162
4135
|
//#endregion
|
|
4163
|
-
//#region src/core/index.ts
|
|
4164
|
-
var core_exports = /* @__PURE__ */ __exportAll({
|
|
4165
|
-
HTTPClientSymbol: () => HTTPClientSymbol,
|
|
4166
|
-
STORE_ID: () => STORE_ID,
|
|
4167
|
-
SlotName: () => SlotName,
|
|
4168
|
-
SocketClientSymbol: () => SocketClientSymbol,
|
|
4169
|
-
StoreDispatcherEventName: () => StoreDispatcherEventName,
|
|
4170
|
-
assignFormProperties: () => assignFormProperties,
|
|
4171
|
-
buildFormCheckbox: () => buildFormCheckbox,
|
|
4172
|
-
buildFormGroup: () => buildFormGroup,
|
|
4173
|
-
buildFormInput: () => buildFormInput,
|
|
4174
|
-
buildFormInputText: () => buildFormInputText,
|
|
4175
|
-
buildFormSelect: () => buildFormSelect,
|
|
4176
|
-
buildFormSubmit: () => buildFormSubmit,
|
|
4177
|
-
buildFormSubmitWithTranslations: () => buildFormSubmitWithTranslations,
|
|
4178
|
-
buildFormSwitch: () => buildFormSwitch,
|
|
4179
|
-
buildFormTextarea: () => buildFormTextarea,
|
|
4180
|
-
buildSubmitButtonDefaults: () => buildSubmitButtonDefaults,
|
|
4181
|
-
createFormSubmitTranslations: () => createFormSubmitTranslations,
|
|
4182
|
-
createPermissionCheckerReactiveFn: () => createPermissionCheckerReactiveFn,
|
|
4183
|
-
createStore: () => createStore,
|
|
4184
|
-
createStoreDispatcher: () => createStoreDispatcher,
|
|
4185
|
-
extractValidupResultsFromChild: () => extractValidupResultsFromChild,
|
|
4186
|
-
getSeverity: () => getSeverity,
|
|
4187
|
-
hasHTTPClient: () => hasHTTPClient,
|
|
4188
|
-
hasHTTPClientAuthenticationHook: () => hasHTTPClientAuthenticationHook,
|
|
4189
|
-
hasNormalizedSlot: () => hasNormalizedSlot,
|
|
4190
|
-
hasStoreFactory: () => hasStoreFactory,
|
|
4191
|
-
inject: () => inject,
|
|
4192
|
-
injectHTTPClient: () => injectHTTPClient,
|
|
4193
|
-
injectHTTPClientAuthenticationHook: () => injectHTTPClientAuthenticationHook,
|
|
4194
|
-
injectSocketManager: () => injectSocketManager,
|
|
4195
|
-
injectStore: () => injectStore,
|
|
4196
|
-
injectStoreDispatcher: () => injectStoreDispatcher,
|
|
4197
|
-
injectStoreFactory: () => injectStoreFactory,
|
|
4198
|
-
injectTranslatorLocale: () => injectTranslatorLocale,
|
|
4199
|
-
installHTTPClient: () => installHTTPClient,
|
|
4200
|
-
installHTTPClientAuthenticationHook: () => installHTTPClientAuthenticationHook,
|
|
4201
|
-
installSocketManager: () => installSocketManager,
|
|
4202
|
-
installStore: () => installStore,
|
|
4203
|
-
installTranslator: () => installTranslator,
|
|
4204
|
-
isQuerySortedDescByDate: () => isQuerySortedDescByDate,
|
|
4205
|
-
isSocketManagerUsable: () => isSocketManagerUsable,
|
|
4206
|
-
normalizeSlot: () => normalizeSlot,
|
|
4207
|
-
provide: () => provide,
|
|
4208
|
-
provideHTTPClient: () => provideHTTPClient,
|
|
4209
|
-
provideHTTPClientAuthenticationHook: () => provideHTTPClientAuthenticationHook,
|
|
4210
|
-
provideSocketManager: () => provideSocketManager,
|
|
4211
|
-
provideStoreDispatcher: () => provideStoreDispatcher,
|
|
4212
|
-
provideStoreFactory: () => provideStoreFactory,
|
|
4213
|
-
storeToRefs: () => storeToRefs,
|
|
4214
|
-
useTranslation: () => useTranslation,
|
|
4215
|
-
useTranslations: () => useTranslations,
|
|
4216
|
-
useTranslationsForComposable: () => useTranslationsForComposable,
|
|
4217
|
-
useTranslationsForField: () => useTranslationsForField,
|
|
4218
|
-
useTranslationsForNamespace: () => useTranslationsForNamespace,
|
|
4219
|
-
useTranslator: () => useTranslator,
|
|
4220
|
-
wrapFnWithBusyState: () => wrapFnWithBusyState
|
|
4221
|
-
});
|
|
4222
|
-
__reExport(core_exports, translator_exports);
|
|
4223
|
-
//#endregion
|
|
4224
4136
|
//#region src/components/utility/form-input-list/AFormInputList.vue?vue&type=script&lang.ts
|
|
4225
4137
|
var AFormInputList_vue_vue_type_script_lang_default = defineComponent({
|
|
4226
4138
|
components: { AFormInputListItem: AFormInputListItem_default },
|
|
@@ -4241,8 +4153,8 @@ var AFormInputList_vue_vue_type_script_lang_default = defineComponent({
|
|
|
4241
4153
|
emits: ["changed"],
|
|
4242
4154
|
setup(props, setup) {
|
|
4243
4155
|
const translationsAction = useTranslations([{
|
|
4244
|
-
namespace:
|
|
4245
|
-
key:
|
|
4156
|
+
namespace: TranslatorTranslationNamespace.ACTION,
|
|
4157
|
+
key: TranslatorTranslationActionKey.ADD
|
|
4246
4158
|
}]);
|
|
4247
4159
|
let counter = 0;
|
|
4248
4160
|
const items = ref([]);
|
|
@@ -5331,8 +5243,8 @@ const AEntityDelete = defineComponent({
|
|
|
5331
5243
|
}
|
|
5332
5244
|
});
|
|
5333
5245
|
const translation = useTranslation({
|
|
5334
|
-
namespace:
|
|
5335
|
-
key:
|
|
5246
|
+
namespace: TranslatorTranslationNamespace.ACTION,
|
|
5247
|
+
key: TranslatorTranslationActionKey.DELETE
|
|
5336
5248
|
});
|
|
5337
5249
|
const render = () => {
|
|
5338
5250
|
let tag = "button";
|
|
@@ -5407,8 +5319,8 @@ const ATitle = defineComponent({
|
|
|
5407
5319
|
slots: Object,
|
|
5408
5320
|
setup(props, { slots }) {
|
|
5409
5321
|
const translation = useTranslation({
|
|
5410
|
-
namespace:
|
|
5411
|
-
key:
|
|
5322
|
+
namespace: TranslatorTranslationNamespace.COMMON,
|
|
5323
|
+
key: TranslatorTranslationCommonKey.OVERVIEW
|
|
5412
5324
|
});
|
|
5413
5325
|
return () => buildTitle({
|
|
5414
5326
|
slots,
|
|
@@ -5522,8 +5434,8 @@ var ANameInput_vue_vue_type_script_lang_default = defineComponent({
|
|
|
5522
5434
|
emits: ["update:modelValue"],
|
|
5523
5435
|
setup(props, { emit }) {
|
|
5524
5436
|
const translationsDefault = useTranslations([{
|
|
5525
|
-
namespace:
|
|
5526
|
-
key:
|
|
5437
|
+
namespace: TranslatorTranslationNamespace.ACTION,
|
|
5438
|
+
key: TranslatorTranslationActionKey.GENERATE
|
|
5527
5439
|
}]);
|
|
5528
5440
|
const buttonLabel = computed(() => props.label ?? translationsDefault.generate);
|
|
5529
5441
|
const onUpdate = (value) => {
|
|
@@ -5609,8 +5521,8 @@ var ASecretInput_vue_vue_type_script_lang_default = defineComponent({
|
|
|
5609
5521
|
emits: ["update:modelValue"],
|
|
5610
5522
|
setup(props, { emit }) {
|
|
5611
5523
|
const translationsDefault = useTranslations([{
|
|
5612
|
-
namespace:
|
|
5613
|
-
key:
|
|
5524
|
+
namespace: TranslatorTranslationNamespace.ACTION,
|
|
5525
|
+
key: TranslatorTranslationActionKey.GENERATE
|
|
5614
5526
|
}]);
|
|
5615
5527
|
const buttonLabel = computed(() => props.label ?? translationsDefault.generate);
|
|
5616
5528
|
const onUpdate = (value) => {
|
|
@@ -5849,20 +5761,20 @@ var ARealmForm_vue_vue_type_script_lang_default = defineComponent({
|
|
|
5849
5761
|
isMaster,
|
|
5850
5762
|
translationsDefault: useTranslations([
|
|
5851
5763
|
{
|
|
5852
|
-
namespace:
|
|
5853
|
-
key:
|
|
5764
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
5765
|
+
key: TranslatorTranslationFieldKey.NAME
|
|
5854
5766
|
},
|
|
5855
5767
|
{
|
|
5856
|
-
namespace:
|
|
5857
|
-
key:
|
|
5768
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
5769
|
+
key: TranslatorTranslationFieldKey.DISPLAY_NAME
|
|
5858
5770
|
},
|
|
5859
5771
|
{
|
|
5860
|
-
namespace:
|
|
5861
|
-
key:
|
|
5772
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
5773
|
+
key: TranslatorTranslationFieldKey.DESCRIPTION
|
|
5862
5774
|
},
|
|
5863
5775
|
{
|
|
5864
|
-
namespace:
|
|
5865
|
-
key:
|
|
5776
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
5777
|
+
key: TranslatorTranslationEntityKey.REALM,
|
|
5866
5778
|
count: 1
|
|
5867
5779
|
}
|
|
5868
5780
|
]),
|
|
@@ -5950,13 +5862,13 @@ const ARealms = defineComponent({
|
|
|
5950
5862
|
setup: ctx
|
|
5951
5863
|
});
|
|
5952
5864
|
const translationsName = useTranslation({
|
|
5953
|
-
namespace:
|
|
5954
|
-
key:
|
|
5865
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
5866
|
+
key: TranslatorTranslationEntityKey.REALM,
|
|
5955
5867
|
count: 2
|
|
5956
5868
|
});
|
|
5957
5869
|
const translation = useTranslation({
|
|
5958
|
-
namespace:
|
|
5959
|
-
key:
|
|
5870
|
+
namespace: TranslatorTranslationNamespace.VUECS,
|
|
5871
|
+
key: TranslatorTranslationVuecsKey.NO_MORE,
|
|
5960
5872
|
data: { name: translationsName }
|
|
5961
5873
|
});
|
|
5962
5874
|
return () => render({ noMore: { content: translation.value } });
|
|
@@ -6059,39 +5971,39 @@ var AClientForm_vue_vue_type_script_lang_default = defineComponent({
|
|
|
6059
5971
|
await manager.createOrUpdate(form);
|
|
6060
5972
|
assignFormProperties(form, manager.data.value);
|
|
6061
5973
|
};
|
|
6062
|
-
const translationsClient = useTranslationsForNamespace(
|
|
6063
|
-
{ key:
|
|
6064
|
-
{ key:
|
|
6065
|
-
{ key:
|
|
6066
|
-
{ key:
|
|
6067
|
-
{ key:
|
|
6068
|
-
{ key:
|
|
5974
|
+
const translationsClient = useTranslationsForNamespace(TranslatorTranslationNamespace.CLIENT, [
|
|
5975
|
+
{ key: TranslatorTranslationClientKey.NAME_HINT },
|
|
5976
|
+
{ key: TranslatorTranslationClientKey.DESCRIPTION_HINT },
|
|
5977
|
+
{ key: TranslatorTranslationClientKey.REDIRECT_URI_HINT },
|
|
5978
|
+
{ key: TranslatorTranslationClientKey.IS_CONFIDENTIAL },
|
|
5979
|
+
{ key: TranslatorTranslationClientKey.IS_ACTIVE },
|
|
5980
|
+
{ key: TranslatorTranslationClientKey.HASH_SECRET }
|
|
6069
5981
|
]);
|
|
6070
5982
|
const translationsDefault = useTranslations([
|
|
6071
5983
|
{
|
|
6072
|
-
namespace:
|
|
6073
|
-
key:
|
|
5984
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
5985
|
+
key: TranslatorTranslationFieldKey.NAME
|
|
6074
5986
|
},
|
|
6075
5987
|
{
|
|
6076
|
-
namespace:
|
|
6077
|
-
key:
|
|
5988
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
5989
|
+
key: TranslatorTranslationFieldKey.DISPLAY_NAME
|
|
6078
5990
|
},
|
|
6079
5991
|
{
|
|
6080
|
-
namespace:
|
|
6081
|
-
key:
|
|
5992
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
5993
|
+
key: TranslatorTranslationFieldKey.DESCRIPTION
|
|
6082
5994
|
},
|
|
6083
5995
|
{
|
|
6084
|
-
namespace:
|
|
6085
|
-
key:
|
|
5996
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
5997
|
+
key: TranslatorTranslationEntityKey.REALM,
|
|
6086
5998
|
count: 1
|
|
6087
5999
|
},
|
|
6088
6000
|
{
|
|
6089
|
-
namespace:
|
|
6090
|
-
key:
|
|
6001
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
6002
|
+
key: TranslatorTranslationFieldKey.REDIRECT_URIS
|
|
6091
6003
|
},
|
|
6092
6004
|
{
|
|
6093
|
-
namespace:
|
|
6094
|
-
key:
|
|
6005
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
6006
|
+
key: TranslatorTranslationFieldKey.SECRET
|
|
6095
6007
|
}
|
|
6096
6008
|
]);
|
|
6097
6009
|
const redirectUris = computed(() => {
|
|
@@ -6322,13 +6234,13 @@ const AClients = defineComponent({
|
|
|
6322
6234
|
setup: ctx
|
|
6323
6235
|
});
|
|
6324
6236
|
const translationName = useTranslation({
|
|
6325
|
-
namespace:
|
|
6326
|
-
key:
|
|
6237
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
6238
|
+
key: TranslatorTranslationEntityKey.CLIENT,
|
|
6327
6239
|
count: 2
|
|
6328
6240
|
});
|
|
6329
6241
|
const translation = useTranslation({
|
|
6330
|
-
namespace:
|
|
6331
|
-
key:
|
|
6242
|
+
namespace: TranslatorTranslationNamespace.VUECS,
|
|
6243
|
+
key: TranslatorTranslationVuecsKey.NO_MORE,
|
|
6332
6244
|
data: { name: translationName }
|
|
6333
6245
|
});
|
|
6334
6246
|
return () => render({ noMore: { content: translation.value } });
|
|
@@ -6471,24 +6383,24 @@ var APermissionForm_vue_vue_type_script_lang_default = defineComponent({
|
|
|
6471
6383
|
};
|
|
6472
6384
|
const translationsDefault = useTranslations([
|
|
6473
6385
|
{
|
|
6474
|
-
namespace:
|
|
6475
|
-
key:
|
|
6386
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
6387
|
+
key: TranslatorTranslationFieldKey.NAME
|
|
6476
6388
|
},
|
|
6477
6389
|
{
|
|
6478
|
-
namespace:
|
|
6479
|
-
key:
|
|
6390
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
6391
|
+
key: TranslatorTranslationFieldKey.DISPLAY_NAME
|
|
6480
6392
|
},
|
|
6481
6393
|
{
|
|
6482
|
-
namespace:
|
|
6483
|
-
key:
|
|
6394
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
6395
|
+
key: TranslatorTranslationFieldKey.DESCRIPTION
|
|
6484
6396
|
},
|
|
6485
6397
|
{
|
|
6486
|
-
namespace:
|
|
6487
|
-
key:
|
|
6398
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
6399
|
+
key: TranslatorTranslationFieldKey.DECISION_STRATEGY
|
|
6488
6400
|
},
|
|
6489
6401
|
{
|
|
6490
|
-
namespace:
|
|
6491
|
-
key:
|
|
6402
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
6403
|
+
key: TranslatorTranslationEntityKey.REALM,
|
|
6492
6404
|
count: 1
|
|
6493
6405
|
}
|
|
6494
6406
|
]);
|
|
@@ -6622,13 +6534,13 @@ const APermissions = defineComponent({
|
|
|
6622
6534
|
setup
|
|
6623
6535
|
});
|
|
6624
6536
|
const translationName = useTranslation({
|
|
6625
|
-
namespace:
|
|
6626
|
-
key:
|
|
6537
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
6538
|
+
key: TranslatorTranslationEntityKey.PERMISSION,
|
|
6627
6539
|
count: 2
|
|
6628
6540
|
});
|
|
6629
6541
|
const translation = useTranslation({
|
|
6630
|
-
namespace:
|
|
6631
|
-
key:
|
|
6542
|
+
namespace: TranslatorTranslationNamespace.VUECS,
|
|
6543
|
+
key: TranslatorTranslationVuecsKey.NO_MORE,
|
|
6632
6544
|
data: { name: translationName }
|
|
6633
6545
|
});
|
|
6634
6546
|
return () => render({ noMore: { content: translation.value } });
|
|
@@ -6647,13 +6559,13 @@ const APolicies = defineComponent({
|
|
|
6647
6559
|
setup
|
|
6648
6560
|
});
|
|
6649
6561
|
const translationName = useTranslation({
|
|
6650
|
-
namespace:
|
|
6651
|
-
key:
|
|
6562
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
6563
|
+
key: TranslatorTranslationEntityKey.POLICY,
|
|
6652
6564
|
count: 2
|
|
6653
6565
|
});
|
|
6654
6566
|
const translation = useTranslation({
|
|
6655
|
-
namespace:
|
|
6656
|
-
key:
|
|
6567
|
+
namespace: TranslatorTranslationNamespace.VUECS,
|
|
6568
|
+
key: TranslatorTranslationVuecsKey.NO_MORE,
|
|
6657
6569
|
data: { name: translationName }
|
|
6658
6570
|
});
|
|
6659
6571
|
return () => render({ noMore: { content: translation.value } });
|
|
@@ -6697,8 +6609,8 @@ var APolicyDetailNav_vue_vue_type_script_lang_default = defineComponent({
|
|
|
6697
6609
|
emits: ["click"],
|
|
6698
6610
|
setup(props, { emit }) {
|
|
6699
6611
|
const viewPolicyDetails = useTranslation({
|
|
6700
|
-
namespace:
|
|
6701
|
-
key:
|
|
6612
|
+
namespace: TranslatorTranslationNamespace.CLIENT,
|
|
6613
|
+
key: TranslatorTranslationClientKey.VIEW_POLICY_DETAILS
|
|
6702
6614
|
});
|
|
6703
6615
|
const handleClick = (e) => {
|
|
6704
6616
|
e.preventDefault();
|
|
@@ -7144,20 +7056,20 @@ var ARoleForm_vue_vue_type_script_lang_default = defineComponent({
|
|
|
7144
7056
|
realmId,
|
|
7145
7057
|
translationsDefault: useTranslations([
|
|
7146
7058
|
{
|
|
7147
|
-
namespace:
|
|
7148
|
-
key:
|
|
7059
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
7060
|
+
key: TranslatorTranslationFieldKey.NAME
|
|
7149
7061
|
},
|
|
7150
7062
|
{
|
|
7151
|
-
namespace:
|
|
7152
|
-
key:
|
|
7063
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
7064
|
+
key: TranslatorTranslationFieldKey.DISPLAY_NAME
|
|
7153
7065
|
},
|
|
7154
7066
|
{
|
|
7155
|
-
namespace:
|
|
7156
|
-
key:
|
|
7067
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
7068
|
+
key: TranslatorTranslationFieldKey.DESCRIPTION
|
|
7157
7069
|
},
|
|
7158
7070
|
{
|
|
7159
|
-
namespace:
|
|
7160
|
-
key:
|
|
7071
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
7072
|
+
key: TranslatorTranslationEntityKey.REALM,
|
|
7161
7073
|
count: 1
|
|
7162
7074
|
}
|
|
7163
7075
|
]),
|
|
@@ -7257,13 +7169,13 @@ const ARoles = defineComponent({
|
|
|
7257
7169
|
setup: ctx
|
|
7258
7170
|
});
|
|
7259
7171
|
const translationName = useTranslation({
|
|
7260
|
-
namespace:
|
|
7261
|
-
key:
|
|
7172
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
7173
|
+
key: TranslatorTranslationEntityKey.ROLE,
|
|
7262
7174
|
count: 2
|
|
7263
7175
|
});
|
|
7264
7176
|
const translation = useTranslation({
|
|
7265
|
-
namespace:
|
|
7266
|
-
key:
|
|
7177
|
+
namespace: TranslatorTranslationNamespace.VUECS,
|
|
7178
|
+
key: TranslatorTranslationVuecsKey.NO_MORE,
|
|
7267
7179
|
data: { name: translationName }
|
|
7268
7180
|
});
|
|
7269
7181
|
return () => render({ noMore: { content: translation.value } });
|
|
@@ -7422,12 +7334,12 @@ const AClientScopes = defineComponent({
|
|
|
7422
7334
|
setup: ctx
|
|
7423
7335
|
});
|
|
7424
7336
|
const translationClientScopes = useTranslation({
|
|
7425
|
-
namespace:
|
|
7426
|
-
key:
|
|
7337
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
7338
|
+
key: TranslatorTranslationFieldKey.CLIENT_SCOPES
|
|
7427
7339
|
});
|
|
7428
7340
|
const translation = useTranslation({
|
|
7429
|
-
namespace:
|
|
7430
|
-
key:
|
|
7341
|
+
namespace: TranslatorTranslationNamespace.VUECS,
|
|
7342
|
+
key: TranslatorTranslationVuecsKey.NO_MORE,
|
|
7431
7343
|
data: { name: translationClientScopes }
|
|
7432
7344
|
});
|
|
7433
7345
|
return () => render({ noMore: { content: translation.value } });
|
|
@@ -7503,20 +7415,20 @@ var AScopeForm_vue_vue_type_script_lang_default = defineComponent({
|
|
|
7503
7415
|
isNameFixed,
|
|
7504
7416
|
translationsDefault: useTranslations([
|
|
7505
7417
|
{
|
|
7506
|
-
namespace:
|
|
7507
|
-
key:
|
|
7418
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
7419
|
+
key: TranslatorTranslationFieldKey.NAME
|
|
7508
7420
|
},
|
|
7509
7421
|
{
|
|
7510
|
-
namespace:
|
|
7511
|
-
key:
|
|
7422
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
7423
|
+
key: TranslatorTranslationFieldKey.DISPLAY_NAME
|
|
7512
7424
|
},
|
|
7513
7425
|
{
|
|
7514
|
-
namespace:
|
|
7515
|
-
key:
|
|
7426
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
7427
|
+
key: TranslatorTranslationFieldKey.DESCRIPTION
|
|
7516
7428
|
},
|
|
7517
7429
|
{
|
|
7518
|
-
namespace:
|
|
7519
|
-
key:
|
|
7430
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
7431
|
+
key: TranslatorTranslationEntityKey.REALM,
|
|
7520
7432
|
count: 1
|
|
7521
7433
|
}
|
|
7522
7434
|
]),
|
|
@@ -7621,13 +7533,13 @@ const AScopes = defineComponent({
|
|
|
7621
7533
|
setup: ctx
|
|
7622
7534
|
});
|
|
7623
7535
|
const translationName = useTranslation({
|
|
7624
|
-
namespace:
|
|
7625
|
-
key:
|
|
7536
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
7537
|
+
key: TranslatorTranslationEntityKey.SCOPE,
|
|
7626
7538
|
count: 2
|
|
7627
7539
|
});
|
|
7628
7540
|
const translation = useTranslation({
|
|
7629
|
-
namespace:
|
|
7630
|
-
key:
|
|
7541
|
+
namespace: TranslatorTranslationNamespace.VUECS,
|
|
7542
|
+
key: TranslatorTranslationVuecsKey.NO_MORE,
|
|
7631
7543
|
data: { name: translationName }
|
|
7632
7544
|
});
|
|
7633
7545
|
return () => render({ noMore: { content: translation.value } });
|
|
@@ -7807,16 +7719,16 @@ var AIdentityProviderBasicFields_vue_vue_type_script_lang_default = defineCompon
|
|
|
7807
7719
|
assign(props.entity);
|
|
7808
7720
|
const translationsDefault = useTranslations([
|
|
7809
7721
|
{
|
|
7810
|
-
namespace:
|
|
7811
|
-
key:
|
|
7722
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
7723
|
+
key: TranslatorTranslationFieldKey.DISPLAY_NAME
|
|
7812
7724
|
},
|
|
7813
7725
|
{
|
|
7814
|
-
namespace:
|
|
7815
|
-
key:
|
|
7726
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
7727
|
+
key: TranslatorTranslationFieldKey.NAME
|
|
7816
7728
|
},
|
|
7817
7729
|
{
|
|
7818
|
-
namespace:
|
|
7819
|
-
key:
|
|
7730
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
7731
|
+
key: TranslatorTranslationFieldKey.DESCRIPTION
|
|
7820
7732
|
}
|
|
7821
7733
|
]);
|
|
7822
7734
|
const onEnabledChange = (value) => {
|
|
@@ -9134,13 +9046,13 @@ const AIdentityProviders = defineComponent({
|
|
|
9134
9046
|
setup: ctx
|
|
9135
9047
|
});
|
|
9136
9048
|
const translationName = useTranslation({
|
|
9137
|
-
namespace:
|
|
9138
|
-
key:
|
|
9049
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
9050
|
+
key: TranslatorTranslationEntityKey.IDENTITY_PROVIDER,
|
|
9139
9051
|
count: 2
|
|
9140
9052
|
});
|
|
9141
9053
|
const translation = useTranslation({
|
|
9142
|
-
namespace:
|
|
9143
|
-
key:
|
|
9054
|
+
namespace: TranslatorTranslationNamespace.VUECS,
|
|
9055
|
+
key: TranslatorTranslationVuecsKey.NO_MORE,
|
|
9144
9056
|
data: { name: translationName }
|
|
9145
9057
|
});
|
|
9146
9058
|
return () => render({ noMore: { content: translation.value } });
|
|
@@ -9226,8 +9138,8 @@ var AIdentityProviderRoleAssignment_vue_vue_type_script_lang_default = defineCom
|
|
|
9226
9138
|
});
|
|
9227
9139
|
const v = useValidup(new RoleMappingAttributesValidator(), form);
|
|
9228
9140
|
const translationsDefault = useTranslations([{
|
|
9229
|
-
namespace:
|
|
9230
|
-
key:
|
|
9141
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
9142
|
+
key: TranslatorTranslationFieldKey.VALUE_IS_REGEX
|
|
9231
9143
|
}]);
|
|
9232
9144
|
const manager = defineEntityManager({
|
|
9233
9145
|
type: `${EntityType.IDENTITY_PROVIDER_ROLE_MAPPING}`,
|
|
@@ -9637,11 +9549,11 @@ var ADatePolicyForm_vue_vue_type_script_lang_default = defineComponent({
|
|
|
9637
9549
|
});
|
|
9638
9550
|
const v = useValidup(new Container(), form, { name: "type" });
|
|
9639
9551
|
const translationsDefault = useTranslations([{
|
|
9640
|
-
namespace:
|
|
9641
|
-
key:
|
|
9552
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
9553
|
+
key: TranslatorTranslationFieldKey.START
|
|
9642
9554
|
}, {
|
|
9643
|
-
namespace:
|
|
9644
|
-
key:
|
|
9555
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
9556
|
+
key: TranslatorTranslationFieldKey.END
|
|
9645
9557
|
}]);
|
|
9646
9558
|
function assign(data = {}) {
|
|
9647
9559
|
assignFormProperties(form, data);
|
|
@@ -9905,28 +9817,28 @@ var ATimePolicyForm_vue_vue_type_script_lang_default = defineComponent({
|
|
|
9905
9817
|
const v = useValidup(new Container(), form, { name: "type" });
|
|
9906
9818
|
const translationsDefault = useTranslations([
|
|
9907
9819
|
{
|
|
9908
|
-
namespace:
|
|
9909
|
-
key:
|
|
9820
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
9821
|
+
key: TranslatorTranslationFieldKey.START
|
|
9910
9822
|
},
|
|
9911
9823
|
{
|
|
9912
|
-
namespace:
|
|
9913
|
-
key:
|
|
9824
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
9825
|
+
key: TranslatorTranslationFieldKey.END
|
|
9914
9826
|
},
|
|
9915
9827
|
{
|
|
9916
|
-
namespace:
|
|
9917
|
-
key:
|
|
9828
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
9829
|
+
key: TranslatorTranslationFieldKey.INTERVAL
|
|
9918
9830
|
},
|
|
9919
9831
|
{
|
|
9920
|
-
namespace:
|
|
9921
|
-
key:
|
|
9832
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
9833
|
+
key: TranslatorTranslationFieldKey.DAY_OF_WEEK
|
|
9922
9834
|
},
|
|
9923
9835
|
{
|
|
9924
|
-
namespace:
|
|
9925
|
-
key:
|
|
9836
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
9837
|
+
key: TranslatorTranslationFieldKey.DAY_OF_MONTH
|
|
9926
9838
|
},
|
|
9927
9839
|
{
|
|
9928
|
-
namespace:
|
|
9929
|
-
key:
|
|
9840
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
9841
|
+
key: TranslatorTranslationFieldKey.DAY_OF_YEAR
|
|
9930
9842
|
}
|
|
9931
9843
|
]);
|
|
9932
9844
|
function assign(data = {}) {
|
|
@@ -10798,24 +10710,24 @@ var ARobotForm_vue_vue_type_script_lang_default = defineComponent({
|
|
|
10798
10710
|
};
|
|
10799
10711
|
const translationsDefault = useTranslations([
|
|
10800
10712
|
{
|
|
10801
|
-
namespace:
|
|
10802
|
-
key:
|
|
10713
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
10714
|
+
key: TranslatorTranslationFieldKey.HASHED
|
|
10803
10715
|
},
|
|
10804
10716
|
{
|
|
10805
|
-
namespace:
|
|
10806
|
-
key:
|
|
10717
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
10718
|
+
key: TranslatorTranslationFieldKey.NAME
|
|
10807
10719
|
},
|
|
10808
10720
|
{
|
|
10809
|
-
namespace:
|
|
10810
|
-
key:
|
|
10721
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
10722
|
+
key: TranslatorTranslationFieldKey.DISPLAY_NAME
|
|
10811
10723
|
},
|
|
10812
10724
|
{
|
|
10813
|
-
namespace:
|
|
10814
|
-
key:
|
|
10725
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
10726
|
+
key: TranslatorTranslationFieldKey.DESCRIPTION
|
|
10815
10727
|
},
|
|
10816
10728
|
{
|
|
10817
|
-
namespace:
|
|
10818
|
-
key:
|
|
10729
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
10730
|
+
key: TranslatorTranslationFieldKey.SECRET
|
|
10819
10731
|
}
|
|
10820
10732
|
]);
|
|
10821
10733
|
return {
|
|
@@ -10946,13 +10858,13 @@ const ARobots = defineComponent({
|
|
|
10946
10858
|
setup: ctx
|
|
10947
10859
|
});
|
|
10948
10860
|
const translationName = useTranslation({
|
|
10949
|
-
namespace:
|
|
10950
|
-
key:
|
|
10861
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
10862
|
+
key: TranslatorTranslationEntityKey.ROBOT,
|
|
10951
10863
|
count: 2
|
|
10952
10864
|
});
|
|
10953
10865
|
const translation = useTranslation({
|
|
10954
|
-
namespace:
|
|
10955
|
-
key:
|
|
10866
|
+
namespace: TranslatorTranslationNamespace.VUECS,
|
|
10867
|
+
key: TranslatorTranslationVuecsKey.NO_MORE,
|
|
10956
10868
|
data: { name: translationName }
|
|
10957
10869
|
});
|
|
10958
10870
|
return () => render({ noMore: { content: translation.value } });
|
|
@@ -11361,36 +11273,36 @@ var AUserForm_vue_vue_type_script_lang_default = defineComponent({
|
|
|
11361
11273
|
showRealmPicker,
|
|
11362
11274
|
translationsDefault: useTranslations([
|
|
11363
11275
|
{
|
|
11364
|
-
namespace:
|
|
11365
|
-
key:
|
|
11276
|
+
namespace: TranslatorTranslationNamespace.COMMON,
|
|
11277
|
+
key: TranslatorTranslationCommonKey.ACTIVE
|
|
11366
11278
|
},
|
|
11367
11279
|
{
|
|
11368
|
-
namespace:
|
|
11369
|
-
key:
|
|
11280
|
+
namespace: TranslatorTranslationNamespace.COMMON,
|
|
11281
|
+
key: TranslatorTranslationCommonKey.INACTIVE
|
|
11370
11282
|
},
|
|
11371
11283
|
{
|
|
11372
|
-
namespace:
|
|
11373
|
-
key:
|
|
11284
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
11285
|
+
key: TranslatorTranslationFieldKey.DISPLAY_NAME
|
|
11374
11286
|
},
|
|
11375
11287
|
{
|
|
11376
|
-
namespace:
|
|
11377
|
-
key:
|
|
11288
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
11289
|
+
key: TranslatorTranslationFieldKey.EMAIL
|
|
11378
11290
|
},
|
|
11379
11291
|
{
|
|
11380
|
-
namespace:
|
|
11381
|
-
key:
|
|
11292
|
+
namespace: TranslatorTranslationNamespace.COMMON,
|
|
11293
|
+
key: TranslatorTranslationCommonKey.LOCKED
|
|
11382
11294
|
},
|
|
11383
11295
|
{
|
|
11384
|
-
namespace:
|
|
11385
|
-
key:
|
|
11296
|
+
namespace: TranslatorTranslationNamespace.COMMON,
|
|
11297
|
+
key: TranslatorTranslationCommonKey.NOT_LOCKED
|
|
11386
11298
|
},
|
|
11387
11299
|
{
|
|
11388
|
-
namespace:
|
|
11389
|
-
key:
|
|
11300
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
11301
|
+
key: TranslatorTranslationFieldKey.NAME
|
|
11390
11302
|
},
|
|
11391
11303
|
{
|
|
11392
|
-
namespace:
|
|
11393
|
-
key:
|
|
11304
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
11305
|
+
key: TranslatorTranslationFieldKey.DESCRIPTION
|
|
11394
11306
|
}
|
|
11395
11307
|
]),
|
|
11396
11308
|
onNameChange,
|
|
@@ -11525,13 +11437,13 @@ const AUsers = defineComponent({
|
|
|
11525
11437
|
setup: ctx
|
|
11526
11438
|
});
|
|
11527
11439
|
const translationName = useTranslation({
|
|
11528
|
-
namespace:
|
|
11529
|
-
key:
|
|
11440
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
11441
|
+
key: TranslatorTranslationEntityKey.USER,
|
|
11530
11442
|
count: 2
|
|
11531
11443
|
});
|
|
11532
11444
|
const translation = useTranslation({
|
|
11533
|
-
namespace:
|
|
11534
|
-
key:
|
|
11445
|
+
namespace: TranslatorTranslationNamespace.VUECS,
|
|
11446
|
+
key: TranslatorTranslationVuecsKey.NO_MORE,
|
|
11535
11447
|
data: { name: translationName }
|
|
11536
11448
|
});
|
|
11537
11449
|
return () => render({ noMore: { content: translation.value } });
|
|
@@ -12222,20 +12134,20 @@ var Login_vue_vue_type_script_lang_default = defineComponent({
|
|
|
12222
12134
|
const v = useValidup(new LoginCredentialsValidator(), form);
|
|
12223
12135
|
const translationsDefault = useTranslations([
|
|
12224
12136
|
{
|
|
12225
|
-
namespace:
|
|
12226
|
-
key:
|
|
12137
|
+
namespace: TranslatorTranslationNamespace.ACTION,
|
|
12138
|
+
key: TranslatorTranslationActionKey.LOGIN
|
|
12227
12139
|
},
|
|
12228
12140
|
{
|
|
12229
|
-
namespace:
|
|
12230
|
-
key:
|
|
12141
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
12142
|
+
key: TranslatorTranslationFieldKey.NAME
|
|
12231
12143
|
},
|
|
12232
12144
|
{
|
|
12233
|
-
namespace:
|
|
12234
|
-
key:
|
|
12145
|
+
namespace: TranslatorTranslationNamespace.FIELD,
|
|
12146
|
+
key: TranslatorTranslationFieldKey.PASSWORD
|
|
12235
12147
|
},
|
|
12236
12148
|
{
|
|
12237
|
-
namespace:
|
|
12238
|
-
key:
|
|
12149
|
+
namespace: TranslatorTranslationNamespace.ENTITY,
|
|
12150
|
+
key: TranslatorTranslationEntityKey.IDENTITY_PROVIDER,
|
|
12239
12151
|
count: 2
|
|
12240
12152
|
}
|
|
12241
12153
|
]);
|
|
@@ -12275,8 +12187,8 @@ var Login_vue_vue_type_script_lang_default = defineComponent({
|
|
|
12275
12187
|
emit("done");
|
|
12276
12188
|
} catch (e) {
|
|
12277
12189
|
emit("failed", e instanceof Error ? e.message : await translate({
|
|
12278
|
-
namespace:
|
|
12279
|
-
key:
|
|
12190
|
+
namespace: TranslatorTranslationNamespace.CLIENT,
|
|
12191
|
+
key: TranslatorTranslationClientKey.LOGIN_FAILED
|
|
12280
12192
|
}));
|
|
12281
12193
|
}
|
|
12282
12194
|
};
|
|
@@ -12434,8 +12346,8 @@ var AuthorizeScopes_vue_vue_type_script_lang_default = defineComponent({
|
|
|
12434
12346
|
},
|
|
12435
12347
|
setup(props) {
|
|
12436
12348
|
const httpClient = injectHTTPClient();
|
|
12437
|
-
const translationsClient = useTranslationsForNamespace(
|
|
12438
|
-
key:
|
|
12349
|
+
const translationsClient = useTranslationsForNamespace(TranslatorTranslationNamespace.CLIENT, [{
|
|
12350
|
+
key: TranslatorTranslationClientKey.SCOPE_GRANT_INTRO,
|
|
12439
12351
|
data: { client: props.client.name }
|
|
12440
12352
|
}]);
|
|
12441
12353
|
const scopesRequestedNormalized = computed(() => {
|
|
@@ -12498,23 +12410,23 @@ var AuthorizeForm_vue_vue_type_script_lang_default = defineComponent({
|
|
|
12498
12410
|
const httpClient = injectHTTPClient();
|
|
12499
12411
|
const translationsDefault = useTranslations([
|
|
12500
12412
|
{
|
|
12501
|
-
namespace:
|
|
12502
|
-
key:
|
|
12413
|
+
namespace: TranslatorTranslationNamespace.COMMON,
|
|
12414
|
+
key: TranslatorTranslationCommonKey.APPLICATION
|
|
12503
12415
|
},
|
|
12504
12416
|
{
|
|
12505
|
-
namespace:
|
|
12506
|
-
key:
|
|
12417
|
+
namespace: TranslatorTranslationNamespace.ACTION,
|
|
12418
|
+
key: TranslatorTranslationActionKey.ABORT
|
|
12507
12419
|
},
|
|
12508
12420
|
{
|
|
12509
|
-
namespace:
|
|
12510
|
-
key:
|
|
12421
|
+
namespace: TranslatorTranslationNamespace.ACTION,
|
|
12422
|
+
key: TranslatorTranslationActionKey.AUTHORIZE
|
|
12511
12423
|
}
|
|
12512
12424
|
]);
|
|
12513
|
-
const translationsClient = useTranslationsForNamespace(
|
|
12514
|
-
{ key:
|
|
12515
|
-
{ key:
|
|
12425
|
+
const translationsClient = useTranslationsForNamespace(TranslatorTranslationNamespace.CLIENT, [
|
|
12426
|
+
{ key: TranslatorTranslationClientKey.ONCE_AUTHORIZED_REDIRECT },
|
|
12427
|
+
{ key: TranslatorTranslationClientKey.ACTIVE_SINCE },
|
|
12516
12428
|
{
|
|
12517
|
-
key:
|
|
12429
|
+
key: TranslatorTranslationClientKey.GOVERNED_BY,
|
|
12518
12430
|
data: { client: props.client.name }
|
|
12519
12431
|
}
|
|
12520
12432
|
]);
|
|
@@ -12642,8 +12554,8 @@ var Authorize_default = defineComponent({
|
|
|
12642
12554
|
const error = ref(null);
|
|
12643
12555
|
const client = ref(null);
|
|
12644
12556
|
const loadingText = useTranslation({
|
|
12645
|
-
namespace:
|
|
12646
|
-
key:
|
|
12557
|
+
namespace: TranslatorTranslationNamespace.COMMON,
|
|
12558
|
+
key: TranslatorTranslationCommonKey.LOADING
|
|
12647
12559
|
});
|
|
12648
12560
|
const resolve = async () => {
|
|
12649
12561
|
if (props.error) {
|
|
@@ -12680,177 +12592,8 @@ var Authorize_default = defineComponent({
|
|
|
12680
12592
|
};
|
|
12681
12593
|
}
|
|
12682
12594
|
});
|
|
12683
|
-
|
|
12684
|
-
|
|
12685
|
-
AAuthorize: () => Authorize_default,
|
|
12686
|
-
AAuthorizeText: () => AuthorizeText_default,
|
|
12687
|
-
AClient: () => AClient,
|
|
12688
|
-
AClientForm: () => AClientForm_default,
|
|
12689
|
-
AClientPermissionAssignment: () => AClientPermissionAssignment_default,
|
|
12690
|
-
AClientPermissionAssignments: () => AClientPermissionAssignments_default,
|
|
12691
|
-
AClientPicker: () => AClientPicker,
|
|
12692
|
-
AClientRoleAssignment: () => AClientRoleAssignment_default,
|
|
12693
|
-
AClientRoleAssignments: () => AClientRoleAssignments_default,
|
|
12694
|
-
AClientScope: () => AClientScope,
|
|
12695
|
-
AClientScopeAssignment: () => AClientScopeAssignment_default,
|
|
12696
|
-
AClientScopeAssignments: () => AClientScopeAssignments_default,
|
|
12697
|
-
AClientScopes: () => AClientScopes,
|
|
12698
|
-
AClients: () => AClients,
|
|
12699
|
-
ACompositePolicyForm: () => ACompositePolicyForm_default,
|
|
12700
|
-
ADatePolicyForm: () => ADatePolicyForm_default,
|
|
12701
|
-
AEntityDelete: () => AEntityDelete,
|
|
12702
|
-
AFormInputList: () => AFormInputList_default,
|
|
12703
|
-
AFormInputListItem: () => AFormInputListItem_default,
|
|
12704
|
-
AFormSubmit: () => AFormSubmit,
|
|
12705
|
-
AIdentityPolicyForm: () => AIdentityPolicyForm_default,
|
|
12706
|
-
AIdentityProvider: () => AIdentityProvider,
|
|
12707
|
-
AIdentityProviderForm: () => AIdentityProviderForm_default,
|
|
12708
|
-
AIdentityProviderIcon: () => AIdentityProviderIcon_default,
|
|
12709
|
-
AIdentityProviderLdapForm: () => AIdentityProviderLdapForm_default,
|
|
12710
|
-
AIdentityProviderOAuth2Form: () => AIdentityProviderOAuth2Form_default,
|
|
12711
|
-
AIdentityProviderPreset: () => AIdentityProviderPreset,
|
|
12712
|
-
AIdentityProviderProtocol: () => AIdentityProviderProtocol,
|
|
12713
|
-
AIdentityProviderRoleAssignment: () => AIdentityProviderRoleAssignment_default,
|
|
12714
|
-
AIdentityProviderRoleAssignments: () => AIdentityProviderRoleAssignments_default,
|
|
12715
|
-
AIdentityProviders: () => AIdentityProviders,
|
|
12716
|
-
ALogin: () => Login_default,
|
|
12717
|
-
ANameInput: () => ANameInput_default,
|
|
12718
|
-
APagination: () => APagination,
|
|
12719
|
-
APermission: () => APermission,
|
|
12720
|
-
APermissionCheck: () => APermissionCheck,
|
|
12721
|
-
APermissionClientAssignments: () => APermissionClientAssignments_default,
|
|
12722
|
-
APermissionForm: () => APermissionForm_default,
|
|
12723
|
-
APermissionPolicyAssignment: () => APermissionPolicyAssignment_default,
|
|
12724
|
-
APermissionPolicyAssignments: () => APermissionPolicyAssignments_default,
|
|
12725
|
-
APermissionPolicyBindingButton: () => APermissionPolicyBindingButton,
|
|
12726
|
-
APermissionRobotAssignments: () => APermissionRobotAssignments_default,
|
|
12727
|
-
APermissionRoleAssignments: () => APermissionRoleAssignments_default,
|
|
12728
|
-
APermissionUserAssignments: () => APermissionUserAssignments_default,
|
|
12729
|
-
APermissions: () => APermissions,
|
|
12730
|
-
APolicies: () => APolicies,
|
|
12731
|
-
APolicy: () => APolicy,
|
|
12732
|
-
APolicyDetailNav: () => APolicyDetailNav_default,
|
|
12733
|
-
APolicyForm: () => APolicyForm_default,
|
|
12734
|
-
APolicyInlineInfo: () => APolicyInlineInfo_default,
|
|
12735
|
-
APolicySummary: () => APolicySummary_default,
|
|
12736
|
-
APolicyTypeBadge: () => APolicyTypeBadge_default,
|
|
12737
|
-
APolicyTypePicker: () => APolicyTypePicker_default,
|
|
12738
|
-
ARealm: () => ARealm,
|
|
12739
|
-
ARealmForm: () => ARealmForm_default,
|
|
12740
|
-
ARealmMatchPolicyForm: () => ARealmMatchPolicyForm_default,
|
|
12741
|
-
ARealmPicker: () => ARealmPicker,
|
|
12742
|
-
ARealms: () => ARealms,
|
|
12743
|
-
ARobot: () => ARobot,
|
|
12744
|
-
ARobotForm: () => ARobotForm_default,
|
|
12745
|
-
ARobotPermissionAssignment: () => ARobotPermissionAssignment_default,
|
|
12746
|
-
ARobotPermissionAssignments: () => ARobotPermissionAssignments_default,
|
|
12747
|
-
ARobotRoleAssignment: () => ARobotRoleAssignment_default,
|
|
12748
|
-
ARobotRoleAssignments: () => ARobotRoleAssignments_default,
|
|
12749
|
-
ARobots: () => ARobots,
|
|
12750
|
-
ARole: () => ARole,
|
|
12751
|
-
ARoleClientAssignments: () => ARoleClientAssignments_default,
|
|
12752
|
-
ARoleForm: () => ARoleForm_default,
|
|
12753
|
-
ARolePermissionAssignment: () => ARolePermissionAssignment_default,
|
|
12754
|
-
ARolePermissionAssignments: () => ARolePermissionAssignments_default,
|
|
12755
|
-
ARoleRobotAssignments: () => ARoleRobotAssignments_default,
|
|
12756
|
-
ARoleUserAssignments: () => ARoleUserAssignments_default,
|
|
12757
|
-
ARoles: () => ARoles,
|
|
12758
|
-
AScope: () => AScope,
|
|
12759
|
-
AScopeClientAssignments: () => AScopeClientAssignments_default,
|
|
12760
|
-
AScopeForm: () => AScopeForm_default,
|
|
12761
|
-
AScopes: () => AScopes,
|
|
12762
|
-
ASearch: () => ASearch,
|
|
12763
|
-
ASecretInput: () => ASecretInput_default,
|
|
12764
|
-
ATimePolicyForm: () => ATimePolicyForm_default,
|
|
12765
|
-
ATitle: () => ATitle,
|
|
12766
|
-
AToggleButton: () => AToggleButton_default,
|
|
12767
|
-
AUser: () => AUser,
|
|
12768
|
-
AUserForm: () => AUserForm_default,
|
|
12769
|
-
AUserPasswordForm: () => AUserPasswordForm_default,
|
|
12770
|
-
AUserPermissionAssignment: () => AUserPermissionAssignment_default,
|
|
12771
|
-
AUserPermissionAssignments: () => AUserPermissionAssignments_default,
|
|
12772
|
-
AUserRoleAssignment: () => AUserRoleAssignment_default,
|
|
12773
|
-
AUserRoleAssignments: () => AUserRoleAssignments_default,
|
|
12774
|
-
AUsers: () => AUsers,
|
|
12775
|
-
EntityRecordError: () => EntityRecordError,
|
|
12776
|
-
HTTPClientSymbol: () => HTTPClientSymbol,
|
|
12777
|
-
LanguageSwitcherDropdown: () => LanguageSwitcherDropdown,
|
|
12778
|
-
ListHandlers: () => ListHandlers,
|
|
12779
|
-
STORE_ID: () => STORE_ID,
|
|
12780
|
-
SlotName: () => SlotName,
|
|
12781
|
-
SocketClientSymbol: () => SocketClientSymbol,
|
|
12782
|
-
StoreDispatcherEventName: () => StoreDispatcherEventName,
|
|
12783
|
-
assignFormProperties: () => assignFormProperties,
|
|
12784
|
-
buildEntityVSlotProps: () => buildEntityVSlotProps,
|
|
12785
|
-
buildFormCheckbox: () => buildFormCheckbox,
|
|
12786
|
-
buildFormGroup: () => buildFormGroup,
|
|
12787
|
-
buildFormInput: () => buildFormInput,
|
|
12788
|
-
buildFormInputText: () => buildFormInputText,
|
|
12789
|
-
buildFormSelect: () => buildFormSelect,
|
|
12790
|
-
buildFormSubmit: () => buildFormSubmit,
|
|
12791
|
-
buildFormSubmitWithTranslations: () => buildFormSubmitWithTranslations,
|
|
12792
|
-
buildFormSwitch: () => buildFormSwitch,
|
|
12793
|
-
buildFormTextarea: () => buildFormTextarea,
|
|
12794
|
-
buildSubmitButtonDefaults: () => buildSubmitButtonDefaults,
|
|
12795
|
-
createFormSubmitTranslations: () => createFormSubmitTranslations,
|
|
12796
|
-
createPermissionCheckerReactiveFn: () => createPermissionCheckerReactiveFn,
|
|
12797
|
-
createStore: () => createStore,
|
|
12798
|
-
createStoreDispatcher: () => createStoreDispatcher,
|
|
12799
|
-
default: () => src_default,
|
|
12800
|
-
defineEntityCollectionManager: () => defineEntityCollectionManager,
|
|
12801
|
-
defineEntityCollectionVEmitOptions: () => defineEntityCollectionVEmitOptions,
|
|
12802
|
-
defineEntityCollectionVProps: () => defineEntityCollectionVProps,
|
|
12803
|
-
defineEntityManager: () => defineEntityManager,
|
|
12804
|
-
defineEntityPicker: () => defineEntityPicker,
|
|
12805
|
-
defineEntityPickerVEmitOptions: () => defineEntityPickerVEmitOptions,
|
|
12806
|
-
defineEntityPickerVProps: () => defineEntityPickerVProps,
|
|
12807
|
-
defineEntitySocketManager: () => defineEntitySocketManager,
|
|
12808
|
-
defineEntityVEmitOptions: () => defineEntityVEmitOptions,
|
|
12809
|
-
defineEntityVProps: () => defineEntityVProps,
|
|
12810
|
-
extractValidupResultsFromChild: () => extractValidupResultsFromChild,
|
|
12811
|
-
getSeverity: () => getSeverity,
|
|
12812
|
-
hasHTTPClient: () => hasHTTPClient,
|
|
12813
|
-
hasHTTPClientAuthenticationHook: () => hasHTTPClientAuthenticationHook,
|
|
12814
|
-
hasNormalizedSlot: () => hasNormalizedSlot,
|
|
12815
|
-
hasStoreFactory: () => hasStoreFactory,
|
|
12816
|
-
inject: () => inject,
|
|
12817
|
-
injectHTTPClient: () => injectHTTPClient,
|
|
12818
|
-
injectHTTPClientAuthenticationHook: () => injectHTTPClientAuthenticationHook,
|
|
12819
|
-
injectSocketManager: () => injectSocketManager,
|
|
12820
|
-
injectStore: () => injectStore,
|
|
12821
|
-
injectStoreDispatcher: () => injectStoreDispatcher,
|
|
12822
|
-
injectStoreFactory: () => injectStoreFactory,
|
|
12823
|
-
injectTranslatorLocale: () => injectTranslatorLocale,
|
|
12824
|
-
install: () => install,
|
|
12825
|
-
installHTTPClient: () => installHTTPClient,
|
|
12826
|
-
installHTTPClientAuthenticationHook: () => installHTTPClientAuthenticationHook,
|
|
12827
|
-
installSocketManager: () => installSocketManager,
|
|
12828
|
-
installStore: () => installStore,
|
|
12829
|
-
installTranslator: () => installTranslator,
|
|
12830
|
-
isQuerySortedDescByDate: () => isQuerySortedDescByDate,
|
|
12831
|
-
isSocketManagerUsable: () => isSocketManagerUsable,
|
|
12832
|
-
mergeEntityCollectionRenderOptions: () => mergeEntityCollectionRenderOptions,
|
|
12833
|
-
normalizeSlot: () => normalizeSlot,
|
|
12834
|
-
onChange: () => onChange,
|
|
12835
|
-
provide: () => provide,
|
|
12836
|
-
provideHTTPClient: () => provideHTTPClient,
|
|
12837
|
-
provideHTTPClientAuthenticationHook: () => provideHTTPClientAuthenticationHook,
|
|
12838
|
-
provideSocketManager: () => provideSocketManager,
|
|
12839
|
-
provideStoreDispatcher: () => provideStoreDispatcher,
|
|
12840
|
-
provideStoreFactory: () => provideStoreFactory,
|
|
12841
|
-
renderToggleButton: () => renderToggleButton,
|
|
12842
|
-
storeToRefs: () => storeToRefs,
|
|
12843
|
-
useIsEditing: () => useIsEditing,
|
|
12844
|
-
usePermissionCheck: () => usePermissionCheck,
|
|
12845
|
-
useTranslation: () => useTranslation,
|
|
12846
|
-
useTranslations: () => useTranslations,
|
|
12847
|
-
useTranslationsForComposable: () => useTranslationsForComposable,
|
|
12848
|
-
useTranslationsForField: () => useTranslationsForField,
|
|
12849
|
-
useTranslationsForNamespace: () => useTranslationsForNamespace,
|
|
12850
|
-
useTranslator: () => useTranslator,
|
|
12851
|
-
useUpdatedAt: () => useUpdatedAt,
|
|
12852
|
-
wrapFnWithBusyState: () => wrapFnWithBusyState
|
|
12853
|
-
}), core_exports);
|
|
12595
|
+
//#endregion
|
|
12596
|
+
//#region src/index.ts
|
|
12854
12597
|
var src_default = { install };
|
|
12855
12598
|
//#endregion
|
|
12856
12599
|
export { AAttributeNamesPolicyForm_default as AAttributeNamesPolicyForm, Authorize_default as AAuthorize, AuthorizeText_default as AAuthorizeText, AClient, AClientForm_default as AClientForm, AClientPermissionAssignment_default as AClientPermissionAssignment, AClientPermissionAssignments_default as AClientPermissionAssignments, AClientPicker, AClientRoleAssignment_default as AClientRoleAssignment, AClientRoleAssignments_default as AClientRoleAssignments, AClientScope, AClientScopeAssignment_default as AClientScopeAssignment, AClientScopeAssignments_default as AClientScopeAssignments, AClientScopes, AClients, ACompositePolicyForm_default as ACompositePolicyForm, ADatePolicyForm_default as ADatePolicyForm, AEntityDelete, AFormInputList_default as AFormInputList, AFormInputListItem_default as AFormInputListItem, AFormSubmit, AIdentityPolicyForm_default as AIdentityPolicyForm, AIdentityProvider, AIdentityProviderForm_default as AIdentityProviderForm, AIdentityProviderIcon_default as AIdentityProviderIcon, AIdentityProviderLdapForm_default as AIdentityProviderLdapForm, AIdentityProviderOAuth2Form_default as AIdentityProviderOAuth2Form, AIdentityProviderPreset, AIdentityProviderProtocol, AIdentityProviderRoleAssignment_default as AIdentityProviderRoleAssignment, AIdentityProviderRoleAssignments_default as AIdentityProviderRoleAssignments, AIdentityProviders, Login_default as ALogin, ANameInput_default as ANameInput, APagination, APermission, APermissionCheck, APermissionClientAssignments_default as APermissionClientAssignments, APermissionForm_default as APermissionForm, APermissionPolicyAssignment_default as APermissionPolicyAssignment, APermissionPolicyAssignments_default as APermissionPolicyAssignments, APermissionPolicyBindingButton, APermissionRobotAssignments_default as APermissionRobotAssignments, APermissionRoleAssignments_default as APermissionRoleAssignments, APermissionUserAssignments_default as APermissionUserAssignments, APermissions, APolicies, APolicy, APolicyDetailNav_default as APolicyDetailNav, APolicyForm_default as APolicyForm, APolicyInlineInfo_default as APolicyInlineInfo, APolicySummary_default as APolicySummary, APolicyTypeBadge_default as APolicyTypeBadge, APolicyTypePicker_default as APolicyTypePicker, ARealm, ARealmForm_default as ARealmForm, ARealmMatchPolicyForm_default as ARealmMatchPolicyForm, ARealmPicker, ARealms, ARobot, ARobotForm_default as ARobotForm, ARobotPermissionAssignment_default as ARobotPermissionAssignment, ARobotPermissionAssignments_default as ARobotPermissionAssignments, ARobotRoleAssignment_default as ARobotRoleAssignment, ARobotRoleAssignments_default as ARobotRoleAssignments, ARobots, ARole, ARoleClientAssignments_default as ARoleClientAssignments, ARoleForm_default as ARoleForm, ARolePermissionAssignment_default as ARolePermissionAssignment, ARolePermissionAssignments_default as ARolePermissionAssignments, ARoleRobotAssignments_default as ARoleRobotAssignments, ARoleUserAssignments_default as ARoleUserAssignments, ARoles, AScope, AScopeClientAssignments_default as AScopeClientAssignments, AScopeForm_default as AScopeForm, AScopes, ASearch, ASecretInput_default as ASecretInput, ATimePolicyForm_default as ATimePolicyForm, ATitle, AToggleButton_default as AToggleButton, AUser, AUserForm_default as AUserForm, AUserPasswordForm_default as AUserPasswordForm, AUserPermissionAssignment_default as AUserPermissionAssignment, AUserPermissionAssignments_default as AUserPermissionAssignments, AUserRoleAssignment_default as AUserRoleAssignment, AUserRoleAssignments_default as AUserRoleAssignments, AUsers, EntityRecordError, HTTPClientSymbol, LanguageSwitcherDropdown, ListHandlers, STORE_ID, SlotName, SocketClientSymbol, StoreDispatcherEventName, assignFormProperties, buildEntityVSlotProps, buildFormCheckbox, buildFormGroup, buildFormInput, buildFormInputText, buildFormSelect, buildFormSubmit, buildFormSubmitWithTranslations, buildFormSwitch, buildFormTextarea, buildSubmitButtonDefaults, createFormSubmitTranslations, createPermissionCheckerReactiveFn, createStore, createStoreDispatcher, src_default as default, defineEntityCollectionManager, defineEntityCollectionVEmitOptions, defineEntityCollectionVProps, defineEntityManager, defineEntityPicker, defineEntityPickerVEmitOptions, defineEntityPickerVProps, defineEntitySocketManager, defineEntityVEmitOptions, defineEntityVProps, extractValidupResultsFromChild, getSeverity, hasHTTPClient, hasHTTPClientAuthenticationHook, hasNormalizedSlot, hasStoreFactory, inject, injectHTTPClient, injectHTTPClientAuthenticationHook, injectSocketManager, injectStore, injectStoreDispatcher, injectStoreFactory, injectTranslatorLocale, install, installHTTPClient, installHTTPClientAuthenticationHook, installSocketManager, installStore, installTranslator, isQuerySortedDescByDate, isSocketManagerUsable, mergeEntityCollectionRenderOptions, normalizeSlot, onChange, provide, provideHTTPClient, provideHTTPClientAuthenticationHook, provideSocketManager, provideStoreDispatcher, provideStoreFactory, renderToggleButton, storeToRefs, useIsEditing, usePermissionCheck, useTranslation, useTranslations, useTranslationsForComposable, useTranslationsForField, useTranslationsForNamespace, useTranslator, useUpdatedAt, wrapFnWithBusyState };
|