@omnia/fx 8.0.230-dev → 8.0.231-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (16) hide show
  1. package/internal-do-not-import-from-here/ux/admin/usermanagement/loc/localize.d.ts +1 -1
  2. package/internal-do-not-import-from-here/ux/admin/usermanagement/users/active/DetailBlade.d.ts +6 -3
  3. package/internal-do-not-import-from-here/ux/layoutcanvas/factories/LayoutItemFactory.d.ts +1 -0
  4. package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvas.css.d.ts +3 -1
  5. package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvas.d.ts +0 -28
  6. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/MediaflowProvider.d.ts +56 -0
  7. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/MediaflowProviderStyles.css.d.ts +9 -0
  8. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/MediaflowVideoPlayer.d.ts +51 -0
  9. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/service/MediaflowService.d.ts +10 -0
  10. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/use/MediaflowProviderStore.d.ts +79 -0
  11. package/internal-do-not-import-from-here/ux/mediapickervideo/MediaPickerVideo.css.d.ts +1 -0
  12. package/internal-do-not-import-from-here/wctypings.d.ts +41 -0
  13. package/package.json +2 -2
  14. package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/AuthenticationBlade.d.ts +0 -47
  15. package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/DetailBlade.d.ts +0 -47
  16. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/store/MediaflowProviderStore.d.ts +0 -0
@@ -17,7 +17,7 @@ export declare namespace UserManagementLocalization {
17
17
  AddUser: string;
18
18
  EditUser: string;
19
19
  UserDetails: string;
20
- DeletedUser: string;
20
+ DeleteUser: string;
21
21
  DeleteUserConfirmation: string;
22
22
  Authentication: string;
23
23
  Password: string;
@@ -1,4 +1,5 @@
1
- declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<Record<string, any>>) => {
1
+ import { DefineEmit } from "@omnia/fx/ux";
2
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<DefineEmit<"delete", (uidToRemove: string) => void>>) => {
2
3
  $: import("vue").ComponentInternalInstance;
3
4
  $data: {};
4
5
  $props: {};
@@ -36,11 +37,13 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<R
36
37
  $nextTick: typeof import("vue").nextTick;
37
38
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
38
39
  } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
39
- propsDefinition: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {
40
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<DefineEmit<"delete", (uidToRemove: string) => void>> & {
40
41
  "v-slots"?: {
41
42
  default?: import("vue").Slot;
42
43
  } & {};
43
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string | number>;
44
+ } & {
45
+ onDelete?: (uidToRemove: string) => any;
46
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, never>;
44
47
  } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
45
48
  [key: string]: any;
46
49
  }>;
@@ -21,4 +21,5 @@ export declare class LayoutItemFactory {
21
21
  static getDefaultStepSettings(): SteppedSectionItemSettings;
22
22
  static getDefaultBlockSettings(): BlockLayoutSettings;
23
23
  static getDefaultImageBackground(): ImageBackground;
24
+ static getDefaultLabelText(): string;
24
25
  }
