@omnia/fx 8.0.29-vnext → 8.0.31-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.
Files changed (46) hide show
  1. package/internal-do-not-import-from-here/manifests/omfx.libs.prosemirror.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  3. package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +11 -3
  4. package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.js +1 -0
  5. package/internal-do-not-import-from-here/shared/models/theming/SpacingSetting.d.ts +6 -0
  6. package/internal-do-not-import-from-here/shared/models/theming/SpacingSetting.js +2 -0
  7. package/internal-do-not-import-from-here/shared/models/theming/index.d.ts +1 -0
  8. package/internal-do-not-import-from-here/shared/models/theming/index.js +1 -0
  9. package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.css.d.ts +4 -1
  10. package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.d.ts +0 -1
  11. package/internal-do-not-import-from-here/ux/features/FeatureActivation.css.d.ts +2 -7
  12. package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +118 -94
  13. package/internal-do-not-import-from-here/ux/features/FeatureActivation_old.d.ts +0 -0
  14. package/internal-do-not-import-from-here/ux/features/FeaturesJourney.css.d.ts +0 -1
  15. package/internal-do-not-import-from-here/ux/features/FeaturesJourney.d.ts +118 -18
  16. package/internal-do-not-import-from-here/ux/features/FeaturesJourney_old.d.ts +0 -0
  17. package/internal-do-not-import-from-here/ux/features/blades/FeatureHomeBlade.d.ts +117 -12
  18. package/internal-do-not-import-from-here/ux/features/blades/FeaturePropertiesBlade.d.ts +46 -34
  19. package/internal-do-not-import-from-here/ux/features/blades/FeaturePropertiesBlade_old.d.ts +2 -0
  20. package/internal-do-not-import-from-here/ux/features/blades/FeauturePropertiesBlad.css.d.ts +3 -0
  21. package/internal-do-not-import-from-here/ux/features/index.d.ts +1 -3
  22. package/internal-do-not-import-from-here/ux/features/models/FeatureInstanceDetails.d.ts +13 -0
  23. package/internal-do-not-import-from-here/ux/features/models/RequiredAzureAdPermission.d.ts +7 -0
  24. package/internal-do-not-import-from-here/ux/features/models/index.d.ts +2 -0
  25. package/internal-do-not-import-from-here/ux/features/stores/FeatureJourneyStore.d.ts +85 -0
  26. package/internal-do-not-import-from-here/ux/features/stores/index.d.ts +1 -0
  27. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.css.d.ts +2 -2
  28. package/internal-do-not-import-from-here/ux/journey/IJourney.d.ts +1 -1
  29. package/internal-do-not-import-from-here/ux/journey/testbench/JourneyTest.css.d.ts +4 -0
  30. package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +132 -1
  31. package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.css.d.ts +2 -1
  32. package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +22 -0
  33. package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +27 -0
  34. package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.css.d.ts +4 -0
  35. package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +114 -0
  36. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +4 -0
  37. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +84 -24
  38. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.css.d.ts +2 -1
  39. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +1 -1
  40. package/internal-do-not-import-from-here/ux/oxide/tooltip/Tooltip.d.ts +150 -0
  41. package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditor.d.ts +1 -1
  42. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseComponentStyling.d.ts +4 -4
  43. package/internal-do-not-import-from-here/ux/theming-v2/themes/Themes.d.ts +9 -9
  44. package/internal-do-not-import-from-here/wctypings.d.ts +207 -201
  45. package/package.json +2 -2
  46. package/internal-do-not-import-from-here/ux/features/IFeaturesJourney.d.ts +0 -18
@@ -1,4 +1,3 @@
1
- import { FeaturesLocalization, OmniaTheming, VueComponentBase } from "../..";
2
1
  import { GuidValue } from "../../../models";
