@omnia/fx 8.0.37-dev → 8.0.38-dev

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.d.ts +4 -3
  2. package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.js +4 -3
  3. package/internal-do-not-import-from-here/shared/services/ActivityService.d.ts +2 -1
  4. package/internal-do-not-import-from-here/ux/hub/feed/HubFeedChrome.css.d.ts +14 -3
  5. package/internal-do-not-import-from-here/ux/hub/feed/PageHeader.d.ts +46 -0
  6. package/internal-do-not-import-from-here/ux/{usertypelayout/UserTypeLayoutBladeBuilder.d.ts → hub/feed/components/CategoryItem.d.ts} +25 -9
  7. package/internal-do-not-import-from-here/ux/hub/feed/components/FeedItem.d.ts +19 -1
  8. package/internal-do-not-import-from-here/ux/hub/feed/components/Header.d.ts +19 -1
  9. package/internal-do-not-import-from-here/ux/hub/feed/components/MeSenderItem.d.ts +132 -0
  10. package/internal-do-not-import-from-here/ux/hub/feed/components/MeSendersList.d.ts +46 -0
  11. package/internal-do-not-import-from-here/ux/hub/feed/components/SendersList.css.d.ts +1 -1
  12. package/internal-do-not-import-from-here/ux/hub/feed/stores/ActivityFeedStore.d.ts +7 -1
  13. package/internal-do-not-import-from-here/ux/hub/feed/stores/HubFeedChromeStore.d.ts +32 -0
  14. package/internal-do-not-import-from-here/ux/hub/feed/stores/index.d.ts +1 -0
  15. package/internal-do-not-import-from-here/ux/hub/feed/tabs/FeedTab.css.d.ts +4 -0
  16. package/internal-do-not-import-from-here/ux/hub/feed/tabs/FeedTab.d.ts +46 -0
  17. package/internal-do-not-import-from-here/ux/hub/feed/tabs/MeTab.d.ts +46 -0
  18. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/DefineMediaPickerProvider.d.ts +1 -0
  19. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/storages/MediaPickerUserIconsStorageProviderContext.d.ts +5 -0
  20. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/storages/index.d.ts +1 -0
  21. package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +10 -10
  22. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +18 -0
  23. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +31 -0
  24. package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaStore.d.ts +315 -0
  25. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/TypographyTypes.d.ts +0 -1
  26. package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +18 -0
  27. package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +2205 -0
  28. package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +315 -0
  29. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.d.ts +10 -2
  30. package/internal-do-not-import-from-here/wctypings.d.ts +0 -7
  31. package/package.json +2 -2
  32. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSectionTab.css.d.ts +0 -4
@@ -6,9 +6,10 @@ export declare enum IdentityActivityStatus {
6
6
  completed = 2
7
7
  }
8
8
  export declare enum IdentityActivityCategory {
9
- new = 0,
10
- read = 1,
11
- completed = 2
9
+ none = 0,
10
+ focused = 1,
11
+ followUp = 2,
12
+ later = 3
12
13
  }
13
14
  export interface IdentityActivityBase {
14
15
  activityId: ActivityId;
@@ -9,9 +9,10 @@ var IdentityActivityStatus;
9
9
  })(IdentityActivityStatus = exports.IdentityActivityStatus || (exports.IdentityActivityStatus = {}));
10
10
  var IdentityActivityCategory;
11
11
  (function (IdentityActivityCategory) {
12
- IdentityActivityCategory[IdentityActivityCategory["new"] = 0] = "new";
13
- IdentityActivityCategory[IdentityActivityCategory["read"] = 1] = "read";
14
- IdentityActivityCategory[IdentityActivityCategory["completed"] = 2] = "completed";
12
+ IdentityActivityCategory[IdentityActivityCategory["none"] = 0] = "none";
13
+ IdentityActivityCategory[IdentityActivityCategory["focused"] = 1] = "focused";
14
+ IdentityActivityCategory[IdentityActivityCategory["followUp"] = 2] = "followUp";
15
+ IdentityActivityCategory[IdentityActivityCategory["later"] = 3] = "later";
15
16
  })(IdentityActivityCategory = exports.IdentityActivityCategory || (exports.IdentityActivityCategory = {}));
16
17
  // Usage
17
18
  // const activity1: IdentityActivity<SomeRenderState> = {
