@privateaim/client-vue 0.8.22 → 0.8.23
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/index.mjs +7 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +14 -14
package/dist/index.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { hasOwnProperty, isObject as isObject$1, merge, createMerger } from 'smob';
|
|
2
|
-
import { hasInjectionContext, inject as inject$1, provide as provide$1, defineComponent, computed, renderSlot, normalizeProps, guardReactiveProps,
|
|
2
|
+
import { hasInjectionContext, inject as inject$1, provide as provide$1, defineComponent, computed, renderSlot, normalizeProps, guardReactiveProps, openBlock, createBlock, resolveDynamicComponent, withCtx, mergeProps, h, withDirectives, isRef, onMounted, onUnmounted, watch, ref, unref, toRef, resolveComponent, createElementBlock, createElementVNode, normalizeStyle, normalizeClass, toDisplayString, createTextVNode, Fragment, createVNode, createCommentVNode, reactive, nextTick, withModifiers, renderList, getCurrentInstance, useTemplateRef, toHandlers, resolveDirective, vModelCheckbox, vShow } from 'vue';
|
|
3
3
|
import { VCLink } from '@vuecs/link';
|
|
4
4
|
import { AnalysisError, buildDomainNamespaceName, DomainEventSubscriptionName, buildDomainChannelName, AnalysisCommand, AnalysisConfiguratorCommandChecker, AnalysisDistributorCommandChecker, AnalysisBuilderCommandChecker, DomainType, ProjectNodeApprovalCommand, ProjectNodeApprovalStatus, DomainSubType, AnalysisBucketType, MasterImageCommand, AnalysisNodeApprovalCommand, AnalysisNodeApprovalStatus, RegistryAPICommand, registryRobotSecretRegex, ServiceID, RegistryProjectType, NodeType } from '@privateaim/core-kit';
|
|
5
|
-
import { extractErrorMessage, hasOwnProperty as hasOwnProperty$1, buildDomainEventFullName, PermissionName, ProcessStatus, humanFileSize, createNanoID, alphaNumHyphenUnderscoreRegex,
|
|
6
|
-
import { injectHTTPClientAuthenticationHook, inject as inject$2, provide as provide$2, injectStore, storeToRefs, injectStoreDispatcher, StoreDispatcherEventName, usePermissionCheck, useTranslation, TranslatorTranslationGroup, ATitle, ASearch, APagination, createFormSubmitTranslations, buildFormSubmitWithTranslations, TranslatorTranslationDefaultKey, ARobot, AUser, renderToggleButton as renderToggleButton$1,
|
|
5
|
+
import { extractErrorMessage, hasOwnProperty as hasOwnProperty$1, buildDomainEventFullName, PermissionName, ProcessStatus, humanFileSize, createNanoID, alphaNumHyphenUnderscoreRegex, isHex, hexToUTF8, CryptoAsymmetricAlgorithm, exportAsymmetricPublicKey, exportAsymmetricPrivateKey } from '@privateaim/kit';
|
|
6
|
+
import { injectHTTPClientAuthenticationHook, inject as inject$2, provide as provide$2, injectStore, storeToRefs, injectStoreDispatcher, StoreDispatcherEventName, usePermissionCheck, useTranslation, TranslatorTranslationGroup, ATitle, ASearch, APagination, createFormSubmitTranslations, buildFormSubmitWithTranslations, TranslatorTranslationDefaultKey, ARobot, AUser, renderToggleButton as renderToggleButton$1, APermissions, defineEntityCollectionVProps, ARealms, AClient, AClientForm } from '@authup/client-web-kit';
|
|
7
7
|
import { vBTooltip, BModal } from 'bootstrap-vue-next';
|
|
8
8
|
import { buildList, SlotName } from '@vuecs/list-controls';
|
|
9
9
|
import { Client, isClientErrorWithStatusCode } from '@privateaim/core-http-kit';
|
|
@@ -1228,7 +1228,7 @@ function createList(context) {
|
|
|
1228
1228
|
return createListRaw(context);
|
|
1229
1229
|
}
|
|
1230
1230
|
|
|
1231
|
-
var EntityListSlotName =
|
|
1231
|
+
var EntityListSlotName = function(EntityListSlotName) {
|
|
1232
1232
|
EntityListSlotName[EntityListSlotName["DEFAULT"] = SlotName.DEFAULT] = "DEFAULT";
|
|
1233
1233
|
EntityListSlotName[EntityListSlotName["BODY"] = SlotName.BODY] = "BODY";
|
|
1234
1234
|
EntityListSlotName[EntityListSlotName["ITEM"] = SlotName.ITEM] = "ITEM";
|
|
@@ -9346,12 +9346,9 @@ var _sfc_main$1 = defineComponent({
|
|
|
9346
9346
|
busy.value = true;
|
|
9347
9347
|
const response = await httpClient.event.getMany(query);
|
|
9348
9348
|
data.value = response.data;
|
|
9349
|
-
meta.value = {
|
|
9350
|
-
...meta.value,
|
|
9351
|
-
|
|
9352
|
-
...meta.value.pagination,
|
|
9353
|
-
...response.meta
|
|
9354
|
-
}
|
|
9349
|
+
meta.value.pagination = {
|
|
9350
|
+
...meta.value.pagination,
|
|
9351
|
+
...response.meta
|
|
9355
9352
|
};
|
|
9356
9353
|
busy.value = false;
|
|
9357
9354
|
};
|