@omnia/fx 8.0.548-dev → 8.0.549-dev
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/internal-do-not-import-from-here/core/index.d.ts +3 -1
- package/internal-do-not-import-from-here/index.d.ts +30 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/ux/admin/usermanagement/usertypes/blades/UserTypeLayoutDialog.d.ts +17 -0
- package/package.json +2 -2
- /package/internal-do-not-import-from-here/ux/admin/usermanagement/usertypes/blades/{UserTypeLayoutBlade.d.ts → UserTypeLayoutBlade_old.d.ts} +0 -0
@@ -1,4 +1,6 @@
|
|
1
|
-
export { defineFactory, defineInjectable,
|
1
|
+
export { defineFactory, defineInjectable, Http, http, HttpBuilder, Inject, Injectable, isInjectable, ServiceContainer, ServiceContainerContext, ServiceLocator, useInject, useProvide, type SetupFactoryContext } from "@omnia/fx-models/internal-do-not-import-from-here/shared";
|
2
|
+
export * from "@omnia/fx-models/internal-do-not-import-from-here/shared/services";
|
3
|
+
export * from "@omnia/fx-models/internal-do-not-import-from-here/shared/providers";
|
2
4
|
export { Broadcast } from "@omnia/fx-models/internal-do-not-import-from-here/shared/broadcasting";
|
3
5
|
export { ObjectMerger } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
4
6
|
export { Extend, registerApi } from "./Extend";
|
@@ -47,7 +47,6 @@ export declare function setCurrentManifest(omniaServiceId: any, resourceId: any)
|
|
47
47
|
ContextProviderCollection: typeof Exposes.ContextProviderCollection;
|
48
48
|
defineFactory: typeof Exposes.defineFactory;
|
49
49
|
defineInjectable: typeof Exposes.defineInjectable;
|
50
|
-
defineService: typeof Exposes.defineService;
|
51
50
|
Http: typeof Exposes.Http;
|
52
51
|
http: typeof Exposes.http;
|
53
52
|
HttpBuilder: typeof Exposes.HttpBuilder;
|
@@ -64,6 +63,36 @@ export declare function setCurrentManifest(omniaServiceId: any, resourceId: any)
|
|
64
63
|
Extend: Models.IExtend;
|
65
64
|
registerApi: typeof Exposes.registerApi;
|
66
65
|
ManifestResourceLoader: typeof Exposes.ManifestResourceLoader;
|
66
|
+
defineService<TReturnSetup extends {
|
67
|
+
[key: string]: Function;
|
68
|
+
}>(setup: (ctx: Exposes.SetupServiceContext) => TReturnSetup, lifetime?: Models.InstanceLifetimes): () => TReturnSetup;
|
69
|
+
defineService<TReturnSetup extends {
|
70
|
+
[key: string]: Function;
|
71
|
+
}, T1>(setup: (ctx: Exposes.SetupServiceContext, param1: T1, lifetime?: Models.InstanceLifetimes) => TReturnSetup): (param1: T1) => TReturnSetup;
|
72
|
+
defineService<TReturnSetup extends {
|
73
|
+
[key: string]: Function;
|
74
|
+
}, T1, T2>(setup: (ctx: Exposes.SetupServiceContext, param1: T1, param2: T2, lifetime?: Models.InstanceLifetimes) => TReturnSetup): (param1: T1, param2: T2) => TReturnSetup;
|
75
|
+
defineService<TReturnSetup extends {
|
76
|
+
[key: string]: Function;
|
77
|
+
}, T1, T2, T3>(setup: (ctx: Exposes.SetupServiceContext, param1: T1, param2: T2, param3: T3, lifetime?: Models.InstanceLifetimes) => TReturnSetup): (param1: T1, param2: T2, param3: T3) => TReturnSetup;
|
78
|
+
defineService<TReturnSetup extends {
|
79
|
+
[key: string]: Function;
|
80
|
+
}, T1, T2, T3, T4>(setup: (ctx: Exposes.SetupServiceContext, param1: T1, param2: T2, param3: T3, param4: T4, lifetime?: Models.InstanceLifetimes) => TReturnSetup): (param1: T1, param2: T2, param3: T3, param4: T4) => TReturnSetup;
|
81
|
+
defineService<TReturnSetup extends {
|
82
|
+
[key: string]: Function;
|
83
|
+
}, T1, T2, T3, T4, T5>(setup: (ctx: Exposes.SetupServiceContext, param1: T1, param2: T2, param3: T3, param4: T4, param5: T5, lifetime?: Models.InstanceLifetimes) => TReturnSetup): (param1: T1, param2: T2, param3: T3, param4: T4, param5: T5) => TReturnSetup;
|
84
|
+
realtimeService: () => {
|
85
|
+
onMessage: <TRealtimeChannel extends Models.RealtimeChannel, TRealtimeData extends Models.RealtimeData<TRealtimeChannel, any>>(data: TRealtimeData, callback: (value: TRealtimeData["value"]) => void) => void;
|
86
|
+
send: <TRealtimeChannel extends Models.RealtimeChannel, TRealtimeData extends Models.RealtimeData<TRealtimeChannel, any>>(data: TRealtimeData, value: TRealtimeData["value"]) => void;
|
87
|
+
activateChannel: (channel: any) => void;
|
88
|
+
deactivateChannel: (channel: any) => void;
|
89
|
+
};
|
90
|
+
defineHubClientProvider(provider: Exposes.HubClientProvider): void;
|
91
|
+
getHubClientProvider(): Exposes.HubClientProvider;
|
92
|
+
defineHubRealtimeProvider(provider: Exposes.HubRealtimeProvider): void;
|
93
|
+
getHubRealtimeProvider(): Exposes.HubRealtimeProvider;
|
94
|
+
defineCurrentActorProvider(provider: Exposes.DefineHubCurrentActorProvider): void;
|
95
|
+
getCurrentActorProvider(): Exposes.DefineHubCurrentActorProvider;
|
67
96
|
injectByTypeId(typeId: Models.guid): any;
|
68
97
|
Provide<T>(classType: any, constructorArgs?: T): any;
|
69
98
|
Cookies: typeof Exposes.Cookies;
|
@@ -1 +1 @@
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a2892051-fd9f-4056-ae8d-30d16d48417d']","content":{"./node_modules/@omnia/fx/core/messaging/InternalTopics.js":{"id":"./node_modules/@omnia/fx/core/messaging/internaltopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./node_modules/@omnia/fx/core/services/IAppRouteFactory.js":{"id":"./node_modules/@omnia/fx/core/services/iapproutefactory.js","buildMeta":{"exportsType":"namespace"},"expo.js":["IAppRouteFactory"]},"./node_modules/@omnia/fx/core/services/InternalConfigurationService.js":{"id":"./node_modules/@omnia/fx/core/services/internalconfigurationservice.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalConfigurationService"]},"./node_modules/@omnia/fx-models/shared-mobile/index.js":{"id":"./node_modules/@omnia/fx-models/shared-mobile/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ActivityFeedChannelIdProperty","AllEnterprisePropertiesContentHashSettings","AllEnterprisePropertyDataTypesContentHashSettings","AnalyticService","AnonymousIdentity","ArchiveSortColumn","BoolFilter","BuiltInIdentityProviderIds","CustomIcon","CustomRatio","DocumentDirectionSettings","DynamicGroupIdentity","EmailDisplaySettings","EmailEditorSettings","EmailPropertyDefinition","EmailPropertyDefinitionId","EmailPropertyValue","ExtensionIdentity","FabricIcon","FlagIcon","FontAwesomeIcon","GroupIdentity","GroupSortColumn","HubActorIdBagProperty","Identity","IdentityQuery","IdentityTypes","ImageDisplaySettings","ImageEditorSettings","ImagePropertyDefinition","ImagePropertyValue","ItemQuery","Landscape83Ratio","LandscapeRatio","LanguageDisplaySettings","LanguageEditorSettings","LanguagePropertyDefinition","LanguagePropertyDefinitionId","LanguagePropertyValue","LanguageTags","MaterialIcon","MediaPickerImageRatio","MediaPickerImageRatioDefinition","MediaPickerImageScaling","MediaPickerImageScalingDefinition","MediaPickerRollupImageRatio","MediaPickerRollupImageRatioDefinition","MultilingualTextDisplaySettings","MultilingualTextEditorSettings","MultilingualTextPropertyDefinition","MultilingualTextPropertyValue","OmniaNamedModel","OmniaService","PhoneNumberPropertyValue","PortraitRatio","PropertyLockStatus","ResolvedAnonymousIdentity","ResolvedDynamicGroupIdentity","ResolvedExtensionIdentity","ResolvedGroupIdentity","ResolvedRoleIdentity","ResolvedUserIdentity","RoleIdentity","ScopeTypes","SecurityIdentities","SquareRatio","SvgIcon","TenantApiSettings","TenantAuthenticationSettings","TenantCSOMClientContextFallbackUrl","TenantEnterpriseGlossary","TenantErrorInformation","TenantFaviconSettings","TenantInfoSettings","TenantLanguageSettings","TenantPeopleInformation","TenantPreSetup","TenantProperty","TenantRegionalSettings","TenantThemeManager","TenantTypographyFonts","TextDisplaySettings","TextEditorSettings","TextPropertyDefinition","TextPropertyValue","UserAccessibilitySettings","UserIdentity","UserIdentityQuery","UserPropertyBagModel","UserSortColumn","UserThemeManager","WideRatio","imagePropertyDefinitionId","multilingualTextPropertyDefinitionId","textPropertyDefinitionId"]},"./node_modules/@omnia/fx-models/shared-mobile/ManifestIds.js":{"id":"./node_modules/@omnia/fx-models/shared-mobile/manifestids.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AnalyticService","OmniaService"]},"./node_modules/@omnia/fx/ux/shared-mobile/index.js":{"id":"./node_modules/@omnia/fx/ux/shared-mobile/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["registerUseIconProvider","useIconClass","useIcons"]},"./node_modules/@omnia/fx/ux/velcron/core/models/index.js":{"id":"./node_modules/@omnia/fx/ux/velcron/core/models/index.js","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/core/services/ServiceManifestProviderInternal.js":{"id":"0688ceff-4257-4427-b385-a83d6802c509","buildMeta":{"exportsType":"namespace"},"expo.js":["ServiceManifestProviderInternal"]},"./node_modules/@omnia/fx/core/Extend.js":{"id":"4eeb27d5-906a-4edf-bd38-3d97048cda3d","buildMeta":{"exportsType":"namespace"},"expo.js":["Extend","InternalExtend","registerApi"]},"./node_modules/@omnia/fx/core/index.js":{"id":"97786ea9-4861-48bd-8a57-eae9bbdb4892","buildMeta":{"exportsType":"namespace"},"expo.js":["AppRoutePropertyBagFactory","AuthenticationSessionService","Broadcast","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","Cookies","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GraphClient","Http","HttpBuilder","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","Inject","Injectable","LocalStorage","LocalizationServiceProviders","MD5Util","ManifestResourceLoader","MessageBus","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","ObjectMerger","OmniaPropertyBagBase","Provide","Require","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","Utils","WebUtils","createEventHook","defineFactory","defineInjectable","defineService","http","injectByTypeId","isInjectable","mergeLocaliation","propertyPath","propertyPathValue","registerApi","useInject","useOmniaClient","useProvide"]},"./node_modules/@omnia/fx/core/http/InternalHttpPlugins.js":{"id":"b8d937e0-3fc3-4412-a469-92941b829cdb","buildMeta":{"exportsType":"namespace"},"expo.js":["HttpContextConfigPlugin","HttpRetryPlugIn"]},"./node_modules/@omnia/fx/runtime/core/InternalWebComponentBootstrapper.js":{"id":"c9f21f62-e664-44e4-8cf4-0dcbec75c4bf","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWebComponentBootstrapper"]},"./node_modules/@omnia/fx-models/index.js":{"id":"d0a145a7-d1ef-4217-aa6f-85dd18c4231d","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/core/messaging/InternalMessageBusMediator.js":{"id":"f986d8dd-7c76-40b6-9bf8-b64ac2902642","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/runtime/core/index.js":{"id":"ff061abc-7f0e-444b-b2b9-7ff71c5842c5","buildMeta":{"exportsType":"namespace"},"expo.js":["LoadableManifest","LocalHostingService","ManifestByBackendRuntimeLoader","ManifestByClientRuntimeLoader","ManifestByElementLoader","ManifestByFeatureLoader","ManifestByLicenseLoader","ManifestByUrlLoader","ManifestByUserLoader","ManifestCombinedRuleLoader","ManifestExtendRuleLoader","ManifestPublisher","ManifestResourceLoader","ManifestSubscriber","PublicManifestResourceLoader"]}}}
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a2892051-fd9f-4056-ae8d-30d16d48417d']","content":{"./node_modules/@omnia/fx/core/messaging/InternalTopics.js":{"id":"./node_modules/@omnia/fx/core/messaging/internaltopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./node_modules/@omnia/fx/core/services/IAppRouteFactory.js":{"id":"./node_modules/@omnia/fx/core/services/iapproutefactory.js","buildMeta":{"exportsType":"namespace"},"expo.js":["IAppRouteFactory"]},"./node_modules/@omnia/fx/core/services/InternalConfigurationService.js":{"id":"./node_modules/@omnia/fx/core/services/internalconfigurationservice.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalConfigurationService"]},"./node_modules/@omnia/fx-models/shared-mobile/index.js":{"id":"./node_modules/@omnia/fx-models/shared-mobile/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ActivityFeedChannelIdProperty","AllEnterprisePropertiesContentHashSettings","AllEnterprisePropertyDataTypesContentHashSettings","AnalyticService","AnonymousIdentity","ArchiveSortColumn","BoolFilter","BuiltInIdentityProviderIds","CustomIcon","CustomRatio","DocumentDirectionSettings","DynamicGroupIdentity","EmailDisplaySettings","EmailEditorSettings","EmailPropertyDefinition","EmailPropertyDefinitionId","EmailPropertyValue","ExtensionIdentity","FabricIcon","FlagIcon","FontAwesomeIcon","GroupIdentity","GroupSortColumn","HubActorIdBagProperty","Identity","IdentityQuery","IdentityTypes","ImageDisplaySettings","ImageEditorSettings","ImagePropertyDefinition","ImagePropertyValue","ItemQuery","Landscape83Ratio","LandscapeRatio","LanguageDisplaySettings","LanguageEditorSettings","LanguagePropertyDefinition","LanguagePropertyDefinitionId","LanguagePropertyValue","LanguageTags","MaterialIcon","MediaPickerImageRatio","MediaPickerImageRatioDefinition","MediaPickerImageScaling","MediaPickerImageScalingDefinition","MediaPickerRollupImageRatio","MediaPickerRollupImageRatioDefinition","MultilingualTextDisplaySettings","MultilingualTextEditorSettings","MultilingualTextPropertyDefinition","MultilingualTextPropertyValue","OmniaNamedModel","OmniaService","PhoneNumberPropertyValue","PortraitRatio","PropertyLockStatus","ResolvedAnonymousIdentity","ResolvedDynamicGroupIdentity","ResolvedExtensionIdentity","ResolvedGroupIdentity","ResolvedRoleIdentity","ResolvedUserIdentity","RoleIdentity","ScopeTypes","SecurityIdentities","SquareRatio","SvgIcon","TenantApiSettings","TenantAuthenticationSettings","TenantCSOMClientContextFallbackUrl","TenantEnterpriseGlossary","TenantErrorInformation","TenantFaviconSettings","TenantInfoSettings","TenantLanguageSettings","TenantPeopleInformation","TenantPreSetup","TenantProperty","TenantRegionalSettings","TenantThemeManager","TenantTypographyFonts","TextDisplaySettings","TextEditorSettings","TextPropertyDefinition","TextPropertyValue","UserAccessibilitySettings","UserIdentity","UserIdentityQuery","UserPropertyBagModel","UserSortColumn","UserThemeManager","WideRatio","imagePropertyDefinitionId","multilingualTextPropertyDefinitionId","textPropertyDefinitionId"]},"./node_modules/@omnia/fx-models/shared-mobile/ManifestIds.js":{"id":"./node_modules/@omnia/fx-models/shared-mobile/manifestids.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AnalyticService","OmniaService"]},"./node_modules/@omnia/fx/ux/shared-mobile/index.js":{"id":"./node_modules/@omnia/fx/ux/shared-mobile/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["registerUseIconProvider","useIconClass","useIcons"]},"./node_modules/@omnia/fx/ux/velcron/core/models/index.js":{"id":"./node_modules/@omnia/fx/ux/velcron/core/models/index.js","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/core/services/ServiceManifestProviderInternal.js":{"id":"0688ceff-4257-4427-b385-a83d6802c509","buildMeta":{"exportsType":"namespace"},"expo.js":["ServiceManifestProviderInternal"]},"./node_modules/@omnia/fx/core/Extend.js":{"id":"4eeb27d5-906a-4edf-bd38-3d97048cda3d","buildMeta":{"exportsType":"namespace"},"expo.js":["Extend","InternalExtend","registerApi"]},"./node_modules/@omnia/fx/core/index.js":{"id":"97786ea9-4861-48bd-8a57-eae9bbdb4892","buildMeta":{"exportsType":"namespace"},"expo.js":["AppRoutePropertyBagFactory","AuthenticationSessionService","Broadcast","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","Cookies","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GraphClient","Http","HttpBuilder","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","Inject","Injectable","LocalStorage","LocalizationServiceProviders","MD5Util","ManifestResourceLoader","MessageBus","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","ObjectMerger","OmniaPropertyBagBase","Provide","Require","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","Utils","WebUtils","createEventHook","defineCurrentActorProvider","defineFactory","defineHubClientProvider","defineHubRealtimeProvider","defineInjectable","defineService","getCurrentActorProvider","getHubClientProvider","getHubRealtimeProvider","http","injectByTypeId","isInjectable","mergeLocaliation","propertyPath","propertyPathValue","realtimeService","registerApi","useInject","useOmniaClient","useProvide"]},"./node_modules/@omnia/fx/core/http/InternalHttpPlugins.js":{"id":"b8d937e0-3fc3-4412-a469-92941b829cdb","buildMeta":{"exportsType":"namespace"},"expo.js":["HttpContextConfigPlugin","HttpRetryPlugIn"]},"./node_modules/@omnia/fx/runtime/core/InternalWebComponentBootstrapper.js":{"id":"c9f21f62-e664-44e4-8cf4-0dcbec75c4bf","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalWebComponentBootstrapper"]},"./node_modules/@omnia/fx-models/index.js":{"id":"d0a145a7-d1ef-4217-aa6f-85dd18c4231d","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/core/messaging/InternalMessageBusMediator.js":{"id":"f986d8dd-7c76-40b6-9bf8-b64ac2902642","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/runtime/core/index.js":{"id":"ff061abc-7f0e-444b-b2b9-7ff71c5842c5","buildMeta":{"exportsType":"namespace"},"expo.js":["LoadableManifest","LocalHostingService","ManifestByBackendRuntimeLoader","ManifestByClientRuntimeLoader","ManifestByElementLoader","ManifestByFeatureLoader","ManifestByLicenseLoader","ManifestByUrlLoader","ManifestByUserLoader","ManifestCombinedRuleLoader","ManifestExtendRuleLoader","ManifestPublisher","ManifestResourceLoader","ManifestSubscriber","PublicManifestResourceLoader"]}}}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
2
|
+
"emit:update:modelValue": (value: boolean) => void;
|
3
|
+
} & {
|
4
|
+
"v-model"?: boolean;
|
5
|
+
} & {
|
6
|
+
modelValue?: boolean;
|
7
|
+
} & {
|
8
|
+
haveLayout?: (haveLayout: any) => void;
|
9
|
+
}> & {
|
10
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
11
|
+
} & {
|
12
|
+
"v-slots"?: {} & Omit<{
|
13
|
+
default?: import("vue").Slot;
|
14
|
+
$stable?: boolean;
|
15
|
+
}, never>;
|
16
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "haveLayout"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
17
|
+
export default _default;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.549-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.549-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|