@omnia/fx 8.0.101-vnext → 8.0.102-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/stores/DefineStore.d.ts +3 -2
- package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +10 -10
- package/internal-do-not-import-from-here/stores/oxide/ComponentSharedSettingsStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/compositiontests/stores/useNewStoreTest.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/features/stores/FeatureJourneyStore.d.ts +46 -46
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +18 -3
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyMenuStore.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +23 -23
- package/internal-do-not-import-from-here/ux/monaco/Monaco.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +47 -2
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyValueRenderer.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/theming-v2/BlueprintStore.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaStore.d.ts +16 -16
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeContextStore.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeDefinitionStoreV2.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeStoreV2.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/VelcronDefinitionStore.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseThemeStyling.d.ts +36 -36
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/store/BlueprintEditorStore.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/store/ThemeEditorStore.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/use/UseBlueprintSetup.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +24 -24
- package/internal-do-not-import-from-here/ux/use/UseVueInstance.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/store/ContentBlockStore.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +32 -32
- package/package.json +2 -2
@@ -1,7 +1,8 @@
|
|
1
|
+
import { MessageBusExposeOnlySubscription } from "../core";
|
1
2
|
import { IMessageBusSubscriptionHandler, IMessageBusTopicPublishSubscriber } from "@omnia/fx-models";
|
2
3
|
type MutateFn<T> = (value: T | ((prev: T) => T)) => void;
|
3
4
|
type Events<TState extends object, TEvents extends Record<string, IMessageBusTopicPublishSubscriber<any>>> = {
|
4
|
-
[K in keyof TState as `onMutating${Capitalize<string & K>}` | `onMutated${Capitalize<string & K>}`]:
|
5
|
+
[K in keyof TState as `onMutating${Capitalize<string & K>}` | `onMutated${Capitalize<string & K>}`]: MessageBusExposeOnlySubscription<TState[K]>;
|
5
6
|
} & TEvents;
|
6
7
|
type MapActionOnDispatching<T extends Function> = T extends (...args: infer U) => any ? (...args: U) => void : never;
|
7
8
|
type MapActionOnDispatched<T extends Function> = T extends (...args: infer U) => Promise<infer Y> | infer Y ? (result: Y, ...args: U) => void : never;
|
@@ -36,5 +37,5 @@ export interface IReturnSetupStore<TState, TGetters, TActions extends {
|
|
36
37
|
}
|
37
38
|
export declare function defineStore<TState extends object, TGetters extends object, TActions extends {
|
38
39
|
[key: string]: Function;
|
39
|
-
}, TEvents extends Record<string,
|
40
|
+
}, TEvents extends Record<string, MessageBusExposeOnlySubscription<any>>, InferReturnSetup extends IReturnSetupStore<TState, TGetters, TActions, TEvents>>(name: string, setup: (ctx: SetupContext) => InferReturnSetup): (newInstanceWithName?: string) => InferReturnSetup;
|
40
41
|
export {};
|
@@ -20,16 +20,16 @@ export declare const useCompontentHostStore: (newInstanceWithName?: string) => {
|
|
20
20
|
force: boolean;
|
21
21
|
};
|
22
22
|
events: {
|
23
|
-
onMutatingHost: import("@omnia/fx
|
24
|
-
onMutatedHost: import("@omnia/fx
|
25
|
-
onMutatingComponentHost: import("@omnia/fx
|
26
|
-
onMutatedComponentHost: import("@omnia/fx
|
27
|
-
onMutatingComponentVariant: import("@omnia/fx
|
28
|
-
onMutatedComponentVariant: import("@omnia/fx
|
29
|
-
onMutatingAppliedComponents: import("@omnia/fx
|
30
|
-
onMutatedAppliedComponents: import("@omnia/fx
|
31
|
-
onMutatingForce: import("@omnia/fx
|
32
|
-
onMutatedForce: import("@omnia/fx
|
23
|
+
onMutatingHost: import("@omnia/fx").MessageBusExposeOnlySubscription<"admin" | "editor" | "docs">;
|
24
|
+
onMutatedHost: import("@omnia/fx").MessageBusExposeOnlySubscription<"admin" | "editor" | "docs">;
|
25
|
+
onMutatingComponentHost: import("@omnia/fx").MessageBusExposeOnlySubscription<"dialog" | "menu" | "table" | "toolbar" | "tab" | "app" | "drawer" | "expansion-panel" | "blade" | "appbar" | "tab-vertical" | "panel" | "omfx">;
|
26
|
+
onMutatedComponentHost: import("@omnia/fx").MessageBusExposeOnlySubscription<"dialog" | "menu" | "table" | "toolbar" | "tab" | "app" | "drawer" | "expansion-panel" | "blade" | "appbar" | "tab-vertical" | "panel" | "omfx">;
|
27
|
+
onMutatingComponentVariant: import("@omnia/fx").MessageBusExposeOnlySubscription<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "settings" | "info-section">;
|
28
|
+
onMutatedComponentVariant: import("@omnia/fx").MessageBusExposeOnlySubscription<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "settings" | "info-section">;
|
29
|
+
onMutatingAppliedComponents: import("@omnia/fx").MessageBusExposeOnlySubscription<string[]>;
|
30
|
+
onMutatedAppliedComponents: import("@omnia/fx").MessageBusExposeOnlySubscription<string[]>;
|
31
|
+
onMutatingForce: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
32
|
+
onMutatedForce: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
33
33
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
34
34
|
actions: {
|
35
35
|
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
@@ -3,8 +3,8 @@ export declare const useCompontentSharedSettingsStore: (newInstanceWithName?: st
|
|
3
3
|
settings: any;
|
4
4
|
};
|
5
5
|
events: {
|
6
|
-
onMutatingSettings: import("@omnia/fx
|
7
|
-
onMutatedSettings: import("@omnia/fx
|
6
|
+
onMutatingSettings: import("@omnia/fx").MessageBusExposeOnlySubscription<any>;
|
7
|
+
onMutatedSettings: import("@omnia/fx").MessageBusExposeOnlySubscription<any>;
|
8
8
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
9
9
|
actions: {
|
10
10
|
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
@@ -92,7 +92,7 @@ type ExtractMixin<T> = {
|
|
92
92
|
type IsDefaultMixinComponent<T> = T extends ComponentOptionsMixin ? ComponentOptionsMixin extends T ? true : false : false;
|
93
93
|
type IntersectionMixin<T> = IsDefaultMixinComponent<T> extends true ? OptionTypesType<{}, {}, {}, {}, {}> : UnionToIntersection<ExtractMixin<T>>;
|
94
94
|
type UnwrapMixinsType<T, Type extends OptionTypesKeys> = T extends OptionTypesType ? T[Type] : never;
|
95
|
-
type UseState = <T>(state
|
95
|
+
type UseState = <T>(state?: T) => {
|
96
96
|
state: T;
|
97
97
|
setState(state: T): void;
|
98
98
|
};
|
@@ -108,7 +108,7 @@ type SetupContext<Props, E = EmitsOptions> = E extends any ? {
|
|
108
108
|
useState: UseState;
|
109
109
|
watch: typeof watch;
|
110
110
|
watchEffect: typeof watchEffect;
|
111
|
-
|
111
|
+
subscriber: SubscriptionHandler;
|
112
112
|
} : never;
|
113
113
|
interface ComponentOptionsBaseExtends<Props, RawBindings, D, C extends ComputedOptions, M extends MethodOptions, Mixin extends ComponentOptionsMixin, Extends extends ComponentOptionsMixin, E extends EmitsOptions, EE extends string = string, Defaults = {}, I extends ComponentInjectOptions = {}, II extends string = string> extends ComponentOptionsBase<ExcludeJsxPropKeys<Props>, RawBindings, D, C, M, Mixin, Extends, E, EE, Defaults, I, II> {
|
114
114
|
setup?: (this: void, props: LooseRequired<ExcludeJsxPropKeys<Props> & Prettify<UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "P">>>, ctx: SetupContext<Props, E>) => Promise<RawBindings> | RawBindings | RenderFunction | void;
|
@@ -3,7 +3,7 @@ export declare const useTestNewStore: (newInstanceWithName?: string) => {
|
|
3
3
|
title: number;
|
4
4
|
};
|
5
5
|
events: {
|
6
|
-
onMutatingTitle: import("@omnia/fx
|
7
|
-
onMutatedTitle: import("@omnia/fx
|
6
|
+
onMutatingTitle: import("@omnia/fx").MessageBusExposeOnlySubscription<number>;
|
7
|
+
onMutatedTitle: import("@omnia/fx").MessageBusExposeOnlySubscription<number>;
|
8
8
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
9
9
|
};
|
@@ -27,52 +27,52 @@ export declare const useFeatureJourneyStore: (newInstanceWithName?: string) => {
|
|
27
27
|
appTemplate: AppTemplate;
|
28
28
|
};
|
29
29
|
events: {
|
30
|
-
onMutatingTargetResolverType: import("@omnia/fx
|
31
|
-
onMutatedTargetResolverType: import("@omnia/fx
|
32
|
-
onMutatingIsLoadingPermissions: import("@omnia/fx
|
33
|
-
onMutatedIsLoadingPermissions: import("@omnia/fx
|
34
|
-
onMutatingIsLoadingFeatures: import("@omnia/fx
|
35
|
-
onMutatedIsLoadingFeatures: import("@omnia/fx
|
36
|
-
onMutatingHasSearchFilter: import("@omnia/fx
|
37
|
-
onMutatedHasSearchFilter: import("@omnia/fx
|
38
|
-
onMutatingIsLoadingApp: import("@omnia/fx
|
39
|
-
onMutatedIsLoadingApp: import("@omnia/fx
|
40
|
-
onMutatingIsUpgradingFull: import("@omnia/fx
|
41
|
-
onMutatedIsUpgradingFull: import("@omnia/fx
|
42
|
-
onMutatingSelectedFeature: import("@omnia/fx
|
43
|
-
onMutatedSelectedFeature: import("@omnia/fx
|
44
|
-
onMutatingActiveFeature: import("@omnia/fx
|
45
|
-
onMutatedActiveFeature: import("@omnia/fx
|
46
|
-
onMutatingFeaturesInstances: import("@omnia/fx
|
47
|
-
onMutatedFeaturesInstances: import("@omnia/fx
|
48
|
-
onMutatingFeaturesRequireUpgrade: import("@omnia/fx
|
49
|
-
onMutatedFeaturesRequireUpgrade: import("@omnia/fx
|
50
|
-
onMutatingBindingState: import("@omnia/fx
|
51
|
-
onMutatedBindingState: import("@omnia/fx
|
52
|
-
onMutatingAllowCheckingStatus: import("@omnia/fx
|
53
|
-
onMutatedAllowCheckingStatus: import("@omnia/fx
|
54
|
-
onMutatingRequiredConsentFeatures: import("@omnia/fx
|
55
|
-
onMutatedRequiredConsentFeatures: import("@omnia/fx
|
56
|
-
onMutatingCurrentConsentFeatureId: import("@omnia/fx
|
57
|
-
onMutatedCurrentConsentFeatureId: import("@omnia/fx
|
58
|
-
onMutatingConsentDialogVisible: import("@omnia/fx
|
59
|
-
onMutatedConsentDialogVisible: import("@omnia/fx
|
60
|
-
onMutatingConsentUrlDialogVisible: import("@omnia/fx
|
61
|
-
onMutatedConsentUrlDialogVisible: import("@omnia/fx
|
62
|
-
onMutatingDeleteAppDialog: import("@omnia/fx
|
63
|
-
onMutatedDeleteAppDialog: import("@omnia/fx
|
64
|
-
onMutatingFeatureDeactive: import("@omnia/fx
|
65
|
-
onMutatedFeatureDeactive: import("@omnia/fx
|
66
|
-
onMutatingAzureAdPermissionResourcesPromise: import("@omnia/fx
|
67
|
-
onMutatedAzureAdPermissionResourcesPromise: import("@omnia/fx
|
68
|
-
onMutatingResources: import("@omnia/fx
|
69
|
-
onMutatedResources: import("@omnia/fx
|
70
|
-
onMutatingConsentUrl: import("@omnia/fx
|
71
|
-
onMutatedConsentUrl: import("@omnia/fx
|
72
|
-
onMutatingAppInstance: import("@omnia/fx
|
73
|
-
onMutatedAppInstance: import("@omnia/fx
|
74
|
-
onMutatingAppTemplate: import("@omnia/fx
|
75
|
-
onMutatedAppTemplate: import("@omnia/fx
|
30
|
+
onMutatingTargetResolverType: import("@omnia/fx").MessageBusExposeOnlySubscription<TargetResolverTypes>;
|
31
|
+
onMutatedTargetResolverType: import("@omnia/fx").MessageBusExposeOnlySubscription<TargetResolverTypes>;
|
32
|
+
onMutatingIsLoadingPermissions: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
33
|
+
onMutatedIsLoadingPermissions: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
34
|
+
onMutatingIsLoadingFeatures: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
35
|
+
onMutatedIsLoadingFeatures: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
36
|
+
onMutatingHasSearchFilter: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
37
|
+
onMutatedHasSearchFilter: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
38
|
+
onMutatingIsLoadingApp: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
39
|
+
onMutatedIsLoadingApp: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
40
|
+
onMutatingIsUpgradingFull: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
41
|
+
onMutatedIsUpgradingFull: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
42
|
+
onMutatingSelectedFeature: import("@omnia/fx").MessageBusExposeOnlySubscription<FeatureInstanceDetails<FeatureInstance>>;
|
43
|
+
onMutatedSelectedFeature: import("@omnia/fx").MessageBusExposeOnlySubscription<FeatureInstanceDetails<FeatureInstance>>;
|
44
|
+
onMutatingActiveFeature: import("@omnia/fx").MessageBusExposeOnlySubscription<FeatureInstanceDetails<FeatureInstance>>;
|
45
|
+
onMutatedActiveFeature: import("@omnia/fx").MessageBusExposeOnlySubscription<FeatureInstanceDetails<FeatureInstance>>;
|
46
|
+
onMutatingFeaturesInstances: import("@omnia/fx").MessageBusExposeOnlySubscription<FeatureInstanceDetails<FeatureInstance>[]>;
|
47
|
+
onMutatedFeaturesInstances: import("@omnia/fx").MessageBusExposeOnlySubscription<FeatureInstanceDetails<FeatureInstance>[]>;
|
48
|
+
onMutatingFeaturesRequireUpgrade: import("@omnia/fx").MessageBusExposeOnlySubscription<FeatureInstanceDetails<FeatureInstance>[]>;
|
49
|
+
onMutatedFeaturesRequireUpgrade: import("@omnia/fx").MessageBusExposeOnlySubscription<FeatureInstanceDetails<FeatureInstance>[]>;
|
50
|
+
onMutatingBindingState: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
51
|
+
onMutatedBindingState: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
52
|
+
onMutatingAllowCheckingStatus: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
53
|
+
onMutatedAllowCheckingStatus: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
54
|
+
onMutatingRequiredConsentFeatures: import("@omnia/fx").MessageBusExposeOnlySubscription<Record<string, RequiredAzureAdPermission[]>>;
|
55
|
+
onMutatedRequiredConsentFeatures: import("@omnia/fx").MessageBusExposeOnlySubscription<Record<string, RequiredAzureAdPermission[]>>;
|
56
|
+
onMutatingCurrentConsentFeatureId: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
57
|
+
onMutatedCurrentConsentFeatureId: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
58
|
+
onMutatingConsentDialogVisible: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
59
|
+
onMutatedConsentDialogVisible: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
60
|
+
onMutatingConsentUrlDialogVisible: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
61
|
+
onMutatedConsentUrlDialogVisible: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
62
|
+
onMutatingDeleteAppDialog: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
63
|
+
onMutatedDeleteAppDialog: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
64
|
+
onMutatingFeatureDeactive: import("@omnia/fx").MessageBusExposeOnlySubscription<FeatureInstanceDetails<FeatureInstance>>;
|
65
|
+
onMutatedFeatureDeactive: import("@omnia/fx").MessageBusExposeOnlySubscription<FeatureInstanceDetails<FeatureInstance>>;
|
66
|
+
onMutatingAzureAdPermissionResourcesPromise: import("@omnia/fx").MessageBusExposeOnlySubscription<Promise<AzurePermissionResource[]>>;
|
67
|
+
onMutatedAzureAdPermissionResourcesPromise: import("@omnia/fx").MessageBusExposeOnlySubscription<Promise<AzurePermissionResource[]>>;
|
68
|
+
onMutatingResources: import("@omnia/fx").MessageBusExposeOnlySubscription<AzurePermissionResource[]>;
|
69
|
+
onMutatedResources: import("@omnia/fx").MessageBusExposeOnlySubscription<AzurePermissionResource[]>;
|
70
|
+
onMutatingConsentUrl: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
71
|
+
onMutatedConsentUrl: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
72
|
+
onMutatingAppInstance: import("@omnia/fx").MessageBusExposeOnlySubscription<AppInstance>;
|
73
|
+
onMutatedAppInstance: import("@omnia/fx").MessageBusExposeOnlySubscription<AppInstance>;
|
74
|
+
onMutatingAppTemplate: import("@omnia/fx").MessageBusExposeOnlySubscription<AppTemplate>;
|
75
|
+
onMutatedAppTemplate: import("@omnia/fx").MessageBusExposeOnlySubscription<AppTemplate>;
|
76
76
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
77
77
|
actions: {
|
78
78
|
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
@@ -102,6 +102,9 @@ declare const _default: {
|
|
102
102
|
} & {
|
103
103
|
left?: (resolvedIdentity: IResolvedIdentity) => VNodeChild;
|
104
104
|
right?: (resolvedIdentity: IResolvedIdentity) => VNodeChild;
|
105
|
+
renderer?: (renderProps: {
|
106
|
+
identities: Array<IResolvedIdentity>;
|
107
|
+
}) => VNodeChild;
|
105
108
|
};
|
106
109
|
readonly modelValue?: Identity[];
|
107
110
|
readonly "onUpdate:modelValue"?: (value: Identity[]) => any;
|
@@ -132,6 +135,9 @@ declare const _default: {
|
|
132
135
|
} & {
|
133
136
|
left?: (resolvedIdentity: IResolvedIdentity) => VNodeChild;
|
134
137
|
right?: (resolvedIdentity: IResolvedIdentity) => VNodeChild;
|
138
|
+
renderer?: (renderProps: {
|
139
|
+
identities: Array<IResolvedIdentity>;
|
140
|
+
}) => VNodeChild;
|
135
141
|
}>;
|
136
142
|
hideUsername: {
|
137
143
|
type: import("vue").PropType<boolean>;
|
@@ -225,7 +231,7 @@ declare const _default: {
|
|
225
231
|
type: import("vue").PropType<Identity[]>;
|
226
232
|
required: false;
|
227
233
|
};
|
228
|
-
}>>, () =>
|
234
|
+
}>>, () => VNodeChild, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
229
235
|
beforeCreate?: (() => void) | (() => void)[];
|
230
236
|
created?: (() => void) | (() => void)[];
|
231
237
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -251,6 +257,9 @@ declare const _default: {
|
|
251
257
|
} & {
|
252
258
|
left?: (resolvedIdentity: IResolvedIdentity) => VNodeChild;
|
253
259
|
right?: (resolvedIdentity: IResolvedIdentity) => VNodeChild;
|
260
|
+
renderer?: (renderProps: {
|
261
|
+
identities: Array<IResolvedIdentity>;
|
262
|
+
}) => VNodeChild;
|
254
263
|
}>;
|
255
264
|
hideUsername: {
|
256
265
|
type: import("vue").PropType<boolean>;
|
@@ -344,7 +353,7 @@ declare const _default: {
|
|
344
353
|
type: import("vue").PropType<Identity[]>;
|
345
354
|
required: false;
|
346
355
|
};
|
347
|
-
}>> & import("vue").ShallowUnwrapRef<() =>
|
356
|
+
}>> & import("vue").ShallowUnwrapRef<() => VNodeChild> & {} & import("vue").ComponentCustomProperties & {};
|
348
357
|
__isFragment?: never;
|
349
358
|
__isTeleport?: never;
|
350
359
|
__isSuspense?: never;
|
@@ -354,6 +363,9 @@ declare const _default: {
|
|
354
363
|
} & {
|
355
364
|
left?: (resolvedIdentity: IResolvedIdentity) => VNodeChild;
|
356
365
|
right?: (resolvedIdentity: IResolvedIdentity) => VNodeChild;
|
366
|
+
renderer?: (renderProps: {
|
367
|
+
identities: Array<IResolvedIdentity>;
|
368
|
+
}) => VNodeChild;
|
357
369
|
}>;
|
358
370
|
hideUsername: {
|
359
371
|
type: import("vue").PropType<boolean>;
|
@@ -447,7 +459,7 @@ declare const _default: {
|
|
447
459
|
type: import("vue").PropType<Identity[]>;
|
448
460
|
required: false;
|
449
461
|
};
|
450
|
-
}>>, () =>
|
462
|
+
}>>, () => VNodeChild, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
451
463
|
propsDefinition: Omit<Readonly<{} & {
|
452
464
|
inline?: boolean;
|
453
465
|
size?: "small" | "default" | "large" | "x-large" | "x-small";
|
@@ -479,6 +491,9 @@ declare const _default: {
|
|
479
491
|
} & {
|
480
492
|
left?: (resolvedIdentity: IResolvedIdentity) => VNodeChild;
|
481
493
|
right?: (resolvedIdentity: IResolvedIdentity) => VNodeChild;
|
494
|
+
renderer?: (renderProps: {
|
495
|
+
identities: Array<IResolvedIdentity>;
|
496
|
+
}) => VNodeChild;
|
482
497
|
};
|
483
498
|
modelValue?: Identity[];
|
484
499
|
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
@@ -5,10 +5,10 @@ export declare const useJourneyMenuStore: (newInstanceWithName?: string) => {
|
|
5
5
|
activeMenuItem: JourneyMenuItem;
|
6
6
|
};
|
7
7
|
events: {
|
8
|
-
onMutatingMenuItems: import("@omnia/fx
|
9
|
-
onMutatedMenuItems: import("@omnia/fx
|
10
|
-
onMutatingActiveMenuItem: import("@omnia/fx
|
11
|
-
onMutatedActiveMenuItem: import("@omnia/fx
|
8
|
+
onMutatingMenuItems: import("@omnia/fx").MessageBusExposeOnlySubscription<JourneyMenuItem[]>;
|
9
|
+
onMutatedMenuItems: import("@omnia/fx").MessageBusExposeOnlySubscription<JourneyMenuItem[]>;
|
10
|
+
onMutatingActiveMenuItem: import("@omnia/fx").MessageBusExposeOnlySubscription<JourneyMenuItem>;
|
11
|
+
onMutatedActiveMenuItem: import("@omnia/fx").MessageBusExposeOnlySubscription<JourneyMenuItem>;
|
12
12
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
13
13
|
actions: {
|
14
14
|
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
@@ -13,10 +13,10 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
|
|
13
13
|
activeMenuItem: import("@omnia/fx-models").JourneyMenuItem;
|
14
14
|
};
|
15
15
|
events: {
|
16
|
-
onMutatingMenuItems: import("@omnia/fx
|
17
|
-
onMutatedMenuItems: import("@omnia/fx
|
18
|
-
onMutatingActiveMenuItem: import("@omnia/fx
|
19
|
-
onMutatedActiveMenuItem: import("@omnia/fx
|
16
|
+
onMutatingMenuItems: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem[]>;
|
17
|
+
onMutatedMenuItems: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem[]>;
|
18
|
+
onMutatingActiveMenuItem: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem>;
|
19
|
+
onMutatedActiveMenuItem: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem>;
|
20
20
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
21
21
|
actions: {
|
22
22
|
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
@@ -42,22 +42,22 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
|
|
42
42
|
};
|
43
43
|
};
|
44
44
|
events: {
|
45
|
-
onMutatingBlades: import("@omnia/fx
|
46
|
-
onMutatedBlades: import("@omnia/fx
|
47
|
-
onMutatingActiveIndex: import("@omnia/fx
|
48
|
-
onMutatedActiveIndex: import("@omnia/fx
|
49
|
-
onMutatingNested: import("@omnia/fx
|
50
|
-
onMutatedNested: import("@omnia/fx
|
51
|
-
onMutatingJourneyMenuStore: import("@omnia/fx
|
45
|
+
onMutatingBlades: import("@omnia/fx").MessageBusExposeOnlySubscription<BladeInstance[]>;
|
46
|
+
onMutatedBlades: import("@omnia/fx").MessageBusExposeOnlySubscription<BladeInstance[]>;
|
47
|
+
onMutatingActiveIndex: import("@omnia/fx").MessageBusExposeOnlySubscription<number>;
|
48
|
+
onMutatedActiveIndex: import("@omnia/fx").MessageBusExposeOnlySubscription<number>;
|
49
|
+
onMutatingNested: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
50
|
+
onMutatedNested: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
51
|
+
onMutatingJourneyMenuStore: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
52
52
|
state: {
|
53
53
|
menuItems: import("@omnia/fx-models").JourneyMenuItem[];
|
54
54
|
activeMenuItem: import("@omnia/fx-models").JourneyMenuItem;
|
55
55
|
};
|
56
56
|
events: {
|
57
|
-
onMutatingMenuItems: import("@omnia/fx
|
58
|
-
onMutatedMenuItems: import("@omnia/fx
|
59
|
-
onMutatingActiveMenuItem: import("@omnia/fx
|
60
|
-
onMutatedActiveMenuItem: import("@omnia/fx
|
57
|
+
onMutatingMenuItems: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem[]>;
|
58
|
+
onMutatedMenuItems: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem[]>;
|
59
|
+
onMutatingActiveMenuItem: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem>;
|
60
|
+
onMutatedActiveMenuItem: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem>;
|
61
61
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
62
62
|
actions: {
|
63
63
|
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
@@ -81,16 +81,16 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
|
|
81
81
|
readonly menuItems: import("@omnia/fx-models").JourneyMenuItem[];
|
82
82
|
};
|
83
83
|
}>;
|
84
|
-
onMutatedJourneyMenuStore: import("@omnia/fx
|
84
|
+
onMutatedJourneyMenuStore: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
85
85
|
state: {
|
86
86
|
menuItems: import("@omnia/fx-models").JourneyMenuItem[];
|
87
87
|
activeMenuItem: import("@omnia/fx-models").JourneyMenuItem;
|
88
88
|
};
|
89
89
|
events: {
|
90
|
-
onMutatingMenuItems: import("@omnia/fx
|
91
|
-
onMutatedMenuItems: import("@omnia/fx
|
92
|
-
onMutatingActiveMenuItem: import("@omnia/fx
|
93
|
-
onMutatedActiveMenuItem: import("@omnia/fx
|
90
|
+
onMutatingMenuItems: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem[]>;
|
91
|
+
onMutatedMenuItems: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem[]>;
|
92
|
+
onMutatingActiveMenuItem: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem>;
|
93
|
+
onMutatedActiveMenuItem: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").JourneyMenuItem>;
|
94
94
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
95
95
|
actions: {
|
96
96
|
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
@@ -118,7 +118,7 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
|
|
118
118
|
get: {
|
119
119
|
shareds<T_3>(): {
|
120
120
|
state: T_3;
|
121
|
-
events: { [K in keyof T_3 as `onMutating${Capitalize<string & K>}` | `onMutated${Capitalize<string & K>}`]: import("@omnia/fx
|
121
|
+
events: { [K in keyof T_3 as `onMutating${Capitalize<string & K>}` | `onMutated${Capitalize<string & K>}`]: import("@omnia/fx").MessageBusExposeOnlySubscription<T_3[K]>; } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
122
122
|
};
|
123
123
|
blade(id: GuidValue): BladeInstance;
|
124
124
|
showBackButton(bladeId: GuidValue): boolean;
|
@@ -173,7 +173,7 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
|
|
173
173
|
moveNext(): void;
|
174
174
|
movePrev(): void;
|
175
175
|
travelTo(toBladeId: GuidValue): void;
|
176
|
-
|
176
|
+
defineValueToSave<T_7>(value: T_7): {
|
177
177
|
value: T_7;
|
178
178
|
setValue: (value: T_7) => void;
|
179
179
|
};
|
@@ -181,6 +181,6 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
|
|
181
181
|
};
|
182
182
|
declare function createJourneyStateManager<T extends Object>(): {
|
183
183
|
state: T;
|
184
|
-
events: { [K in keyof T as `onMutating${Capitalize<string & K>}` | `onMutated${Capitalize<string & K>}`]: import("@omnia/fx
|
184
|
+
events: { [K in keyof T as `onMutating${Capitalize<string & K>}` | `onMutated${Capitalize<string & K>}`]: import("@omnia/fx").MessageBusExposeOnlySubscription<T[K]>; } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
185
185
|
};
|
186
186
|
export {};
|
@@ -7,7 +7,6 @@ import "monaco-editor/esm/vs/editor/contrib/colorPicker/browser/colorDetector.js
|
|
7
7
|
import "monaco-editor/esm/vs/editor/contrib/comment/browser/comment.js";
|
8
8
|
import "monaco-editor/esm/vs/editor/contrib/contextmenu/browser/contextmenu.js";
|
9
9
|
import "monaco-editor/esm/vs/editor/contrib/suggest/browser/suggestController.js";
|
10
|
-
import "monaco-editor/esm/vs/editor/standalone/browser/accessibilityHelp/accessibilityHelp.js";
|
11
10
|
import "monaco-editor/esm/vs/language/json/monaco.contribution";
|
12
11
|
import "monaco-editor/esm/vs/language/json/jsonMode";
|
13
12
|
import "monaco-editor/esm/vs/basic-languages/javascript/javascript.contribution";
|
package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts
CHANGED
@@ -1,8 +1,16 @@
|
|
1
1
|
import { IdentityDisplayStyles } from "./IdentityDisplay.css";
|
2
|
-
import { IdentityPropertyDefinition, IdentityPropertyDisplaySettings, IdentityPropertyValue, IPropertyDisplayRenderer } from "@omnia/fx-models";
|
2
|
+
import { IdentityPropertyDefinition, IdentityPropertyDisplaySettings, IdentityPropertyValue, IPropertyDisplayRenderer, IResolvedIdentity } from "@omnia/fx-models";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
export type IdentityDisplaySlots = {
|
5
|
+
["v-slots"]: {
|
6
|
+
renderer?: (renderProps: {
|
7
|
+
identities: Array<IResolvedIdentity>;
|
8
|
+
}) => VNodeChild;
|
9
|
+
};
|
10
|
+
};
|
3
11
|
export type IdentityDisplayProps = IPropertyDisplayRenderer<IdentityPropertyDefinition> & {
|
4
12
|
styles: typeof IdentityDisplayStyles;
|
5
|
-
};
|
13
|
+
} & IdentityDisplaySlots;
|
6
14
|
declare const _default: {
|
7
15
|
new (...args: any[]): {
|
8
16
|
$: import("vue").ComponentInternalInstance;
|
@@ -55,6 +63,11 @@ declare const _default: {
|
|
55
63
|
readonly styles?: {
|
56
64
|
container: import("typestyle/lib/types").NestedCSSProperties;
|
57
65
|
};
|
66
|
+
readonly "v-slots"?: {
|
67
|
+
renderer?: (renderProps: {
|
68
|
+
identities: IResolvedIdentity[];
|
69
|
+
}) => VNodeChild;
|
70
|
+
};
|
58
71
|
readonly modelValue?: IdentityPropertyValue;
|
59
72
|
readonly displaySettings?: IdentityPropertyDisplaySettings;
|
60
73
|
readonly setupSettings?: never;
|
@@ -81,6 +94,15 @@ declare const _default: {
|
|
81
94
|
}, {
|
82
95
|
container: import("typestyle/lib/types").NestedCSSProperties;
|
83
96
|
}>;
|
97
|
+
"v-slots": import("vue").Prop<{
|
98
|
+
renderer?: (renderProps: {
|
99
|
+
identities: IResolvedIdentity[];
|
100
|
+
}) => VNodeChild;
|
101
|
+
}, {
|
102
|
+
renderer?: (renderProps: {
|
103
|
+
identities: IResolvedIdentity[];
|
104
|
+
}) => VNodeChild;
|
105
|
+
}>;
|
84
106
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
85
107
|
beforeCreate?: (() => void) | (() => void)[];
|
86
108
|
created?: (() => void) | (() => void)[];
|
@@ -110,6 +132,15 @@ declare const _default: {
|
|
110
132
|
}, {
|
111
133
|
container: import("typestyle/lib/types").NestedCSSProperties;
|
112
134
|
}>;
|
135
|
+
"v-slots": import("vue").Prop<{
|
136
|
+
renderer?: (renderProps: {
|
137
|
+
identities: IResolvedIdentity[];
|
138
|
+
}) => VNodeChild;
|
139
|
+
}, {
|
140
|
+
renderer?: (renderProps: {
|
141
|
+
identities: IResolvedIdentity[];
|
142
|
+
}) => VNodeChild;
|
143
|
+
}>;
|
113
144
|
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
114
145
|
__isFragment?: never;
|
115
146
|
__isTeleport?: never;
|
@@ -123,11 +154,25 @@ declare const _default: {
|
|
123
154
|
}, {
|
124
155
|
container: import("typestyle/lib/types").NestedCSSProperties;
|
125
156
|
}>;
|
157
|
+
"v-slots": import("vue").Prop<{
|
158
|
+
renderer?: (renderProps: {
|
159
|
+
identities: IResolvedIdentity[];
|
160
|
+
}) => VNodeChild;
|
161
|
+
}, {
|
162
|
+
renderer?: (renderProps: {
|
163
|
+
identities: IResolvedIdentity[];
|
164
|
+
}) => VNodeChild;
|
165
|
+
}>;
|
126
166
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
127
167
|
propsDefinition: Omit<Readonly<{} & {
|
128
168
|
styles?: {
|
129
169
|
container: import("typestyle/lib/types").NestedCSSProperties;
|
130
170
|
};
|
171
|
+
"v-slots"?: {
|
172
|
+
renderer?: (renderProps: {
|
173
|
+
identities: IResolvedIdentity[];
|
174
|
+
}) => VNodeChild;
|
175
|
+
};
|
131
176
|
modelValue?: IdentityPropertyValue;
|
132
177
|
displaySettings?: IdentityPropertyDisplaySettings;
|
133
178
|
setupSettings?: never;
|
package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyValueRenderer.d.ts
CHANGED
@@ -116,10 +116,10 @@ declare const _default: {
|
|
116
116
|
readonly "v-model"?: unknown;
|
117
117
|
readonly editMode?: boolean;
|
118
118
|
readonly propertyDefintionId: unknown;
|
119
|
-
readonly
|
120
|
-
readonly "
|
121
|
-
readonly
|
122
|
-
readonly "
|
119
|
+
readonly displayRendererDefinition?: VelcronDefinition;
|
120
|
+
readonly "display-renderer-definition"?: VelcronDefinition;
|
121
|
+
readonly displayRendererContext?: VelcronRenderContext;
|
122
|
+
readonly "display-renderer-context"?: VelcronRenderContext;
|
123
123
|
};
|
124
124
|
$attrs: {
|
125
125
|
[x: string]: unknown;
|
@@ -135,16 +135,16 @@ declare const _default: {
|
|
135
135
|
$emit: (event: string, ...args: any[]) => void;
|
136
136
|
$el: any;
|
137
137
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
138
|
-
"
|
138
|
+
"display-renderer-context": {
|
139
139
|
type: import("vue").PropType<VelcronRenderContext>;
|
140
140
|
};
|
141
|
-
|
141
|
+
displayRendererContext: {
|
142
142
|
type: import("vue").PropType<VelcronRenderContext>;
|
143
143
|
};
|
144
|
-
"
|
144
|
+
"display-renderer-definition": {
|
145
145
|
type: import("vue").PropType<VelcronDefinition>;
|
146
146
|
};
|
147
|
-
|
147
|
+
displayRendererDefinition: {
|
148
148
|
type: import("vue").PropType<VelcronDefinition>;
|
149
149
|
};
|
150
150
|
editMode: {
|
@@ -252,16 +252,16 @@ declare const _default: {
|
|
252
252
|
$nextTick: typeof import("vue").nextTick;
|
253
253
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
254
254
|
} & Readonly<import("vue").ExtractPropTypes<{
|
255
|
-
"
|
255
|
+
"display-renderer-context": {
|
256
256
|
type: import("vue").PropType<VelcronRenderContext>;
|
257
257
|
};
|
258
|
-
|
258
|
+
displayRendererContext: {
|
259
259
|
type: import("vue").PropType<VelcronRenderContext>;
|
260
260
|
};
|
261
|
-
"
|
261
|
+
"display-renderer-definition": {
|
262
262
|
type: import("vue").PropType<VelcronDefinition>;
|
263
263
|
};
|
264
|
-
|
264
|
+
displayRendererDefinition: {
|
265
265
|
type: import("vue").PropType<VelcronDefinition>;
|
266
266
|
};
|
267
267
|
editMode: {
|
@@ -353,16 +353,16 @@ declare const _default: {
|
|
353
353
|
__isTeleport?: never;
|
354
354
|
__isSuspense?: never;
|
355
355
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
356
|
-
"
|
356
|
+
"display-renderer-context": {
|
357
357
|
type: import("vue").PropType<VelcronRenderContext>;
|
358
358
|
};
|
359
|
-
|
359
|
+
displayRendererContext: {
|
360
360
|
type: import("vue").PropType<VelcronRenderContext>;
|
361
361
|
};
|
362
|
-
"
|
362
|
+
"display-renderer-definition": {
|
363
363
|
type: import("vue").PropType<VelcronDefinition>;
|
364
364
|
};
|
365
|
-
|
365
|
+
displayRendererDefinition: {
|
366
366
|
type: import("vue").PropType<VelcronDefinition>;
|
367
367
|
};
|
368
368
|
editMode: {
|
@@ -520,10 +520,10 @@ declare const _default: {
|
|
520
520
|
"onUpdate:modelValue"?: (value: PropertyValue) => any;
|
521
521
|
"v-model"?: unknown;
|
522
522
|
editMode?: boolean;
|
523
|
-
|
524
|
-
"
|
525
|
-
|
526
|
-
"
|
523
|
+
displayRendererDefinition?: VelcronDefinition;
|
524
|
+
"display-renderer-definition"?: VelcronDefinition;
|
525
|
+
displayRendererContext?: VelcronRenderContext;
|
526
|
+
"display-renderer-context"?: VelcronRenderContext;
|
527
527
|
}>, never>;
|
528
528
|
};
|
529
529
|
export default _default;
|
@@ -6,10 +6,10 @@ export declare const useBlueprintStore: (newInstanceWithName?: string) => {
|
|
6
6
|
blueprintType: "default" | "variant1" | "variant2" | "variant3" | BlueprintTypes;
|
7
7
|
};
|
8
8
|
events: {
|
9
|
-
onMutatingBlueprint: import("@omnia/fx
|
10
|
-
onMutatedBlueprint: import("@omnia/fx
|
11
|
-
onMutatingBlueprintType: import("@omnia/fx
|
12
|
-
onMutatedBlueprintType: import("@omnia/fx
|
9
|
+
onMutatingBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<BlueprintDefinition>;
|
10
|
+
onMutatedBlueprint: import("@omnia/fx").MessageBusExposeOnlySubscription<BlueprintDefinition>;
|
11
|
+
onMutatingBlueprintType: import("@omnia/fx").MessageBusExposeOnlySubscription<"default" | "variant1" | "variant2" | "variant3" | BlueprintTypes>;
|
12
|
+
onMutatedBlueprintType: import("@omnia/fx").MessageBusExposeOnlySubscription<"default" | "variant1" | "variant2" | "variant3" | BlueprintTypes>;
|
13
13
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
14
14
|
actions: {
|
15
15
|
onDispatching<T extends (...args: any) => any>(action: (actions: {
|