3
2
  export interface IFeatureHomeBladeProps {
4
3
  appInstanceId?: GuidValue;
@@ -6,14 +5,120 @@ export interface IFeatureHomeBladeProps {
6
5
  handleFeatureAction: (action: string, featureId: GuidValue) => void;
7
6
  targetResolverType: string;
8
7
  }
9
- export declare class FeatureHomeBlade extends VueComponentBase<IFeatureHomeBladeProps> {
10
- appInstanceId?: GuidValue;
11
- handleClose: () => void;
12
- handleFeatureAction: (action: string, featureId: GuidValue) => void;
13
- targetResolverType: string;
14
- loc: FeaturesLocalization.locInterface;
15
- omniaTheming: OmniaTheming;
16
- private key;
17
- created(): void;
18
- render(): JSX.Element;
19
- }
8
+ declare const _default: {
9
+ new (...args: any[]): {
10
+ $: import("vue").ComponentInternalInstance;
11
+ $data: {};
12
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
13
+ "target-resolver-type": {
14
+ type: import("vue").PropType<string>;
15
+ };
16
+ targetResolverType: {
17
+ type: import("vue").PropType<string>;
18
+ };
19
+ "app-instance-id": {
20
+ type: import("vue").PropType<GuidValue>;
21
+ };
22
+ appInstanceId: {
23
+ type: import("vue").PropType<GuidValue>;
24
+ };
25
+ }>> & {
26
+ onHandleFeatureAction?: (action: string, featureId: GuidValue) => any;
27
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
28
+ $attrs: {
29
+ [x: string]: unknown;
30
+ };
31
+ $refs: {
32
+ [x: string]: unknown;
33
+ };
34
+ $slots: Readonly<{
35
+ [name: string]: import("vue").Slot;
36
+ }>;
37
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
38
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
39
+ $emit: (event: "handleFeatureAction", action: string, featureId: GuidValue) => void;
40
+ $el: any;
41
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
42
+ "target-resolver-type": {
43
+ type: import("vue").PropType<string>;
44
+ };
45
+ targetResolverType: {
46
+ type: import("vue").PropType<string>;
47
+ };
48
+ "app-instance-id": {
49
+ type: import("vue").PropType<GuidValue>;
50
+ };
51
+ appInstanceId: {
52
+ type: import("vue").PropType<GuidValue>;
53
+ };
54
+ }>> & {
55
+ onHandleFeatureAction?: (action: string, featureId: GuidValue) => any;
56
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
57
+ handleFeatureAction: (action: string, featureId: GuidValue) => boolean;
58
+ }, string, {}, {}, string> & {
59
+ beforeCreate?: (() => void) | (() => void)[];
60
+ created?: (() => void) | (() => void)[];
61
+ beforeMount?: (() => void) | (() => void)[];
62
+ mounted?: (() => void) | (() => void)[];
63
+ beforeUpdate?: (() => void) | (() => void)[];
64
+ updated?: (() => void) | (() => void)[];
65
+ activated?: (() => void) | (() => void)[];
66
+ deactivated?: (() => void) | (() => void)[];
67
+ beforeDestroy?: (() => void) | (() => void)[];
68
+ beforeUnmount?: (() => void) | (() => void)[];
69
+ destroyed?: (() => void) | (() => void)[];
70
+ unmounted?: (() => void) | (() => void)[];
71
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
72
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
73
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
74
+ };
75
+ $forceUpdate: () => void;
76
+ $nextTick: typeof import("vue").nextTick;
77
+ $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;
78
+ } & Readonly<import("vue").ExtractPropTypes<{
79
+ "target-resolver-type": {
80
+ type: import("vue").PropType<string>;
81
+ };
82
+ targetResolverType: {
83
+ type: import("vue").PropType<string>;
84
+ };
85
+ "app-instance-id": {
86
+ type: import("vue").PropType<GuidValue>;
87
+ };
88
+ appInstanceId: {
89
+ type: import("vue").PropType<GuidValue>;
90
+ };
91
+ }>> & {
92
+ onHandleFeatureAction?: (action: string, featureId: GuidValue) => any;
93
+ } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
94
+ __isFragment?: never;
95
+ __isTeleport?: never;
96
+ __isSuspense?: never;
97
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
98
+ "target-resolver-type": {
99
+ type: import("vue").PropType<string>;
100
+ };
101
+ targetResolverType: {
102
+ type: import("vue").PropType<string>;
103
+ };
104
+ "app-instance-id": {
105
+ type: import("vue").PropType<GuidValue>;
106
+ };
107
+ appInstanceId: {
108
+ type: import("vue").PropType<GuidValue>;
109
+ };
110
+ }>> & {
111
+ onHandleFeatureAction?: (action: string, featureId: GuidValue) => any;
112
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
113
+ handleFeatureAction: (action: string, featureId: GuidValue) => boolean;
114
+ }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
115
+ propsDefinition: Omit<Readonly<{} & {
116
+ appInstanceId?: unknown;
117
+ targetResolverType?: string;
118
+ "app-instance-id"?: unknown;
119
+ "target-resolver-type"?: string;
120
+ }>, "onHandleFeatureAction"> & {
121
+ onHandleFeatureAction?: (action: string, featureId: GuidValue) => any;
122
+ };
123
+ };
124
+ export default _default;
@@ -1,34 +1,46 @@
1
- import { SubscriptionHandler } from "../../../";
2
- import { OmniaTheming, FeaturesLocalization, FormValidator, VueComponentBase } from "../..";
3
- import { FeatureStore } from "../../../stores";
4
- import { FeatureInstance, Feature, AdminRoute, TokenBasedRouteStateData, ITokenBasedRouteContext } from "../../../models";
5
- export interface IFeaturePropertiesBladeProps {
6
- handleClose: () => void;
7
- targetResolverType: string;
8
- }
9
- export declare class FeaturePropertiesBlade extends VueComponentBase<IFeaturePropertiesBladeProps> {
10
- handleClose: () => void;
11
- targetResolverType: string;
12
- loc: FeaturesLocalization.locInterface;
13
- omniaTheming: OmniaTheming;
14
- featureStore: FeatureStore;
15
- subscriptionHandler: SubscriptionHandler;
16
- protected formValidator: FormValidator;
17
- featureInstance: FeatureInstance;
18
- featureDefinition: Feature;
19
- isLoading: boolean;
20
- isSavingProp: boolean;
21
- actionParam: string;
22
- properties: any;
23
- created(): void;
24
- mounted(): void;
25
- private getItemIdFromPath;
26
- onNavigate(ctx: ITokenBasedRouteContext<AdminRoute, TokenBasedRouteStateData>): void;
27
- onClose(): void;
28
- save(): void;
29
- onChanged(model: any): void;
30
- renderForm(): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
31
- [key: string]: any;
32
- }>;
33
- render(): JSX.Element;
34
- }
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
6
+ $attrs: {
7
+ [x: string]: unknown;
8
+ };
9
+ $refs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $slots: Readonly<{
13
+ [name: string]: import("vue").Slot;
14
+ }>;
15
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
16
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
17
+ $emit: (event: string, ...args: any[]) => void;
18
+ $el: any;
19
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
20
+ beforeCreate?: (() => void) | (() => void)[];
21
+ created?: (() => void) | (() => void)[];
22
+ beforeMount?: (() => void) | (() => void)[];
23
+ mounted?: (() => void) | (() => void)[];
24
+ beforeUpdate?: (() => void) | (() => void)[];
25
+ updated?: (() => void) | (() => void)[];
26
+ activated?: (() => void) | (() => void)[];
27
+ deactivated?: (() => void) | (() => void)[];
28
+ beforeDestroy?: (() => void) | (() => void)[];
29
+ beforeUnmount?: (() => void) | (() => void)[];
30
+ destroyed?: (() => void) | (() => void)[];
31
+ unmounted?: (() => void) | (() => void)[];
32
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
33
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
34
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
35
+ };
36
+ $forceUpdate: () => void;
37
+ $nextTick: typeof import("vue").nextTick;
38
+ $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;
39
+ } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
40
+ __isFragment?: never;
41
+ __isTeleport?: never;
42
+ __isSuspense?: never;
43
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
44
+ propsDefinition: Omit<Readonly<{} & {}>, never>;
45
+ };
46
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: {};
2
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export declare const FeaturePropertiesBladeStyles: {
2
+ descriptionLabel: string;
3
+ };
@@ -1,5 +1,3 @@
1
1
  export * from "./FeatureComponentProps";