@@ -1,4 +1,4 @@
1
- import { ChannelId, ActivityFeed, ActivityId, ActivitySenderId, FeedActivityDefinition, SourceRelatedHubProperty, NotificationTeaser, ActivitySender, FeedQuery, TemporaryFileId } from "../models";
1
+ import { ChannelId, ActivityFeed, ActivityId, ActivitySenderId, FeedActivityDefinition, SourceRelatedHubProperty, NotificationTeaser, ActivitySender, FeedQuery, TemporaryFileId, IdentityActivityBase } from "../models";
2
2
  export declare const activityService: () => {
3
3
  getFeed: (channelId: ChannelId, options?: FeedQuery) => Promise<ActivityFeed>;
4
4
  createActivity: <TRenderState>(channelId: ChannelId, senderId: ActivitySenderId, activityDefinition: FeedActivityDefinition<TRenderState>, targeting: Array<Array<SourceRelatedHubProperty>>, notification: NotificationTeaser, expires?: Date, activityIdPlaceHolder?: TemporaryFileId) => Promise<void>;
@@ -19,4 +19,5 @@ export declare const activityService: () => {
19
19
  takeOwnership: (tempFilesId: TemporaryFileId, subPath: string[]) => Promise<void>;
20
20
  upload: (uniqueGuid: TemporaryFileId, files: File[]) => Promise<TemporaryFileId>;
21
21
  };
22
+ updateIdentityActivity: (channelId: ChannelId, identityActivity: IdentityActivityBase) => Promise<boolean>;
22
23
  };
@@ -1,8 +1,19 @@
1
- import { useColorSchemaStore } from "../../theming-v2";
1
+ import { useColorSchemaStore } from "@omnia/fx/ux";
2
2
  export declare const HubFeedChromeStyles: {
3
3
  fakeHeader: (colors: ReturnType<typeof useColorSchemaStore>) => string;
4
4
  tabStyling: (backgroundColor: string) => string;
5
5
  closeIcon: string;
6
- sendersDrawer: string;
7
- showSendersDrawer: string;
6
+ fakeNavigation: {
7
+ buttonHeader: string;
8
+ container: string;
9
+ menuItems: string;
10
+ menuOpen: string;
11
+ line: (color: string) => string;
12
+ line1: string;
13
+ line1Open: string;
14
+ line2: string;
15
+ line2Open: string;
16
+ line3: string;
17
+ line3Open: string;
18
+ };
8
19
  };
@@ -0,0 +1,46 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, never>;
6
+ $attrs: {
7
+ [x: string]: unknown;
8
+ };
9
+ $refs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $slots: Readonly<{
13
+ [name: string]: import("vue").Slot<any>;
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;
@@ -1,12 +1,16 @@
1
- import { GuidValue } from "@omnia/fx-models";
1
+ import { IdentityActivityCategory } from "@omnia/fx-models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{}> & Omit<{
7
- readonly userTypeId?: GuidValue;
7
+ readonly category?: IdentityActivityCategory;
8
8
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
9
- userTypeId: import("vue").Prop<GuidValue, GuidValue>;
9
+ category: {
10
+ type: import("vue").PropType<IdentityActivityCategory>;
11
+ } & {
12
+ type: import("vue").PropType<IdentityActivityCategory>;
13
+ };
10
14
  }>>, never>;
11
15
  $attrs: {
12
16
  [x: string]: unknown;
@@ -22,8 +26,12 @@ declare const _default: {
22
26
  $emit: (event: string, ...args: any[]) => void;
23
27
  $el: any;
24
28
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
25
- userTypeId: import("vue").Prop<GuidValue, GuidValue>;
26
- }>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
29
+ category: {
30
+ type: import("vue").PropType<IdentityActivityCategory>;
31
+ } & {
32
+ type: import("vue").PropType<IdentityActivityCategory>;
33
+ };
34
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
27
35
  beforeCreate?: (() => void) | (() => void)[];
28
36
  created?: (() => void) | (() => void)[];
29
37
  beforeMount?: (() => void) | (() => void)[];
@@ -44,16 +52,24 @@ declare const _default: {
44
52
  $nextTick: typeof import("vue").nextTick;
45
53
  $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;
46
54
  } & Readonly<import("vue").ExtractPropTypes<{
47
- userTypeId: import("vue").Prop<GuidValue, GuidValue>;
55
+ category: {
56
+ type: import("vue").PropType<IdentityActivityCategory>;
57
+ } & {
58
+ type: import("vue").PropType<IdentityActivityCategory>;
59
+ };
48
60
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
49
61
  __isFragment?: never;
50
62
  __isTeleport?: never;
51
63
  __isSuspense?: never;
52
64
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
53
- userTypeId: import("vue").Prop<GuidValue, GuidValue>;
54
- }>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
65
+ category: {
66
+ type: import("vue").PropType<IdentityActivityCategory>;
67
+ } & {
68
+ type: import("vue").PropType<IdentityActivityCategory>;
69
+ };
70
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
55
71
  propsDefinition: Omit<Readonly<{} & {
56
- userTypeId?: GuidValue;
72
+ category?: IdentityActivityCategory;
57
73
  }>, never>;
58
74
  };