@@ -1 +1,3 @@
1
- export {};
1
+ export declare const layoutRendererCanvasStyles: {
2
+ container: (bgColor: string) => Readonly<import("@omnia/fx/ux").StylexType>;
3
+ };
@@ -12,12 +12,6 @@ declare const _default: {
12
12
  getApi: {
13
13
  type: import("vue").PropType<(inst: LayoutRendererCanvasApi, layoutCanvasStore: LayoutCanvasStore) => void>;
14
14
  };
15
- styles: {
16
- type: import("vue").PropType<Partial<{
17
- container: import("@omnia/fx-models").NestedCSSPropertiesExtends;
18
- containerVerticalAlign: (isAlignVertical: boolean) => import("@omnia/fx-models").NestedCSSPropertiesExtends;
19
- }>>;
20
- };
21
15
  designRender: {
22
16
  type: import("vue").PropType<boolean>;
23
17
  };
@@ -31,12 +25,6 @@ declare const _default: {
31
25
  getApi: {
32
26
  type: import("vue").PropType<(inst: LayoutRendererCanvasApi, layoutCanvasStore: LayoutCanvasStore) => void>;
33
27
  };
34
- styles: {
35
- type: import("vue").PropType<Partial<{
36
- container: import("@omnia/fx-models").NestedCSSPropertiesExtends;
37
- containerVerticalAlign: (isAlignVertical: boolean) => import("@omnia/fx-models").NestedCSSPropertiesExtends;
38
- }>>;
39
- };
40
28
  designRender: {
41
29
  type: import("vue").PropType<boolean>;
42
30
  };
@@ -57,12 +45,6 @@ declare const _default: {
57
45
  getApi: {
58
46
  type: import("vue").PropType<(inst: LayoutRendererCanvasApi, layoutCanvasStore: LayoutCanvasStore) => void>;
59
47
  };
60
- styles: {
61
- type: import("vue").PropType<Partial<{
62
- container: import("@omnia/fx-models").NestedCSSPropertiesExtends;
63
- containerVerticalAlign: (isAlignVertical: boolean) => import("@omnia/fx-models").NestedCSSPropertiesExtends;
64
- }>>;
65
- };
66
48
  designRender: {
67
49
  type: import("vue").PropType<boolean>;
68
50
  };
@@ -80,22 +62,12 @@ declare const _default: {
80
62
  getApi: {
81
63
  type: import("vue").PropType<(inst: LayoutRendererCanvasApi, layoutCanvasStore: LayoutCanvasStore) => void>;
82
64
  };
83
- styles: {
84
- type: import("vue").PropType<Partial<{
85
- container: import("@omnia/fx-models").NestedCSSPropertiesExtends;
86
- containerVerticalAlign: (isAlignVertical: boolean) => import("@omnia/fx-models").NestedCSSPropertiesExtends;
87
- }>>;
88
- };
89
65
  designRender: {
90
66
  type: import("vue").PropType<boolean>;
91
67
  };
92
68
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
93
69
  propsDefinition: Omit<Readonly<{} & {
94
70
  provider?: string;
95
- styles?: Partial<{
96
- container: import("@omnia/fx-models").NestedCSSPropertiesExtends;
97
- containerVerticalAlign: (isAlignVertical: boolean) => import("@omnia/fx-models").NestedCSSPropertiesExtends;
98
- }>;
99
71
  getApi?: (inst: LayoutRendererCanvasApi, layoutCanvasStore: LayoutCanvasStore) => void;
100
72
  designRender?: boolean;
101
73
  disableScrollCompensation?: boolean;
@@ -0,0 +1,56 @@
1
+ import { DefineEmit } from "@omnia/fx/ux";
2
+ import { MediaPickerVideo } from "@omnia/fx-models";
3
+ import "./MediaflowProviderStyles.css";
4
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
5
+ preSelectedMedia?: MediaPickerVideo;
6
+ } & DefineEmit<"save", () => void>>) => {
7
+ $: import("vue").ComponentInternalInstance;
8
+ $data: {};
9
+ $props: {};
10
+ $attrs: {
11
+ [x: string]: unknown;
12
+ };
13
+ $refs: {
14
+ [x: string]: unknown;
15
+ };
16
+ $slots: Readonly<{
17
+ [name: string]: import("vue").Slot<any>;
18
+ }>;
19
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
20
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
21
+ $emit: (event: string, ...args: any[]) => void;
22
+ $el: any;
23
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
24
+ beforeCreate?: (() => void) | (() => void)[];
25
+ created?: (() => void) | (() => void)[];
26
+ beforeMount?: (() => void) | (() => void)[];
27
+ mounted?: (() => void) | (() => void)[];
28
+ beforeUpdate?: (() => void) | (() => void)[];
29
+ updated?: (() => void) | (() => void)[];
30
+ activated?: (() => void) | (() => void)[];
31
+ deactivated?: (() => void) | (() => void)[];
32
+ beforeDestroy?: (() => void) | (() => void)[];
33
+ beforeUnmount?: (() => void) | (() => void)[];
34
+ destroyed?: (() => void) | (() => void)[];
35
+ unmounted?: (() => void) | (() => void)[];
36
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
37
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
38
+ 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)[];
39
+ };
40
+ $forceUpdate: () => void;
41
+ $nextTick: typeof import("vue").nextTick;
42
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
43
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
44
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<{
45
+ preSelectedMedia?: MediaPickerVideo;
46
+ } & DefineEmit<"save", () => void>> & {
47
+ "v-slots"?: {
48
+ default?: import("vue").Slot;
49
+ } & {};
50
+ } & {
51
+ onSave?: () => any;
52
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "preSelectedMedia">;
53
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
54
+ [key: string]: any;
55
+ }>;
56
+ export default _default;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Styles for the MediaflowProvider component
3
+ */
4
+ export declare const MediaflowProviderStyles: {
5
+ sampleStyle: string;
6
+ };
7
+ export declare const overwriteStyles: {
8
+ cssRaw: void;
9
+ };
@@ -0,0 +1,51 @@
1
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
2
+ video: string;
3
+ }>) => {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: {};
7
+ $attrs: {
8
+ [x: string]: unknown;
9
+ };
10
+ $refs: {
11
+ [x: string]: unknown;
12
+ };
13
+ $slots: Readonly<{
14
+ [name: string]: import("vue").Slot<any>;
15
+ }>;
16
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
17
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
18
+ $emit: (event: string, ...args: any[]) => void;
19
+ $el: any;
20
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
21
+ beforeCreate?: (() => void) | (() => void)[];
22
+ created?: (() => void) | (() => void)[];
23
+ beforeMount?: (() => void) | (() => void)[];
24
+ mounted?: (() => void) | (() => void)[];
25
+ beforeUpdate?: (() => void) | (() => void)[];
26
+ updated?: (() => void) | (() => void)[];
27
+ activated?: (() => void) | (() => void)[];
28
+ deactivated?: (() => void) | (() => void)[];
29
+ beforeDestroy?: (() => void) | (() => void)[];
30
+ beforeUnmount?: (() => void) | (() => void)[];
31
+ destroyed?: (() => void) | (() => void)[];
32
+ unmounted?: (() => void) | (() => void)[];
33
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
34
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
35
+ 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)[];
36
+ };
37
+ $forceUpdate: () => void;
38
+ $nextTick: typeof import("vue").nextTick;
39
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
40
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
41
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<{
42
+ video: string;
43
+ }> & {
44
+ "v-slots"?: {
45
+ default?: import("vue").Slot;
46
+ } & {};
47
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "video">;
48
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
49
+ [key: string]: any;
50
+ }>;
51
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { HttpClient } from "@omnia/fx";
2
+ import { MediaflowAuthenticationInfo, guid } from "@omnia/fx-models";
3
+ import { MediaflowVideoInfo } from "../models";
4
+ export declare class MediaflowService {
5
+ protected httpClient: HttpClient;
6
+ private omniaHttpClient;
7
+ private mediaflowUrl;
8
+ getVideoInfo: (mediaId: string) => Promise<MediaflowVideoInfo>;
9
+ getAuthenticationInfo: (profileId: guid) => Promise<MediaflowAuthenticationInfo>;
10
+ }
@@ -0,0 +1,79 @@
1
+ import { MediaflowAuthenticationInfo, MediaflowSettings } from "@omnia/fx-models";
2
+ import { BaseProviderImageHandler, BaseProviderVideoHandler } from "@omnia/fx/stores";
3
+ import { MediaFlowImage, MediaflowInformation } from "../models";
4
+ export declare const useMediaflowProviderStore: () => {
5
+ state: {
6
+ loadedMediaFlowJS: boolean;
7
+ loadedMediaFlowCSS: boolean;
8
+ isSettingsLoaded: boolean;
9
+ settings: MediaflowSettings;
10
+ authenticationInfo: MediaflowAuthenticationInfo;
11
+ };
12
+ actions: {
13
+ onDispatching: {
14
+ init: {
15
+ subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
16
+ };
17
+ loadSettings: {
18
+ subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
19
+ };
20
+ loadAuthenticationInfo: {
21
+ subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
22
+ };
23
+ handleVideo: {
24
+ subscribe(fn: (source: MediaflowInformation, folderId: number) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
25
+ };
26
+ handleImage: {
27
+ subscribe(fn: (source: Partial<MediaFlowImage>, folderId: number) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
28
+ };
29
+ };
30
+ onDispatched: {
31
+ init: {
32
+ subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
33
+ };
34
+ loadSettings: {
35
+ subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
36
+ };
37
+ loadAuthenticationInfo: {
38
+ subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
39
+ };
40
+ handleVideo: {
41
+ subscribe(fn: (result: void, source: MediaflowInformation, folderId: number) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
42
+ };
43
+ handleImage: {
44
+ subscribe(fn: (result: void, source: Partial<MediaFlowImage>, folderId: number) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
45
+ };
46
+ };
47
+ onFailure: {
48
+ init: {
49
+ subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
50
+ };
51
+ loadSettings: {
52
+ subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
53
+ };
54
+ loadAuthenticationInfo: {
55
+ subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
56
+ };
57
+ handleVideo: {
58
+ subscribe(fn: (failureReason: any, source: MediaflowInformation, folderId: number) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
59
+ };
60
+ handleImage: {
61
+ subscribe(fn: (failureReason: any, source: Partial<MediaFlowImage>, folderId: number) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
62
+ };
63
+ };
64
+ } & {
65
+ init: () => Promise<void>;
66
+ loadSettings: () => Promise<void>;
67
+ loadAuthenticationInfo: () => Promise<void>;
68
+ handleVideo: (source: MediaflowInformation, folderId: number) => Promise<void>;
69
+ handleImage: (source: Partial<MediaFlowImage>, folderId: number) => Promise<void>;
70
+ };
71
+ get: {
72
+ readonly getLocale: string;
73
+ readonly mediaflowLoaded: boolean;
74
+ };
75
+ handler: {
76
+ videoHandler: BaseProviderVideoHandler;
77
+ imageHandler: BaseProviderImageHandler;
78
+ };
79
+ };
@@ -1,4 +1,5 @@
1
1
  export declare const MediaPickerVideoStyles: {
2
2
  wrapper: (isDark: boolean) => string;
3
3
  container: string;
4
+ mediaflow: string;
4
5
  };
@@ -158,6 +158,7 @@ import wc6a15d7edea3d4b548b71d8a7f3e50295 from './ux/admin/usermanagement/synchr
158
158
  import wce77bbdc8d37d4449b3515d9f408e7ec8 from './ux/admin/usermanagement/synchronization/OmniaSearchUserLogsBlade';
159
159
  import wcf5842aadad834b4bb7b8ef9d6eb8b8e1 from './ux/admin/usermanagement/users/UserJourney';
160
160
  import wc6f1fc2596ddb411abf1741ed422947e3 from './ux/admin/usermanagement/users/active/Journey';
161
+ import wcfb9aa542fd414c5f8468aa0ad67d11f7 from './ux/admin/usermanagement/users/active/DetailBlade';
161
162
  import wc6f3f70caafc54724b3f8405986a21717 from './ux/admin/usermanagement/users/pending_approval/Journey';
162
163
  import wc4c9410c586ff49a6a493f8a35bb3f990 from './ux/admin/usermanagement/authentication/BusinessProfileAuthentication';
163
164
  import wca7dfb3df024c49aca5f06dfd46c2ab65 from './ux/admin/usermanagement/users/delete/Journey';
@@ -227,6 +228,8 @@ import wce20801d61d544a75a1ce7a65cb30cac6 from './ux/mediapickerproviders/Micros
227
228
  import wc9275faf9638c486b9eef0c7c38fcf12c from './ux/mediapickerproviders/Vimeo/VimeoProvider';
228
229
  import wce748b3103fe44732b8993513d863035b from './ux/mediapickerproviders/Youtube/YouTubeProvider';
229
230
  import wcfc7e793328e64088ab1b37b8f89e8693 from './ux/mediapickerproviders/bingprovider-v2/BingProvider';
231
+ import wce4c4594d528545a29edf1dca20f92d69 from './ux/mediapickerproviders/mediaflow/MediaflowProvider';
232
+ import wc29de17877bbb49b1961e75210d865a1b from './ux/mediapickerproviders/mediaflow/MediaflowVideoPlayer';
230
233
  import wc781b7e9953cf4f5b9a402cad1a0cc654 from './ux/mediapickerproviders/mycomputerprovider/MyComputerProvider';
231
234
  import wc0c762bb5c7e64ccd8a89907200dffca5 from './ux/mediapickerproviders/pexelsprovider-V2/PexelProvider';
232
235
  import wc93b4d6352faa4904854a043eff6872b7 from './ux/mediapickerproviders/sharepointvideosettings/SharePointVideoSettings';
@@ -1009,6 +1012,9 @@ declare global {
1009
1012
  "oa-user-management-user-active-journey": typeof wc6f1fc2596ddb411abf1741ed422947e3 extends {
1010
1013
  propsDefinition: infer TProp;
1011
1014
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc6f1fc2596ddb411abf1741ed422947e3 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc6f1fc2596ddb411abf1741ed422947e3>, "propsDefinition">> : never;
1015
+ "oa-user-management-user-detail": typeof wcfb9aa542fd414c5f8468aa0ad67d11f7 extends {
1016
+ propsDefinition: infer TProp;
1017
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcfb9aa542fd414c5f8468aa0ad67d11f7 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcfb9aa542fd414c5f8468aa0ad67d11f7>, "propsDefinition">> : never;
1012
1018
  "oa-user-management-user-pending-approval-journey": typeof wc6f3f70caafc54724b3f8405986a21717 extends {
1013
1019
  propsDefinition: infer TProp;
1014
1020
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc6f3f70caafc54724b3f8405986a21717 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc6f3f70caafc54724b3f8405986a21717>, "propsDefinition">> : never;
@@ -1216,6 +1222,12 @@ declare global {
1216
1222
  "omfx-media-picker-bing-provider": typeof wcfc7e793328e64088ab1b37b8f89e8693 extends {
1217
1223
  propsDefinition: infer TProp;
1218
1224
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcfc7e793328e64088ab1b37b8f89e8693 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcfc7e793328e64088ab1b37b8f89e8693>, "propsDefinition">> : never;
1225
+ "omfx-media-picker-mediaflow-provider": typeof wce4c4594d528545a29edf1dca20f92d69 extends {
1226
+ propsDefinition: infer TProp;
1227
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wce4c4594d528545a29edf1dca20f92d69 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wce4c4594d528545a29edf1dca20f92d69>, "propsDefinition">> : never;
1228
+ "omfx-mediaflow-provider-video-player": typeof wc29de17877bbb49b1961e75210d865a1b extends {
1229
+ propsDefinition: infer TProp;
1230
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc29de17877bbb49b1961e75210d865a1b extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc29de17877bbb49b1961e75210d865a1b>, "propsDefinition">> : never;
1219
1231
  "omfx-media-picker-mycomputer-provider": typeof wc781b7e9953cf4f5b9a402cad1a0cc654 extends {
1220
1232
  propsDefinition: infer TProp;
1221
1233
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc781b7e9953cf4f5b9a402cad1a0cc654 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc781b7e9953cf4f5b9a402cad1a0cc654>, "propsDefinition">> : never;
@@ -3212,6 +3224,15 @@ declare global {
3212
3224
  };
3213
3225
  } : typeof wcfc7e793328e64088ab1b37b8f89e8693;
3214
3226
  };
3227
+ "mediaflow": {
3228
+ "provider": typeof wce4c4594d528545a29edf1dca20f92d69 extends {
3229
+ propsDefinition: infer TProp;
3230
+ } ? {
3231
+ new (...args: any[]): {
3232
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
3233
+ };
3234
+ } : typeof wce4c4594d528545a29edf1dca20f92d69;
3235
+ };
3215
3236
  "mycomputer": {
3216
3237
  "provider": typeof wc781b7e9953cf4f5b9a402cad1a0cc654 extends {
3217
3238
  propsDefinition: infer TProp;
@@ -4620,6 +4641,19 @@ declare global {
4620
4641
  };
4621
4642
  } : typeof wce748b3103fe44732b8993513d863035b;
4622
4643
  };
4644
+ "mediaflow": {
4645
+ "provider": {
4646
+ "video": {
4647
+ "player": typeof wc29de17877bbb49b1961e75210d865a1b extends {
4648
+ propsDefinition: infer TProp;
4649
+ } ? {
4650
+ new (...args: any[]): {
4651
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
4652
+ };
4653
+ } : typeof wc29de17877bbb49b1961e75210d865a1b;
4654
+ };
4655
+ };
4656
+ };
4623
4657
  "sharepoint": {
4624
4658
  "video": {
4625
4659
  "settings": typeof wc93b4d6352faa4904854a043eff6872b7 extends {
@@ -5702,6 +5736,13 @@ declare global {
5702
5736
  };
5703
5737
  } : typeof wc6f1fc2596ddb411abf1741ed422947e3;
5704
5738
  };
5739
+ "detail": typeof wcfb9aa542fd414c5f8468aa0ad67d11f7 extends {
5740
+ propsDefinition: infer TProp;
5741
+ } ? {
5742
+ new (...args: any[]): {
5743
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
5744
+ };
5745
+ } : typeof wcfb9aa542fd414c5f8468aa0ad67d11f7;
5705
5746
  "pending": {
5706
5747
  "approval": {
5707
5748
  "journey": typeof wc6f3f70caafc54724b3f8405986a21717 extends {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.230-dev",
4
+ "version": "8.0.231-dev",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "author": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.230-dev",
23
+ "@omnia/fx-models": "8.0.231-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",
@@ -1,47 +0,0 @@
1
- declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<Record<string, any>>) => {
2
- $: import("vue").ComponentInternalInstance;
3
- $data: {};
4
- $props: {};
5
- $attrs: {
6
- [x: string]: unknown;
7
- };
8
- $refs: {
9
- [x: string]: unknown;
10
- };
11
- $slots: Readonly<{
12
- [name: string]: import("vue").Slot<any>;
13
- }>;
14
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
15
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
16
- $emit: (event: string, ...args: any[]) => void;
17
- $el: any;
18
- $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
19
- beforeCreate?: (() => void) | (() => void)[];
20
- created?: (() => void) | (() => void)[];
21
- beforeMount?: (() => void) | (() => void)[];
22
- mounted?: (() => void) | (() => void)[];
23
- beforeUpdate?: (() => void) | (() => void)[];
24
- updated?: (() => void) | (() => void)[];
25
- activated?: (() => void) | (() => void)[];
26
- deactivated?: (() => void) | (() => void)[];
27
- beforeDestroy?: (() => void) | (() => void)[];
28
- beforeUnmount?: (() => void) | (() => void)[];
29
- destroyed?: (() => void) | (() => void)[];
30
- unmounted?: (() => void) | (() => void)[];
31
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
32
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
33
- 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)[];
34
- };
35
- $forceUpdate: () => void;
36
- $nextTick: typeof import("vue").nextTick;
37
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
38
- } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
39
- propsDefinition: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {
40
- "v-slots"?: {
41
- default?: import("vue").Slot;
42
- } & {};
43
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string | number>;
44
- } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
45
- [key: string]: any;
46
- }>;
47
- export default _default;
@@ -1,47 +0,0 @@
1
- declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<Record<string, any>>) => {
2
- $: import("vue").ComponentInternalInstance;
3
- $data: {};
4
- $props: {};
5
- $attrs: {
6
- [x: string]: unknown;
7
- };
8
- $refs: {
9
- [x: string]: unknown;
10
- };
11
- $slots: Readonly<{
12
- [name: string]: import("vue").Slot<any>;
13
- }>;
14
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
15
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
16
- $emit: (event: string, ...args: any[]) => void;
17
- $el: any;
18
- $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
19
- beforeCreate?: (() => void) | (() => void)[];
20
- created?: (() => void) | (() => void)[];
21
- beforeMount?: (() => void) | (() => void)[];
22
- mounted?: (() => void) | (() => void)[];
23
- beforeUpdate?: (() => void) | (() => void)[];
24
- updated?: (() => void) | (() => void)[];
25
- activated?: (() => void) | (() => void)[];
26
- deactivated?: (() => void) | (() => void)[];
27
- beforeDestroy?: (() => void) | (() => void)[];
28
- beforeUnmount?: (() => void) | (() => void)[];
29
- destroyed?: (() => void) | (() => void)[];
30
- unmounted?: (() => void) | (() => void)[];
31
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
32
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
33
- 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)[];
34
- };
35
- $forceUpdate: () => void;
36
- $nextTick: typeof import("vue").nextTick;
37
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
38
- } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
39
- propsDefinition: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {
40
- "v-slots"?: {
41
- default?: import("vue").Slot;
42
- } & {};
43
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string | number>;
44
- } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
45
- [key: string]: any;
46
- }>;
47
- export default _default;