2
- export * from "./testfeaturescomponent";
3
2
  export * from "./FeaturesConstants";
4
- export * from "./FeaturesJourney.css";
5
- export * from "./loc/localize";
3
+ export * from "./models";
@@ -0,0 +1,13 @@
1
+ export interface FeatureInstanceDetails<TItem> {
2
+ item?: TItem;
3
+ selected?: boolean;
4
+ isGroupHeader?: boolean;
5
+ title?: string;
6
+ description?: string;
7
+ consentInformation?: string;
8
+ category?: string;
9
+ needConsent?: boolean;
10
+ isBusy?: boolean;
11
+ hasError?: boolean;
12
+ errorMsg?: string;
13
+ }
@@ -0,0 +1,7 @@
1
+ export interface RequiredAzureAdPermission {
2
+ id: string;
3
+ name: string;
4
+ type: string;
5
+ approved: boolean;
6
+ appId: string;
7
+ }
@@ -0,0 +1,2 @@
1
+ export * from "./FeatureInstanceDetails";
2
+ export * from "./RequiredAzureAdPermission";
@@ -0,0 +1,85 @@
1
+ import { AppInstance, AppTemplate, AzurePermissionResource, FeatureInstance, GuidValue, TargetResolverTypes } from "@omnia/fx-models";
2
+ import { FeatureInstanceDetails, RequiredAzureAdPermission } from "..";
3
+ export declare const useFeatureJourneyStore: (newInstanceWithName?: string) => {
4
+ state: {
5
+ targetResolverType: TargetResolverTypes;
6
+ isLoadingPermissions: boolean;
7
+ isLoadingFeatures: boolean;
8
+ isLoadingApp: boolean;
9
+ isUpgradingFull: boolean;
10
+ selectedFeature: FeatureInstanceDetails<FeatureInstance>;
11
+ activeFeature: FeatureInstanceDetails<FeatureInstance>;
12
+ featuresInstances: FeatureInstanceDetails<FeatureInstance>[];
13
+ featuresRequireUpgrade: FeatureInstanceDetails<FeatureInstance>[];
14
+ bindingState: string;
15
+ allowCheckingStatus: boolean;
16
+ requiredConsentFeatures: Record<string, RequiredAzureAdPermission[]>;
17
+ currentConsentFeatureId: string;
18
+ consentDialogVisible: boolean;
19
+ consentUrlDialogVisible: boolean;
20
+ deleteAppDialog: boolean;
21
+ featureDeactive: FeatureInstanceDetails<FeatureInstance>;
22
+ azureAdPermissionResourcesPromise: Promise<AzurePermissionResource[]>;
23
+ resources: AzurePermissionResource[];
24
+ consentUrl: string;
25
+ appInstance: AppInstance;
26
+ appTemplate: AppTemplate;
27
+ };
28
+ get: {
29
+ isLoading: () => boolean;
30
+ getFeaturesByCategory: (category: string) => FeatureInstanceDetails<FeatureInstance>[];
31
+ };
32
+ actions: {
33
+ setTargetResolverType: (targetResolverType: TargetResolverTypes) => void;
34
+ loadFeatures: (appInstanceId?: GuidValue) => Promise<void>;
35
+ toggelSelectedFeature: (feature: FeatureInstanceDetails<FeatureInstance>) => void;
36
+ setActiveFeature: (feature: FeatureInstanceDetails<FeatureInstance>) => void;
37
+ };
38
+ events: {
39
+ onMutatingTargetResolverType: import("@omnia/fx").EventHook<TargetResolverTypes>;
40
+ onMutatedTargetResolverType: import("@omnia/fx").EventHook<TargetResolverTypes>;
41
+ onMutatingIsLoadingPermissions: import("@omnia/fx").EventHook<boolean>;
42
+ onMutatedIsLoadingPermissions: import("@omnia/fx").EventHook<boolean>;
43
+ onMutatingIsLoadingFeatures: import("@omnia/fx").EventHook<boolean>;
44
+ onMutatedIsLoadingFeatures: import("@omnia/fx").EventHook<boolean>;
45
+ onMutatingIsLoadingApp: import("@omnia/fx").EventHook<boolean>;
46
+ onMutatedIsLoadingApp: import("@omnia/fx").EventHook<boolean>;
47
+ onMutatingIsUpgradingFull: import("@omnia/fx").EventHook<boolean>;
48
+ onMutatedIsUpgradingFull: import("@omnia/fx").EventHook<boolean>;
49
+ onMutatingSelectedFeature: import("@omnia/fx").EventHook<FeatureInstanceDetails<FeatureInstance>>;
50
+ onMutatedSelectedFeature: import("@omnia/fx").EventHook<FeatureInstanceDetails<FeatureInstance>>;
51
+ onMutatingActiveFeature: import("@omnia/fx").EventHook<FeatureInstanceDetails<FeatureInstance>>;
52
+ onMutatedActiveFeature: import("@omnia/fx").EventHook<FeatureInstanceDetails<FeatureInstance>>;
53
+ onMutatingFeaturesInstances: import("@omnia/fx").EventHook<FeatureInstanceDetails<FeatureInstance>[]>;
54
+ onMutatedFeaturesInstances: import("@omnia/fx").EventHook<FeatureInstanceDetails<FeatureInstance>[]>;
55
+ onMutatingFeaturesRequireUpgrade: import("@omnia/fx").EventHook<FeatureInstanceDetails<FeatureInstance>[]>;
56
+ onMutatedFeaturesRequireUpgrade: import("@omnia/fx").EventHook<FeatureInstanceDetails<FeatureInstance>[]>;
57
+ onMutatingBindingState: import("@omnia/fx").EventHook<string>;
58
+ onMutatedBindingState: import("@omnia/fx").EventHook<string>;
59
+ onMutatingAllowCheckingStatus: import("@omnia/fx").EventHook<boolean>;
60
+ onMutatedAllowCheckingStatus: import("@omnia/fx").EventHook<boolean>;
61
+ onMutatingRequiredConsentFeatures: import("@omnia/fx").EventHook<Record<string, RequiredAzureAdPermission[]>>;
62
+ onMutatedRequiredConsentFeatures: import("@omnia/fx").EventHook<Record<string, RequiredAzureAdPermission[]>>;
63
+ onMutatingCurrentConsentFeatureId: import("@omnia/fx").EventHook<string>;
64
+ onMutatedCurrentConsentFeatureId: import("@omnia/fx").EventHook<string>;
65
+ onMutatingConsentDialogVisible: import("@omnia/fx").EventHook<boolean>;
66
+ onMutatedConsentDialogVisible: import("@omnia/fx").EventHook<boolean>;
67
+ onMutatingConsentUrlDialogVisible: import("@omnia/fx").EventHook<boolean>;
68
+ onMutatedConsentUrlDialogVisible: import("@omnia/fx").EventHook<boolean>;
69
+ onMutatingDeleteAppDialog: import("@omnia/fx").EventHook<boolean>;
70
+ onMutatedDeleteAppDialog: import("@omnia/fx").EventHook<boolean>;
71
+ onMutatingFeatureDeactive: import("@omnia/fx").EventHook<FeatureInstanceDetails<FeatureInstance>>;
72
+ onMutatedFeatureDeactive: import("@omnia/fx").EventHook<FeatureInstanceDetails<FeatureInstance>>;
73
+ onMutatingAzureAdPermissionResourcesPromise: import("@omnia/fx").EventHook<Promise<AzurePermissionResource[]>>;
74
+ onMutatedAzureAdPermissionResourcesPromise: import("@omnia/fx").EventHook<Promise<AzurePermissionResource[]>>;
75
+ onMutatingResources: import("@omnia/fx").EventHook<AzurePermissionResource[]>;
76
+ onMutatedResources: import("@omnia/fx").EventHook<AzurePermissionResource[]>;
77
+ onMutatingConsentUrl: import("@omnia/fx").EventHook<string>;
78
+ onMutatedConsentUrl: import("@omnia/fx").EventHook<string>;
79
+ onMutatingAppInstance: import("@omnia/fx").EventHook<AppInstance>;
80
+ onMutatedAppInstance: import("@omnia/fx").EventHook<AppInstance>;
81
+ onMutatingAppTemplate: import("@omnia/fx").EventHook<AppTemplate>;
82
+ onMutatedAppTemplate: import("@omnia/fx").EventHook<AppTemplate>;
83
+ };
84
+ activated: void;
85
+ };
@@ -0,0 +1 @@
1
+ export * from "./FeatureJourneyStore";
@@ -34,11 +34,11 @@ declare const _default: {
34
34
  };