59
75
  export default _default;
@@ -1,11 +1,16 @@
1
- import { IdentityActivity } from "@omnia/fx-models";
1
+ import { ChannelId, IdentityActivity } from "@omnia/fx-models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{}> & Omit<{
7
+ readonly channelId: ChannelId;
7
8
  readonly identityActivity: IdentityActivity<object, object>;
8
9
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
10
+ channelId: {
11
+ type: import("vue").PropType<ChannelId>;
12
+ required: true;
13
+ };
9
14
  identityActivity: {
10
15
  type: import("vue").PropType<IdentityActivity<object, object>>;
11
16
  required: true;
@@ -25,6 +30,10 @@ declare const _default: {
25
30
  $emit: (event: string, ...args: any[]) => void;
26
31
  $el: any;
27
32
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
33
+ channelId: {
34
+ type: import("vue").PropType<ChannelId>;
35
+ required: true;
36
+ };
28
37
  identityActivity: {
29
38
  type: import("vue").PropType<IdentityActivity<object, object>>;
30
39
  required: true;
@@ -50,6 +59,10 @@ declare const _default: {
50
59
  $nextTick: typeof import("vue").nextTick;
51
60
  $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;
52
61
  } & Readonly<import("vue").ExtractPropTypes<{
62
+ channelId: {
63
+ type: import("vue").PropType<ChannelId>;
64
+ required: true;
65
+ };
53
66
  identityActivity: {
54
67
  type: import("vue").PropType<IdentityActivity<object, object>>;
55
68
  required: true;
@@ -59,12 +72,17 @@ declare const _default: {
59
72
  __isTeleport?: never;
60
73
  __isSuspense?: never;
61
74
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
75
+ channelId: {
76
+ type: import("vue").PropType<ChannelId>;
77
+ required: true;
78
+ };
62
79
  identityActivity: {
63
80
  type: import("vue").PropType<IdentityActivity<object, object>>;
64
81
  required: true;
65
82
  };
66
83
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
67
84
  propsDefinition: Omit<Readonly<{
85
+ channelId: ChannelId;
68
86
  identityActivity: IdentityActivity<object, object>;
69
87
  } & {}>, never>;
70
88
  };
@@ -1,11 +1,16 @@
1
- import { IdentityActivity } from "@omnia/fx-models";
1
+ import { ChannelId, IdentityActivity } from "@omnia/fx-models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{}> & Omit<{
7
+ readonly channelId: ChannelId;
7
8
  readonly identityActivity: IdentityActivity<object, object>;
8
9
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
10
+ channelId: {
11
+ type: import("vue").PropType<ChannelId>;
12
+ required: true;
13
+ };
9
14
  identityActivity: {
10
15
  type: import("vue").PropType<IdentityActivity<object, object>>;
11
16
  required: true;
@@ -25,6 +30,10 @@ declare const _default: {
25
30
  $emit: (event: string, ...args: any[]) => void;
26
31
  $el: any;
27
32
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
33
+ channelId: {
34
+ type: import("vue").PropType<ChannelId>;
35
+ required: true;
36
+ };
28
37
  identityActivity: {
29
38
  type: import("vue").PropType<IdentityActivity<object, object>>;
30
39
  required: true;
@@ -50,6 +59,10 @@ declare const _default: {
50
59
  $nextTick: typeof import("vue").nextTick;
51
60
  $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;
52
61
  } & Readonly<import("vue").ExtractPropTypes<{
62
+ channelId: {
63
+ type: import("vue").PropType<ChannelId>;
64
+ required: true;
65
+ };
53
66
  identityActivity: {
54
67
  type: import("vue").PropType<IdentityActivity<object, object>>;
55
68
  required: true;
@@ -59,12 +72,17 @@ declare const _default: {
59
72
  __isTeleport?: never;
60
73
  __isSuspense?: never;
61
74
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
75
+ channelId: {
76
+ type: import("vue").PropType<ChannelId>;
77
+ required: true;
78
+ };
62
79
  identityActivity: {
63
80
  type: import("vue").PropType<IdentityActivity<object, object>>;
64
81
  required: true;
65
82
  };
66
83
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
67
84
  propsDefinition: Omit<Readonly<{
85
+ channelId: ChannelId;
68
86
  identityActivity: IdentityActivity<object, object>;
69
87
  } & {}>, never>;
70
88
  };
@@ -0,0 +1,132 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<{
6
+ readonly title?: string;
7
+ readonly "v-slots"?: {
8
+ default?: import("../../../DefineVueTypings").Slot<any[]>;
9
+ } & {
10
+ avatar?: () => JSX.Element;
11
+ };
12
+ readonly notificationCount?: number;
13
+ readonly "notification-count"?: number;
14
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
15
+ "v-slots": import("vue").Prop<{
16
+ default?: import("../../../DefineVueTypings").Slot<any[]>;
17
+ } & {
18
+ avatar?: () => JSX.Element;
19
+ }>;
20
+ "notification-count": {
21
+ type: import("vue").PropType<number>;
22
+ };
23
+ notificationCount: {
24
+ type: import("vue").PropType<number>;
25
+ };
26
+ title: {
27
+ type: import("vue").PropType<string>;
28
+ } & {
29
+ type: import("vue").PropType<string>;
30
+ };
31
+ }>>, never>;
32
+ $attrs: {
33
+ [x: string]: unknown;
34
+ };
35
+ $refs: {
36
+ [x: string]: unknown;
37
+ };
38
+ $slots: Readonly<{
39
+ [name: string]: import("vue").Slot<any>;
40
+ }>;
41
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
42
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
43
+ $emit: (event: string, ...args: any[]) => void;
44
+ $el: any;
45
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
46
+ "v-slots": import("vue").Prop<{
47
+ default?: import("../../../DefineVueTypings").Slot<any[]>;
48
+ } & {
49
+ avatar?: () => JSX.Element;
50
+ }>;
51
+ "notification-count": {
52
+ type: import("vue").PropType<number>;
53
+ };
54
+ notificationCount: {
55
+ type: import("vue").PropType<number>;
56
+ };
57
+ title: {
58
+ type: import("vue").PropType<string>;
59
+ } & {
60
+ type: import("vue").PropType<string>;
61
+ };
62
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
63
+ beforeCreate?: (() => void) | (() => void)[];
64
+ created?: (() => void) | (() => void)[];
65
+ beforeMount?: (() => void) | (() => void)[];
66
+ mounted?: (() => void) | (() => void)[];
67
+ beforeUpdate?: (() => void) | (() => void)[];
68
+ updated?: (() => void) | (() => void)[];
69
+ activated?: (() => void) | (() => void)[];
70
+ deactivated?: (() => void) | (() => void)[];
71
+ beforeDestroy?: (() => void) | (() => void)[];
72
+ beforeUnmount?: (() => void) | (() => void)[];
73
+ destroyed?: (() => void) | (() => void)[];
74
+ unmounted?: (() => void) | (() => void)[];
75
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
76
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
77
+ 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)[];
78
+ };
79
+ $forceUpdate: () => void;
80
+ $nextTick: typeof import("vue").nextTick;
81
+ $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;
82
+ } & Readonly<import("vue").ExtractPropTypes<{
83
+ "v-slots": import("vue").Prop<{
84
+ default?: import("../../../DefineVueTypings").Slot<any[]>;
85
+ } & {
86
+ avatar?: () => JSX.Element;
87
+ }>;
88
+ "notification-count": {
89
+ type: import("vue").PropType<number>;
90
+ };
91
+ notificationCount: {
92
+ type: import("vue").PropType<number>;
93
+ };
94
+ title: {
95
+ type: import("vue").PropType<string>;
96
+ } & {
97
+ type: import("vue").PropType<string>;
98
+ };
99
+ }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
100
+ __isFragment?: never;
101
+ __isTeleport?: never;
102
+ __isSuspense?: never;
103
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
104
+ "v-slots": import("vue").Prop<{
105
+ default?: import("../../../DefineVueTypings").Slot<any[]>;
106
+ } & {
107
+ avatar?: () => JSX.Element;
108
+ }>;
109
+ "notification-count": {
110
+ type: import("vue").PropType<number>;
111
+ };
112
+ notificationCount: {
113
+ type: import("vue").PropType<number>;
114
+ };
115
+ title: {
116
+ type: import("vue").PropType<string>;
117
+ } & {
118
+ type: import("vue").PropType<string>;
119
+ };
120
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
121
+ propsDefinition: Omit<Readonly<{} & {
122
+ title?: string;
123
+ "v-slots"?: {
124
+ default?: import("../../../DefineVueTypings").Slot<any[]>;
125
+ } & {
126
+ avatar?: () => JSX.Element;
127
+ };
128
+ notificationCount?: number;
129
+ "notification-count"?: number;
130
+ }>, never>;
131
+ };
132
+ export default _default;
@@ -0,0 +1,46 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, never>;
6
+ $attrs: {
7
+ [x: string]: unknown;
8
+ };
9
+ $refs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $slots: Readonly<{
13
+ [name: string]: import("vue").Slot<any>;
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;
@@ -1,7 +1,7 @@
1
1
  import { useColorSchemaStore } from "internal/fx/ux/theming-v2";
2
2
  export declare const SendersListStyles: {
3
3
  wrapper: string;
4
- tagWrapper: (colors: ReturnType<typeof useColorSchemaStore>) => string;
4
+ tagWrapper: (colors: ReturnType<typeof useColorSchemaStore>, selected?: any) => string;
5
5
  filterField: string;
6
6
  notificationWrapper: string;
7
7
  };
@@ -1,4 +1,4 @@
1
- import { Activity, ActivityId, ActivityRenderer, ActivityRendererId, ActivitySender, ActivitySenderId, ChannelId, FeedActivityDefinition, Guid, IdentityActivity, NewActivitiesBySender, NotificationTeaser, RealtimeChannel, RealtimeData, SourceRelatedHubProperty, TemporaryFileId, FeedQuery } from "@omnia/fx-models";
1
+ import { Activity, ActivityId, ActivityRenderer, ActivityRendererId, ActivitySender, ActivitySenderId, ChannelId, FeedActivityDefinition, Guid, IdentityActivity, NewActivitiesBySender, NotificationTeaser, RealtimeChannel, RealtimeData, SourceRelatedHubProperty, TemporaryFileId, FeedQuery, IdentityActivityBase, IdentityActivityCategory } from "@omnia/fx-models";
2
2
  export declare const useActivityFeedStore: () => {
3
3
  state: {
4
4
  selectedActivity: Activity<object>;
@@ -9,6 +9,7 @@ export declare const useActivityFeedStore: () => {
9
9
  [key: ActivitySenderId]: IdentityActivity<object, object>[];
10
10
  };
11
11
  senderFilter: ActivitySender;
12
+ categoryFilter: IdentityActivityCategory;
12
13
  renderers: {
13
14
  [key: ActivityRendererId]: ActivityRenderer;
14
15
  };
@@ -34,6 +35,7 @@ export declare const useActivityFeedStore: () => {
34
35
  [key: ActivitySenderId]: IdentityActivity<object, object>[];
35
36
  }>;
36
37
  onMutatedSenderFilter: import("@omnia/fx").MessageBusExposeOnlySubscription<ActivitySender>;
38
+ onMutatedCategoryFilter: import("@omnia/fx").MessageBusExposeOnlySubscription<IdentityActivityCategory>;
37
39
  onMutatedRenderers: import("@omnia/fx").MessageBusExposeOnlySubscription<{
38
40
  [key: ActivityRendererId]: ActivityRenderer;
39
41
  }>;
@@ -57,6 +59,7 @@ export declare const useActivityFeedStore: () => {
57
59
  enableChannel: (channelId: ChannelId) => Promise<void>;
58
60
  loadActivities: (channelId: ChannelId, options?: FeedQuery) => Promise<boolean>;
59
61
  createActivity: <TRenderState>(channelId: ChannelId, senderId: ActivitySenderId, activityDefinition: FeedActivityDefinition<TRenderState>, targeting: Array<Array<SourceRelatedHubProperty>>, notification: NotificationTeaser, expires?: Date, activityIdPlaceHolder?: TemporaryFileId) => Promise<void>;
62
+ updateIdentityActivity: (channelId: ChannelId, identityActivity: IdentityActivityBase) => Promise<void>;
60
63
  }) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
61
64
  onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
62
65
  toggleSenderFilter: (channelId: ChannelId, sender: ActivitySender) => Promise<void>;
@@ -64,6 +67,7 @@ export declare const useActivityFeedStore: () => {
64
67
  enableChannel: (channelId: ChannelId) => Promise<void>;
65
68
  loadActivities: (channelId: ChannelId, options?: FeedQuery) => Promise<boolean>;
66
69
  createActivity: <TRenderState>(channelId: ChannelId, senderId: ActivitySenderId, activityDefinition: FeedActivityDefinition<TRenderState>, targeting: Array<Array<SourceRelatedHubProperty>>, notification: NotificationTeaser, expires?: Date, activityIdPlaceHolder?: TemporaryFileId) => Promise<void>;
70
+ updateIdentityActivity: (channelId: ChannelId, identityActivity: IdentityActivityBase) => Promise<void>;
67
71
  }) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
68
72
  onFailure<T_2 extends (...args: any) => any>(action: (actions: {
69
73
  toggleSenderFilter: (channelId: ChannelId, sender: ActivitySender) => Promise<void>;
@@ -71,6 +75,7 @@ export declare const useActivityFeedStore: () => {
71
75
  enableChannel: (channelId: ChannelId) => Promise<void>;
72
76
  loadActivities: (channelId: ChannelId, options?: FeedQuery) => Promise<boolean>;
73
77
  createActivity: <TRenderState>(channelId: ChannelId, senderId: ActivitySenderId, activityDefinition: FeedActivityDefinition<TRenderState>, targeting: Array<Array<SourceRelatedHubProperty>>, notification: NotificationTeaser, expires?: Date, activityIdPlaceHolder?: TemporaryFileId) => Promise<void>;
78
+ updateIdentityActivity: (channelId: ChannelId, identityActivity: IdentityActivityBase) => Promise<void>;
74
79
  }) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
75
80
  } & {
76
81
  toggleSenderFilter: (channelId: ChannelId, sender: ActivitySender) => Promise<void>;
@@ -78,6 +83,7 @@ export declare const useActivityFeedStore: () => {
78
83
  enableChannel: (channelId: ChannelId) => Promise<void>;
79
84
  loadActivities: (channelId: ChannelId, options?: FeedQuery) => Promise<boolean>;
80
85
  createActivity: <TRenderState>(channelId: ChannelId, senderId: ActivitySenderId, activityDefinition: FeedActivityDefinition<TRenderState>, targeting: Array<Array<SourceRelatedHubProperty>>, notification: NotificationTeaser, expires?: Date, activityIdPlaceHolder?: TemporaryFileId) => Promise<void>;
86
+ updateIdentityActivity: (channelId: ChannelId, identityActivity: IdentityActivityBase) => Promise<void>;
81
87
  };
82
88
  get: {
83
89
  /**
@@ -0,0 +1,32 @@
1
+ export declare const useHubFeedChromeStore: () => {
2
+ state: {
3
+ visible: boolean;
4
+ showSendersDrawer: boolean;
5
+ showMeDrawer: boolean;
6
+ activeTab: number;
7
+ showMainMenu: boolean;
8
+ meItemFilter: string;
9
+ };
10
+ events: {
11
+ onMutatedVisible: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
12
+ onMutatedShowSendersDrawer: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
13
+ onMutatedShowMeDrawer: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
14
+ onMutatedActiveTab: import("@omnia/fx").MessageBusExposeOnlySubscription<number>;
15
+ onMutatedShowMainMenu: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
16
+ onMutatedMeItemFilter: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
17
+ } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
18
+ actions: {
19
+ onDispatching<T extends (...args: any) => any>(action: (actions: {
20
+ setMeFilter: (filter: string) => void;
21
+ }) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
22
+ onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
23
+ setMeFilter: (filter: string) => void;
24
+ }) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
25
+ onFailure<T_2 extends (...args: any) => any>(action: (actions: {
26
+ setMeFilter: (filter: string) => void;
27
+ }) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
28
+ } & {
29
+ setMeFilter: (filter: string) => void;
30
+ };
31
+ get: {};
32
+ };
@@ -1,2 +1,3 @@
1
1
  export * from "./ActivityFeedStore";
2
2
  export * from "./HubFeedChannel";
3
+ export * from "./HubFeedChromeStore";
@@ -0,0 +1,4 @@
1
+ export declare const FeedTabStyles: {
2
+ sendersDrawer: string;
3
+ showSendersDrawer: string;
4
+ };
@@ -0,0 +1,46 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, never>;
6
+ $attrs: {
7
+ [x: string]: unknown;
8
+ };
9
+ $refs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $slots: Readonly<{
13
+ [name: string]: import("vue").Slot<any>;
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;