@omnia/fx 8.0.48-vnext → 8.0.50-vnext
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/ServiceContainer.d.ts +17 -0
- package/internal-do-not-import-from-here/core/index.d.ts +1 -1
- package/internal-do-not-import-from-here/index.d.ts +2 -2
- package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/stores/DefineStore.d.ts +1 -3
- package/internal-do-not-import-from-here/stores/LocalizationStore.d.ts +0 -1
- package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/compositiontests/stores/useNewStoreTest.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/features/stores/FeatureJourneyStore.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyMenuStore.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/VelcronDefinitionStore.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/models/DataTable.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +15 -1
- package/internal-do-not-import-from-here/ux/theming-v2/BlueprintStore.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaStore.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeContextStore.d.ts +0 -9
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeStoreV2.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/store/BlueprintEditorStore.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/store/ThemeEditorStore.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/use/UseBlueprintSetup.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/store/ContentBlockStore.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +0 -1
- package/package.json +2 -2
@@ -1,3 +1,4 @@
|
|
1
|
+
import { GuidValue } from "../models";
|
1
2
|
type Class<T> = {
|
2
3
|
new (...args: any[]): T;
|
3
4
|
};
|
@@ -5,6 +6,22 @@ interface MockInstance {
|
|
5
6
|
type: any;
|
6
7
|
instance: any;
|
7
8
|
}
|
9
|
+
export declare class InternalServiceContainer {
|
10
|
+
private id;
|
11
|
+
private static creatingFromType;
|
12
|
+
private static singletonInstances;
|
13
|
+
private transientInstances;
|
14
|
+
private destroyedContainer;
|
15
|
+
private scopedInstances;
|
16
|
+
constructor(id: GuidValue);
|
17
|
+
createInstance<TConstructor, TClass>(type: Class<TClass> | (() => TClass), constructorArgs?: TConstructor, forceNewInstanceLifetimeScope?: boolean): TClass;
|
18
|
+
static isCreatingInstanceFromType(type: any): boolean;
|
19
|
+
private getActiveInstance;
|
20
|
+
/** Only used it for Scope lifetime - Use to create a proxy to monitor instance, will auto recreate a instance if disposed */
|
21
|
+
private createInstanceProxy;
|
22
|
+
dispose(destroyContainer?: boolean): void;
|
23
|
+
private disposeInstance;
|
24
|
+
}
|
8
25
|
export declare class ServiceContainer {
|
9
26
|
private static mockInstances;
|
10
27
|
private static registeredOnDisposing;
|
@@ -4,7 +4,7 @@ export * from "./Inject";
|
|
4
4
|
export * from "./Injectable";
|
5
5
|
export * from "./Cookies";
|
6
6
|
export * from "./LocalStorage";
|
7
|
-
export
|
7
|
+
export { ServiceContainer, ServiceContainerContext } from "./ServiceContainer";
|
8
8
|
export * from "./Encoder";
|
9
9
|
export * from "./Require";
|
10
10
|
export { PublicManifestResourceLoader as ManifestResourceLoader } from "../runtime/core/ManifestResourceLoader";
|
@@ -44,6 +44,8 @@ export declare function setCurrentManifest(omniaServiceId: any, resourceId: any)
|
|
44
44
|
ContextProviderCollection: typeof Exposes.ContextProviderCollection;
|
45
45
|
Extend: Models.IExtend;
|
46
46
|
registerApi: typeof Exposes.registerApi;
|
47
|
+
ServiceContainer: typeof Exposes.ServiceContainer;
|
48
|
+
ServiceContainerContext: typeof Exposes.ServiceContainerContext;
|
47
49
|
ManifestResourceLoader: typeof Exposes.ManifestResourceLoader;
|
48
50
|
Provide<T>(classType: any, constructorArgs?: T): any;
|
49
51
|
useProvide<TProvide, TConstructor>(provide: TProvide, constructorArgs?: TConstructor): TProvide extends new (...args: any) => infer P ? P : TProvide extends (...args: any) => infer P2 ? P2 : TProvide extends Object ? TProvide : never;
|
@@ -54,8 +56,6 @@ export declare function setCurrentManifest(omniaServiceId: any, resourceId: any)
|
|
54
56
|
defineInjectable<TFunc extends Function>(targetFunc: TFunc, options: Models.ActivationOptions): TFunc;
|
55
57
|
Cookies: typeof Exposes.Cookies;
|
56
58
|
LocalStorage: typeof Exposes.LocalStorage;
|
57
|
-
ServiceContainer: typeof Exposes.ServiceContainer;
|
58
|
-
ServiceContainerContext: typeof Exposes.ServiceContainerContext;
|
59
59
|
Encoder: typeof Exposes.Encoder;
|
60
60
|
Require: typeof Exposes.Require;
|
61
61
|
propertyPath: <StartType, TargetType = any>() => <Path extends string>(propertyPathToCheck: Exposes.PropPathCheckTargetType<StartType, Path, TargetType>) => string;
|
@@ -1 +1 @@
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a2892051-fd9f-4056-ae8d-30d16d48417d']","content":{"./node_modules/@omnia/fx/core/messaging/MessageBus.js":{"id":"./node_modules/@omnia/fx/core/messaging/messagebus.js","buildMeta":{"exportsType":"namespace"},"expo.js":["MessageBus"]},"./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/ManifestIds.js":{"id":"./node_modules/@omnia/fx-models/manifestids.js","buildMeta":{"exportsType":"namespace"},"expo.js":["OmniaGroupManifests","OmniaResourceManifests","OmniaService","OmniaWebComponentManifests"]},"./node_modules/@omnia/fx/ux/velcron/core/models/index.js":{"id":"./node_modules/@omnia/fx/ux/velcron/core/models/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AssignOperators","VelcronActionTypes","VelcronDataTypes","VelcronHorizontalAlignments","VelcronIconTypes","VelcronImageRatios","VelcronVerticalAlignments"]},"./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/messaging/InternalTopics.js":{"id":"10407664-c0c5-438b-94b2-507d58d190af","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./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","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","Cookies","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GPT3Utils","GraphClient","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","Inject","Injectable","LocalStorage","LocalizationServiceProviders","MD5Util","ManifestResourceLoader","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","OmniaPropertyBagBase","Provide","Require","ScrollPagingUtils","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","Utils","WebUtils","createEventHook","defineInjectable","isInjectable","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/MessageBus.js":{"id":"./node_modules/@omnia/fx/core/messaging/messagebus.js","buildMeta":{"exportsType":"namespace"},"expo.js":["MessageBus"]},"./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/ManifestIds.js":{"id":"./node_modules/@omnia/fx-models/manifestids.js","buildMeta":{"exportsType":"namespace"},"expo.js":["OmniaGroupManifests","OmniaResourceManifests","OmniaService","OmniaWebComponentManifests"]},"./node_modules/@omnia/fx/ux/velcron/core/models/index.js":{"id":"./node_modules/@omnia/fx/ux/velcron/core/models/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AssignOperators","VelcronActionTypes","VelcronDataTypes","VelcronHorizontalAlignments","VelcronIconTypes","VelcronImageRatios","VelcronVerticalAlignments"]},"./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/messaging/InternalTopics.js":{"id":"10407664-c0c5-438b-94b2-507d58d190af","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./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","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","Cookies","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GPT3Utils","GraphClient","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","Inject","Injectable","LocalStorage","LocalizationServiceProviders","MD5Util","ManifestResourceLoader","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","OmniaPropertyBagBase","Provide","Require","ScrollPagingUtils","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","Utils","WebUtils","createEventHook","defineInjectable","isInjectable","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/ServiceContainer.js":{"id":"d746466a-e74a-48d9-bc3b-e52d11dadffc","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalServiceContainer","ServiceContainer","ServiceContainerContext"]},"./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,5 +1,4 @@
|
|
1
1
|
import { EventHook } from "../core";
|
2
|
-
import { InstanceLifetimes } from "@omnia/fx-models";
|
3
2
|
type MutateFn<T> = (value: T | ((prev: T) => T)) => void;
|
4
3
|
type StoreGettersContext<TState extends object, TInternalState extends object, TGetterSetupCtx extends object> = StoreStateContext<TState, TInternalState> & {
|
5
4
|
setup: TGetterSetupCtx;
|
@@ -32,12 +31,11 @@ export declare function defineStore<TState extends object = {}, TInternalState e
|
|
32
31
|
activated?: <TSetupGetters extends TGetters = TGetters, TSetupActions extends TActions = TActions, TActivatedSetup extends TSetup = TSetup>(ctx: StoreActivatedContext<TState, TInternalState, TSetupGetters, TSetupActions, Events<TState, TEvents>, TActivatedSetup>) => void;
|
33
32
|
deactivated?: <TSetupGetters extends TGetters = TGetters, TSetupActions extends TActions = TActions, TActivatedSetup extends TSetup = TSetup>(ctx: StoreActivatedContext<TState, TInternalState, TSetupGetters, TSetupActions, Events<TState, TEvents>, TActivatedSetup>) => void;
|
34
33
|
events?: TEvents;
|
35
|
-
}
|
34
|
+
}): (newInstanceWithName?: string) => {
|
36
35
|
state: TState;
|
37
36
|
get: TGetters;
|
38
37
|
actions: TActions;
|
39
38
|
events: Events<TState, TEvents>;
|
40
|
-
activated: void;
|
41
39
|
deactivated(): void;
|
42
40
|
};
|
43
41
|
export {};
|
@@ -47,7 +47,6 @@ export declare const useCompontentHostStore: (newInstanceWithName?: string) => {
|
|
47
47
|
onMutatingForce: import("@omnia/fx").EventHook<boolean>;
|
48
48
|
onMutatedForce: import("@omnia/fx").EventHook<boolean>;
|
49
49
|
};
|
50
|
-
activated: void;
|
51
50
|
deactivated(): void;
|
52
51
|
};
|
53
52
|
export {};
|
@@ -85,6 +85,5 @@ export declare const useFeatureJourneyStore: (newInstanceWithName?: string) => {
|
|
85
85
|
onMutatingAppTemplate: import("@omnia/fx").EventHook<AppTemplate>;
|
86
86
|
onMutatedAppTemplate: import("@omnia/fx").EventHook<AppTemplate>;
|
87
87
|
};
|
88
|
-
activated: void;
|
89
88
|
deactivated(): void;
|
90
89
|
};
|
@@ -18,6 +18,5 @@ export declare const useJourneyMenuStore: (newInstanceWithName?: string) => {
|
|
18
18
|
onMutatingActiveMenuItem: import("@omnia/fx").EventHook<JourneyMenuItem>;
|
19
19
|
onMutatedActiveMenuItem: import("@omnia/fx").EventHook<JourneyMenuItem>;
|
20
20
|
};
|
21
|
-
activated: void;
|
22
21
|
deactivated(): void;
|
23
22
|
};
|
@@ -25,7 +25,6 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
|
|
25
25
|
onMutatingActiveMenuItem: import("@omnia/fx").EventHook<import("@omnia/fx-models").JourneyMenuItem>;
|
26
26
|
onMutatedActiveMenuItem: import("@omnia/fx").EventHook<import("@omnia/fx-models").JourneyMenuItem>;
|
27
27
|
};
|
28
|
-
activated: void;
|
29
28
|
deactivated(): void;
|
30
29
|
};
|
31
30
|
};
|
@@ -69,7 +68,6 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
|
|
69
68
|
onMutatingActiveMenuItem: import("@omnia/fx").EventHook<import("@omnia/fx-models").JourneyMenuItem>;
|
70
69
|
onMutatedActiveMenuItem: import("@omnia/fx").EventHook<import("@omnia/fx-models").JourneyMenuItem>;
|
71
70
|
};
|
72
|
-
activated: void;
|
73
71
|
deactivated(): void;
|
74
72
|
}>;
|
75
73
|
onMutatedJourneyMenuStore: import("@omnia/fx").EventHook<{
|
@@ -91,10 +89,8 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
|
|
91
89
|
onMutatingActiveMenuItem: import("@omnia/fx").EventHook<import("@omnia/fx-models").JourneyMenuItem>;
|
92
90
|
onMutatedActiveMenuItem: import("@omnia/fx").EventHook<import("@omnia/fx-models").JourneyMenuItem>;
|
93
91
|
};
|
94
|
-
activated: void;
|
95
92
|
deactivated(): void;
|
96
93
|
}>;
|
97
94
|
};
|
98
|
-
activated: void;
|
99
95
|
deactivated(): void;
|
100
96
|
};
|
@@ -13,6 +13,5 @@ export declare const useVelcronDefinitionStore: (newInstanceWithName?: string) =
|
|
13
13
|
onMutatingDefinitions: import("@omnia/fx").EventHook<VelcronDefinitionRegistration<object>[]>;
|
14
14
|
onMutatedDefinitions: import("@omnia/fx").EventHook<VelcronDefinitionRegistration<object>[]>;
|
15
15
|
};
|
16
|
-
activated: void;
|
17
16
|
deactivated(): void;
|
18
17
|
};
|
@@ -20,6 +20,7 @@ export type RowVariantType = typeof RowVariant[number];
|
|
20
20
|
export interface IDataTableRowRenderer {
|
21
21
|
value: any;
|
22
22
|
index: number;
|
23
|
+
select(selected: boolean): Omit<IDataTableRowRenderer, "select">;
|
23
24
|
onClick(callback: () => void): Omit<IDataTableRowRenderer, "onClick">;
|
24
25
|
variant(variant: RowVariantType): Omit<IDataTableRowRenderer, "setVariant">;
|
25
26
|
addCell(node: VNodeChild, colSpan?: number): Pick<IDataTableRowRenderer, "addCell">;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { DataTableHeader, SelectItemKey, IDataTableRowRenderer } from "@omnia/fx/ux";
|
2
2
|
import { VDataTableSlots } from "../../ComponentTypings";
|
3
3
|
export interface ODataTableSlots extends Omit<VDataTableSlots, "item"> {
|
4
|
-
item?:
|
4
|
+
item?: (row: IDataTableRowRenderer) => void;
|
5
5
|
}
|
6
6
|
declare const _default: {
|
7
7
|
new (...args: any[]): {
|
@@ -66,6 +66,7 @@ declare const _default: {
|
|
66
66
|
readonly "v-model"?: string[];
|
67
67
|
readonly modelValue?: string[];
|
68
68
|
readonly "onUpdate:modelValue"?: (value: string[]) => any;
|
69
|
+
readonly loading?: boolean;
|
69
70
|
readonly hover?: boolean;
|
70
71
|
readonly items?: any[];
|
71
72
|
readonly returnObject?: boolean;
|
@@ -122,6 +123,10 @@ declare const _default: {
|
|
122
123
|
type: import("vue").PropType<boolean>;
|
123
124
|
required: false;
|
124
125
|
};
|
126
|
+
loading: {
|
127
|
+
type: import("vue").PropType<boolean>;
|
128
|
+
required: false;
|
129
|
+
};
|
125
130
|
hover: {
|
126
131
|
type: import("vue").PropType<boolean>;
|
127
132
|
required: false;
|
@@ -214,6 +219,10 @@ declare const _default: {
|
|
214
219
|
type: import("vue").PropType<boolean>;
|
215
220
|
required: false;
|
216
221
|
};
|
222
|
+
loading: {
|
223
|
+
type: import("vue").PropType<boolean>;
|
224
|
+
required: false;
|
225
|
+
};
|
217
226
|
hover: {
|
218
227
|
type: import("vue").PropType<boolean>;
|
219
228
|
required: false;
|
@@ -284,6 +293,10 @@ declare const _default: {
|
|
284
293
|
type: import("vue").PropType<boolean>;
|
285
294
|
required: false;
|
286
295
|
};
|
296
|
+
loading: {
|
297
|
+
type: import("vue").PropType<boolean>;
|
298
|
+
required: false;
|
299
|
+
};
|
287
300
|
hover: {
|
288
301
|
type: import("vue").PropType<boolean>;
|
289
302
|
required: false;
|
@@ -341,6 +354,7 @@ declare const _default: {
|
|
341
354
|
"v-model"?: string[];
|
342
355
|
modelValue?: string[];
|
343
356
|
"onUpdate:modelValue"?: (value: string[]) => any;
|
357
|
+
loading?: boolean;
|
344
358
|
hover?: boolean;
|
345
359
|
items?: any[];
|
346
360
|
returnObject?: boolean;
|
@@ -22,6 +22,5 @@ export declare const useBlueprintStore: (newInstanceWithName?: string) => {
|
|
22
22
|
onMutatingBlueprintType: import("@omnia/fx").EventHook<BlueprintType | BlueprintTypes>;
|
23
23
|
onMutatedBlueprintType: import("@omnia/fx").EventHook<BlueprintType | BlueprintTypes>;
|
24
24
|
};
|
25
|
-
activated: void;
|
26
25
|
deactivated(): void;
|
27
26
|
};
|
@@ -49,6 +49,5 @@ export declare const useColorSchemaStore: (newInstanceWithName?: string) => {
|
|
49
49
|
onMutatingId: import("@omnia/fx").EventHook<import("@omnia/fx-models").GuidValue>;
|
50
50
|
onMutatedId: import("@omnia/fx").EventHook<import("@omnia/fx-models").GuidValue>;
|
51
51
|
};
|
52
|
-
activated: void;
|
53
52
|
deactivated(): void;
|
54
53
|
};
|
@@ -22,7 +22,6 @@ export declare const useThemeContextStore: (newInstanceWithName?: string) => {
|
|
22
22
|
onMutatingCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
23
23
|
onMutatedCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
24
24
|
};
|
25
|
-
activated: void;
|
26
25
|
deactivated(): void;
|
27
26
|
};
|
28
27
|
adminTheme: {
|
@@ -47,7 +46,6 @@ export declare const useThemeContextStore: (newInstanceWithName?: string) => {
|
|
47
46
|
onMutatingCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
48
47
|
onMutatedCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
49
48
|
};
|
50
|
-
activated: void;
|
51
49
|
deactivated(): void;
|
52
50
|
};
|
53
51
|
};
|
@@ -74,7 +72,6 @@ export declare const useThemeContextStore: (newInstanceWithName?: string) => {
|
|
74
72
|
onMutatingCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
75
73
|
onMutatedCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
76
74
|
};
|
77
|
-
activated: void;
|
78
75
|
deactivated(): void;
|
79
76
|
};
|
80
77
|
readonly adminTheme: {
|
@@ -99,7 +96,6 @@ export declare const useThemeContextStore: (newInstanceWithName?: string) => {
|
|
99
96
|
onMutatingCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
100
97
|
onMutatedCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
101
98
|
};
|
102
|
-
activated: void;
|
103
99
|
deactivated(): void;
|
104
100
|
};
|
105
101
|
};
|
@@ -127,7 +123,6 @@ export declare const useThemeContextStore: (newInstanceWithName?: string) => {
|
|
127
123
|
onMutatingCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
128
124
|
onMutatedCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
129
125
|
};
|
130
|
-
activated: void;
|
131
126
|
deactivated(): void;
|
132
127
|
}>;
|
133
128
|
onMutatedDefaultTheme: import("@omnia/fx").EventHook<{
|
@@ -152,7 +147,6 @@ export declare const useThemeContextStore: (newInstanceWithName?: string) => {
|
|
152
147
|
onMutatingCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
153
148
|
onMutatedCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
154
149
|
};
|
155
|
-
activated: void;
|
156
150
|
deactivated(): void;
|
157
151
|
}>;
|
158
152
|
onMutatingAdminTheme: import("@omnia/fx").EventHook<{
|
@@ -177,7 +171,6 @@ export declare const useThemeContextStore: (newInstanceWithName?: string) => {
|
|
177
171
|
onMutatingCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
178
172
|
onMutatedCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
179
173
|
};
|
180
|
-
activated: void;
|
181
174
|
deactivated(): void;
|
182
175
|
}>;
|
183
176
|
onMutatedAdminTheme: import("@omnia/fx").EventHook<{
|
@@ -202,10 +195,8 @@ export declare const useThemeContextStore: (newInstanceWithName?: string) => {
|
|
202
195
|
onMutatingCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
203
196
|
onMutatedCurrentTheme: import("@omnia/fx").EventHook<import("./themes").ThemeDefinitionInstance>;
|
204
197
|
};
|
205
|
-
activated: void;
|
206
198
|
deactivated(): void;
|
207
199
|
}>;
|
208
200
|
};
|
209
|
-
activated: void;
|
210
201
|
deactivated(): void;
|
211
202
|
};
|
@@ -21,6 +21,5 @@ export declare const useThemeStoreV2: (newInstanceWithName?: string) => {
|
|
21
21
|
onMutatingCurrentTheme: import("@omnia/fx").EventHook<import("./themes/Themes").ThemeDefinitionInstance>;
|
22
22
|
onMutatedCurrentTheme: import("@omnia/fx").EventHook<import("./themes/Themes").ThemeDefinitionInstance>;
|
23
23
|
};
|
24
|
-
activated: void;
|
25
24
|
deactivated(): void;
|
26
25
|
};
|
package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/store/BlueprintEditorStore.d.ts
CHANGED
@@ -15,6 +15,5 @@ export declare const useBlueprintEditorStore: (newInstanceWithName?: string) =>
|
|
15
15
|
onMutatingBlockBlueprint: import("@omnia/fx").EventHook<BlockBlueprint>;
|
16
16
|
onMutatedBlockBlueprint: import("@omnia/fx").EventHook<BlockBlueprint>;
|
17
17
|
};
|
18
|
-
activated: void;
|
19
18
|
deactivated(): void;
|
20
19
|
};
|
@@ -33,7 +33,6 @@ export declare function useBlueprintSetup(props: object): {
|
|
33
33
|
onMutatingCurrentTheme: import("@omnia/fx").EventHook<import("..").ThemeDefinitionInstance>;
|
34
34
|
onMutatedCurrentTheme: import("@omnia/fx").EventHook<import("..").ThemeDefinitionInstance>;
|
35
35
|
};
|
36
|
-
activated: void;
|
37
36
|
deactivated(): void;
|
38
37
|
}) => void;
|
39
38
|
setCustomBlueprint: (blueprint: import("@omnia/fx-models").BlueprintDefinition) => void;
|
@@ -44,6 +43,5 @@ export declare function useBlueprintSetup(props: object): {
|
|
44
43
|
onMutatingBlueprintType: import("@omnia/fx").EventHook<import("@omnia/fx-models").BlueprintType | import("@omnia/fx-models").BlueprintTypes>;
|
45
44
|
onMutatedBlueprintType: import("@omnia/fx").EventHook<import("@omnia/fx-models").BlueprintType | import("@omnia/fx-models").BlueprintTypes>;
|
46
45
|
};
|
47
|
-
activated: void;
|
48
46
|
deactivated(): void;
|
49
47
|
};
|
@@ -47,7 +47,6 @@ export declare function useColorSchemaSetup(props: object): {
|
|
47
47
|
onMutatingCurrentTheme: import("@omnia/fx").EventHook<import("../theming-v2").ThemeDefinitionInstance>;
|
48
48
|
onMutatedCurrentTheme: import("@omnia/fx").EventHook<import("../theming-v2").ThemeDefinitionInstance>;
|
49
49
|
};
|
50
|
-
activated: void;
|
51
50
|
deactivated(): void;
|
52
51
|
}) => void;
|
53
52
|
setCustomColorSchema: (colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void;
|
@@ -71,6 +70,5 @@ export declare function useColorSchemaSetup(props: object): {
|
|
71
70
|
onMutatingId: import("@omnia/fx").EventHook<import("@omnia/fx-models").GuidValue>;
|
72
71
|
onMutatedId: import("@omnia/fx").EventHook<import("@omnia/fx-models").GuidValue>;
|
73
72
|
};
|
74
|
-
activated: void;
|
75
73
|
deactivated(): void;
|
76
74
|
};
|
package/internal-do-not-import-from-here/ux/velcron/blocks/content/store/ContentBlockStore.d.ts
CHANGED
@@ -38,6 +38,5 @@ export declare const useContentBlockStore: (newInstanceWithName?: string) => {
|
|
38
38
|
onMutatingOnGoingDragging: import("@omnia/fx").EventHook<boolean>;
|
39
39
|
onMutatedOnGoingDragging: import("@omnia/fx").EventHook<boolean>;
|
40
40
|
};
|
41
|
-
activated: void;
|
42
41
|
deactivated(): void;
|
43
42
|
};
|
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.50-vnext",
|
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": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.50-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|