35
35
  scrollContainer: {
36
36
  maxHeight: string;
37
- overflowY: "scroll";
37
+ overflowY: "auto";
38
38
  };
39
39
  scrollContainerWithoutTabs: {
40
40
  maxHeight: string;
41
- overflowY: "scroll";
41
+ overflowY: "auto";
42
42
  };
43
43
  inputLabel: {
44
44
  $nest: {
@@ -14,7 +14,7 @@ declare global {
14
14
  interface ElementAttributesProperty {
15
15
  }
16
16
  interface IntrinsicElements {
17
- "omfx-journey": TsxAllowUnknowProperties<IJourney>;
17
+ "omfx-journey-old": TsxAllowUnknowProperties<IJourney>;
18
18
  }
19
19
  }
20
20
  }
@@ -0,0 +1,4 @@
1
+ import { ColorDefinition } from "@omnia/fx-models";
2
+ export declare const JourneyTestStyles: {
3
+ wrapper: (color: ColorDefinition) => string;
4
+ };
@@ -1,9 +1,40 @@
1
- import { BladeSizes } from "@omnia/fx-models";
1
+ import { IIcon, BladeSizes, Func } from "@omnia/fx-models";
2
+ import { VNodeChild } from "vue";
2
3
  declare const _default: {
3
4
  new (...args: any[]): {
4
5
  $: import("vue").ComponentInternalInstance;
5
6
  $data: {};
6
7
  $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
8
+ "v-slots": import("vue").Prop<{
9
+ default?: Func<[VNodeChild]>;
10
+ } & {
11
+ actions?: Func<[VNodeChild]>;
12
+ }>;
13
+ icon: {
14
+ type: import("vue").PropType<IIcon>;
15
+ } & {
16
+ type: import("vue").PropType<IIcon>;
17
+ };
18
+ create: {
19
+ type: import("vue").PropType<boolean>;
20
+ } & {
21
+ type: import("vue").PropType<boolean>;
22
+ };
23
+ delete: {
24
+ type: import("vue").PropType<boolean>;
25
+ } & {
26
+ type: import("vue").PropType<boolean>;
27
+ };
28
+ searchable: {
29
+ type: import("vue").PropType<boolean>;
30
+ } & {
31
+ type: import("vue").PropType<boolean>;
32
+ };
33
+ save: {
34
+ type: import("vue").PropType<boolean>;
35
+ } & {
36
+ type: import("vue").PropType<boolean>;
37
+ };
7
38
  size: {
8
39
  type: import("vue").PropType<BladeSizes>;
9
40
  required: false;
@@ -39,6 +70,36 @@ declare const _default: {
39
70
  $emit: ((event: "click:cancel", id: string) => void) & ((event: "click:delete", id: string) => void) & ((event: "click:back", id: string) => void) & ((event: "click:add", id: string) => void) & ((event: "click:save", id: string) => void);
40
71
  $el: any;
41
72
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
73
+ "v-slots": import("vue").Prop<{
74
+ default?: Func<[VNodeChild]>;
75
+ } & {
76
+ actions?: Func<[VNodeChild]>;
77
+ }>;
78
+ icon: {
79
+ type: import("vue").PropType<IIcon>;
80
+ } & {
81
+ type: import("vue").PropType<IIcon>;
82
+ };
83
+ create: {
84
+ type: import("vue").PropType<boolean>;
85
+ } & {
86
+ type: import("vue").PropType<boolean>;
87
+ };
88
+ delete: {
89
+ type: import("vue").PropType<boolean>;
90
+ } & {
91
+ type: import("vue").PropType<boolean>;
92
+ };
93
+ searchable: {
94
+ type: import("vue").PropType<boolean>;
95
+ } & {
96
+ type: import("vue").PropType<boolean>;
97
+ };
98
+ save: {
99
+ type: import("vue").PropType<boolean>;
100
+ } & {
101
+ type: import("vue").PropType<boolean>;
102
+ };
42
103
  size: {
43
104
  type: import("vue").PropType<BladeSizes>;
44
105
  required: false;
@@ -86,6 +147,36 @@ declare const _default: {
86
147
  $nextTick: typeof import("vue").nextTick;
87
148
  $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;
88
149
  } & Readonly<import("vue").ExtractPropTypes<{
150
+ "v-slots": import("vue").Prop<{
151
+ default?: Func<[VNodeChild]>;
152
+ } & {
153
+ actions?: Func<[VNodeChild]>;
154
+ }>;
155
+ icon: {
156
+ type: import("vue").PropType<IIcon>;
157
+ } & {
158
+ type: import("vue").PropType<IIcon>;
159
+ };
160
+ create: {
161
+ type: import("vue").PropType<boolean>;
162
+ } & {
163
+ type: import("vue").PropType<boolean>;
164
+ };
165
+ delete: {
166
+ type: import("vue").PropType<boolean>;
167
+ } & {
168
+ type: import("vue").PropType<boolean>;
169
+ };
170
+ searchable: {
171
+ type: import("vue").PropType<boolean>;
172
+ } & {
173
+ type: import("vue").PropType<boolean>;
174
+ };
175
+ save: {
176
+ type: import("vue").PropType<boolean>;
177
+ } & {
178
+ type: import("vue").PropType<boolean>;
179
+ };
89
180
  size: {
90
181
  type: import("vue").PropType<BladeSizes>;
91
182
  required: false;
@@ -111,6 +202,36 @@ declare const _default: {
111
202
  __isTeleport?: never;
112
203
  __isSuspense?: never;
113
204
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
205
+ "v-slots": import("vue").Prop<{
206
+ default?: Func<[VNodeChild]>;
207
+ } & {
208
+ actions?: Func<[VNodeChild]>;
209
+ }>;
210
+ icon: {
211
+ type: import("vue").PropType<IIcon>;
212
+ } & {
213
+ type: import("vue").PropType<IIcon>;
214
+ };
215
+ create: {
216
+ type: import("vue").PropType<boolean>;
217
+ } & {
218
+ type: import("vue").PropType<boolean>;
219
+ };
220
+ delete: {
221
+ type: import("vue").PropType<boolean>;
222
+ } & {
223
+ type: import("vue").PropType<boolean>;
224
+ };
225
+ searchable: {
226
+ type: import("vue").PropType<boolean>;
227
+ } & {
228
+ type: import("vue").PropType<boolean>;
229
+ };
230
+ save: {
231
+ type: import("vue").PropType<boolean>;
232
+ } & {
233
+ type: import("vue").PropType<boolean>;
234
+ };
114
235
  size: {
115
236
  type: import("vue").PropType<BladeSizes>;
116
237
  required: false;
@@ -141,7 +262,17 @@ declare const _default: {
141
262
  propsDefinition: Omit<Readonly<{} & {
142
263
  title?: string;
143
264
  id?: string;
265
+ delete?: boolean;
144
266
  size?: BladeSizes;
267
+ icon?: IIcon;
268
+ "v-slots"?: {
269
+ default?: Func<[VNodeChild]>;
270
+ } & {
271
+ actions?: Func<[VNodeChild]>;
272
+ };
273
+ create?: boolean;
274
+ save?: boolean;
275
+ searchable?: boolean;
145
276
  }>, "onClick:cancel" | "onClick:delete" | "onClick:back" | "onClick:add" | "onClick:save"> & {
146
277
  "onClick:cancel"?: (id: string) => any;
147
278
  "onClick:delete"?: (id: string) => any;
@@ -1,4 +1,5 @@
1
- import { ColorDefinition } from "@omnia/fx-models";
1
+ import { ColorDefinition } from "../../velcron/core";
2
2
  export declare const JourneyStyles: {
3
3
  wrapper: (color: ColorDefinition) => string;
4
+ bladeWrapper: string;
4
5
  };
@@ -1,4 +1,26 @@
1
1
  import { BladeInstance } from "@omnia/fx/ux";
2
+ export declare function useJourneyV2(): {
3
+ state: {
4
+ blades: BladeInstance[];
5
+ activeIndex: number;
6
+ };
7
+ get: {
8
+ blade: (id: string) => BladeInstance;
9
+ };
10
+ actions: {
11
+ addBlade: (blade: BladeInstance) => void;
12
+ setActiveIndex: (index: number) => void;
13
+ moveNext: () => void;
14
+ movePrev: () => void;
15
+ };
16
+ events: {
17
+ onMutatingBlades: import("@omnia/fx").EventHook<BladeInstance[]>;
18
+ onMutatedBlades: import("@omnia/fx").EventHook<BladeInstance[]>;
19
+ onMutatingActiveIndex: import("@omnia/fx").EventHook<number>;
20
+ onMutatedActiveIndex: import("@omnia/fx").EventHook<number>;
21
+ };
22
+ activated: void;
23
+ };
2
24
  export declare const useJourneyStore: (newInstanceWithName?: string) => {
3
25
  state: {
4
26
  blades: BladeInstance[];