@omnia/fx 8.0.23-dev → 8.0.24-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 (34) hide show
  1. package/internal-do-not-import-from-here/core/services/ServiceManifestProviderInternal.d.ts +3 -2
  2. package/internal-do-not-import-from-here/shared/models/hub/ExternalIdentityId.d.ts +2 -0
  3. package/internal-do-not-import-from-here/shared/models/hub/ExternalIdentityId.js +2 -0
  4. package/internal-do-not-import-from-here/shared/models/hub/index.d.ts +2 -0
  5. package/internal-do-not-import-from-here/shared/models/hub/index.js +2 -0
  6. package/internal-do-not-import-from-here/shared/models/hub/social/HubComment.d.ts +10 -0
  7. package/internal-do-not-import-from-here/shared/models/hub/social/HubComment.js +2 -0
  8. package/internal-do-not-import-from-here/shared/models/hub/social/HubReaction.d.ts +5 -0
  9. package/internal-do-not-import-from-here/shared/models/hub/social/HubReaction.js +2 -0
  10. package/internal-do-not-import-from-here/shared/models/hub/social/index.d.ts +2 -0
  11. package/internal-do-not-import-from-here/shared/models/hub/social/index.js +5 -0
  12. package/internal-do-not-import-from-here/shared/services/ActivityService.d.ts +9 -0
  13. package/internal-do-not-import-from-here/shared/services/DefineService.d.ts +5 -0
  14. package/internal-do-not-import-from-here/shared/services/SocialSourceService.d.ts +10 -0
  15. package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +4 -4
  16. package/internal-do-not-import-from-here/ux/Exposes.d.ts +0 -1
  17. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +16 -2
  18. package/internal-do-not-import-from-here/ux/hub/feed/components/FeedItem.d.ts +110 -0
  19. package/internal-do-not-import-from-here/ux/hub/feed/components/Social.d.ts +110 -0
  20. package/internal-do-not-import-from-here/ux/hub/feed/components/StoryComponent.d.ts +4 -9
  21. package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +55 -4
  22. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +23 -20
  23. package/internal-do-not-import-from-here/ux/oxide/hostprovider/HostProvider.d.ts +8 -8
  24. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +5 -0
  25. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.css.d.ts +1 -0
  26. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +16 -5
  27. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.css.d.ts +1 -0
  28. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +22 -5
  29. package/internal-do-not-import-from-here/ux/timeperiodpicker/ITimePeriodPicker.d.ts +0 -10
  30. package/internal-do-not-import-from-here/ux/timeperiodpicker/TimePeriodPicker.d.ts +2 -2
  31. package/internal-do-not-import-from-here/ux/timeperiodpicker/index.d.ts +0 -1
  32. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/store/ContentEditorStore.d.ts +27 -1
  33. package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.d.ts +16 -2
  34. package/package.json +2 -2
@@ -1,10 +1,11 @@
1
1
  import { OmniaManifests, ComponentBundleManifest } from "../../models";
2
2
  export declare class ServiceManifestProviderInternal {
3
- private static _omniaManifests;
4
- private static _wcManifests;
3
+ private static omniaManifests;
4
+ private static wcManifests;
5
5
  static init(): Promise<void>;
6
6
  static getAllOmniaManifests(): OmniaManifests[];
7
7
  static getAllWebComponentsManifests(): {
8
8
  [manifestId: string]: ComponentBundleManifest;
9
9
  };
10
+ private static mergeManifests;
10
11
  }
@@ -0,0 +1,2 @@
1
+ import { StronglyTypedId } from "../StronglyTypedId";
2
+ export type ExternalIdentityId = StronglyTypedId<string, "ExternalIdentityId">;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1 +1,3 @@
1
1
  export * from "./activities";
2
+ export * from "./social";
3
+ export * from "./ExternalIdentityId";
@@ -2,3 +2,5 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./activities"), exports);
5
+ tslib_1.__exportStar(require("./social"), exports);
6
+ tslib_1.__exportStar(require("./ExternalIdentityId"), exports);
@@ -0,0 +1,10 @@
1
+ import { ExternalIdentityId } from "../ExternalIdentityId";
2
+ import { HubReaction } from "./HubReaction";
3
+ export interface HubComment {
4
+ createdBy: ExternalIdentityId;
5
+ id: number;
6
+ inReplyToId: number | null;
7
+ rendererJson: string;
8
+ mentions: ExternalIdentityId[];
9
+ reactions: HubReaction[];
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ import { ExternalIdentityId } from "../ExternalIdentityId";
2
+ export interface HubReaction {
3
+ createdBy: ExternalIdentityId;
4
+ uniqueTypeName: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ export * from "./HubComment";
2
+ export * from "./HubReaction";
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./HubComment"), exports);
5
+ tslib_1.__exportStar(require("./HubReaction"), exports);
@@ -2,6 +2,15 @@ import { ChannelId, ActivityFeed, ActivityId, ActivitySenderId, FeedActivityDefi
2
2
  export declare const useActivityService: () => {
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) => Promise<void>;
5
+ getSocial: (activityId: ActivityId) => {
6
+ addCommentAsync: (rendererJson: string, mentions: import("../models").ExternalIdentityId[], inReplyToCommentId?: number) => Promise<import("../models").HubComment>;
7
+ getCommentsAsync: (offSet?: import("../models").HubComment, limt?: number) => Promise<import("../models").HubComment[]>;
8
+ updateCommentAsync: (comment: import("../models").HubComment) => Promise<import("../models").HubComment>;
9
+ deleteCommentAsync: (toDelete: import("../models").HubComment) => Promise<number[]>;
10
+ addReactionAsync: (reactionType: string) => Promise<import("../models").HubReaction[]>;
11
+ deleteReactionAsync: (toDelete: import("../models").HubReaction) => Promise<import("../models").HubReaction[]>;
12
+ getReactionsAsync: () => Promise<import("../models").HubReaction[]>;
13
+ };
5
14
  };
6
15
  export interface FeedQuery {
7
16
  newerThenId?: ActivityId;
@@ -4,3 +4,8 @@ export declare function defineService<TActions extends {
4
4
  }>(setup: (ctx: {
5
5
  http: typeof http;
6
6
  }) => TActions): () => TActions;
7
+ export declare function defineService<TActions extends {
8
+ [key: string]: Function;
9
+ }, TArgs extends any[]>(setup: (ctx: {
10
+ http: typeof http;
11
+ }, ...args: TArgs) => TActions): (...args: TArgs) => TActions;
@@ -0,0 +1,10 @@
1
+ import { ExternalIdentityId, HubComment, HubReaction } from "../models";
2
+ export declare const socialSourceService: (sourceId: string) => {
3
+ addCommentAsync: (rendererJson: string, mentions: ExternalIdentityId[], inReplyToCommentId?: number) => Promise<HubComment>;
4
+ getCommentsAsync: (offSet?: HubComment | null, limt?: number) => Promise<HubComment[]>;
5
+ updateCommentAsync: (comment: HubComment) => Promise<HubComment>;
6
+ deleteCommentAsync: (toDelete: HubComment) => Promise<number[]>;
7
+ addReactionAsync: (reactionType: string) => Promise<HubReaction[]>;
8
+ deleteReactionAsync: (toDelete: HubReaction) => Promise<HubReaction[]>;
9
+ getReactionsAsync: () => Promise<HubReaction[]>;
10
+ };
@@ -2,7 +2,7 @@ declare const HostTypeDefinitions: readonly ["admin", "editor", "docs"];
2
2
  export type HostTypes = typeof HostTypeDefinitions[number];
3
3
  declare const ComponentHostTypeDefinitions: readonly ["dialog", "drawer", "expansion-panel", "blade", "app", "table", "appbar", "toolbar", "tab", "tab-vertical", "panel", "omfx", "menu"];
4
4
  export type ComponentHostTypes = typeof ComponentHostTypeDefinitions[number];
5
- declare const ComponentVariantDefinitions: readonly ["footer", "content", "navigation", "header", "settings", "info-section", "default", "section", "options"];
5
+ declare const ComponentVariantDefinitions: readonly ["footer", "content", "navigation", "header", "settings", "info-section", "default", "section", "options", "toolbar"];
6
6
  export type ComponentVariants = typeof ComponentVariantDefinitions[number];
7
7
  export interface NewHostSettings {
8
8
  host?: HostTypes;
@@ -15,14 +15,14 @@ export declare const useCompontentHostStore: () => {
15
15
  state: {
16
16
  host: "admin" | "editor" | "docs";
17
17
  componentHost: "dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx";
18
- componentVariant: "section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "settings" | "info-section";
18
+ componentVariant: "section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section";
19
19
  appliedComponents: string[];
20
20
  force: boolean;
21
21
  };
22
22
  events: {
23
23
  onMutatedHost: import("internal/fx/core").MessageBusExposeOnlySubscription<"admin" | "editor" | "docs">;
24
24
  onMutatedComponentHost: import("internal/fx/core").MessageBusExposeOnlySubscription<"dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx">;
25
- onMutatedComponentVariant: import("internal/fx/core").MessageBusExposeOnlySubscription<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "settings" | "info-section">;
25
+ onMutatedComponentVariant: import("internal/fx/core").MessageBusExposeOnlySubscription<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section">;
26
26
  onMutatedAppliedComponents: import("internal/fx/core").MessageBusExposeOnlySubscription<string[]>;
27
27
  onMutatedForce: import("internal/fx/core").MessageBusExposeOnlySubscription<boolean>;
28
28
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
@@ -63,7 +63,7 @@ export declare const useCompontentHostStore: () => {
63
63
  canApplyOn: (hostType: ComponentHostTypes | HostTypes, variant?: any) => boolean;
64
64
  readonly host: "admin" | "editor" | "docs";
65
65
  readonly componentHost: "dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx";
66
- readonly componentVariant: "section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "settings" | "info-section";
66
+ readonly componentVariant: "section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section";
67
67
  readonly force: boolean;
68
68
  appliedComponents(host: string): boolean;
69
69
  };
@@ -30,7 +30,6 @@ export * from "./wizard";
30
30
  export * from "./multilingualinput";
31
31
  export * from "./texttranslator";
32
32
  export * from "./errormessage";
33
- export * from "./timeperiodpicker";
34
33
  export * from "./theming";
35
34
  export * from "./theming-v2";
36
35
  export * from "./messaging";
@@ -121,6 +121,8 @@ declare const _default: {
121
121
  } & {
122
122
  activator?: () => VNodeChild;
123
123
  };
124
+ "onColor:enter"?: (colorSchemaType: ColorSchemaTypes) => any;
125
+ "onColor:leave"?: (colorSchemaType: ColorSchemaTypes) => any;
124
126
  };
125
127
  $attrs: {
126
128
  [x: string]: unknown;
@@ -133,7 +135,7 @@ declare const _default: {
133
135
  }>;
134
136
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
135
137
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
136
- $emit: (event: "update:modelValue", colorSchemaType: ColorSchemaTypes) => void;
138
+ $emit: ((event: "update:modelValue", colorSchemaType: ColorSchemaTypes) => void) & ((event: "color:enter", colorSchemaType: ColorSchemaTypes) => void) & ((event: "color:leave", colorSchemaType: ColorSchemaTypes) => void);
137
139
  $el: any;
138
140
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
139
141
  "v-slots": import("vue").Prop<{
@@ -224,8 +226,12 @@ declare const _default: {
224
226
  };
225
227
  }>> & {
226
228
  "onUpdate:modelValue"?: (colorSchemaType: ColorSchemaTypes) => any;
229
+ "onColor:enter"?: (colorSchemaType: ColorSchemaTypes) => any;
230
+ "onColor:leave"?: (colorSchemaType: ColorSchemaTypes) => any;
227
231
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
228
232
  "update:modelValue": (colorSchemaType: ColorSchemaTypes) => any;
233
+ "color:enter": (colorSchemaType: ColorSchemaTypes) => any;
234
+ "color:leave": (colorSchemaType: ColorSchemaTypes) => any;
229
235
  }, string, {}, {}, string, {}> & {
230
236
  beforeCreate?: (() => void) | (() => void)[];
231
237
  created?: (() => void) | (() => void)[];
@@ -335,6 +341,8 @@ declare const _default: {
335
341
  };
336
342
  }>> & {
337
343
  "onUpdate:modelValue"?: (colorSchemaType: ColorSchemaTypes) => any;
344
+ "onColor:enter"?: (colorSchemaType: ColorSchemaTypes) => any;
345
+ "onColor:leave"?: (colorSchemaType: ColorSchemaTypes) => any;
338
346
  } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
339
347
  __isFragment?: never;
340
348
  __isTeleport?: never;
@@ -428,8 +436,12 @@ declare const _default: {
428
436
  };
429
437
  }>> & {
430
438
  "onUpdate:modelValue"?: (colorSchemaType: ColorSchemaTypes) => any;
439
+ "onColor:enter"?: (colorSchemaType: ColorSchemaTypes) => any;
440
+ "onColor:leave"?: (colorSchemaType: ColorSchemaTypes) => any;
431
441
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
432
442
  "update:modelValue": (colorSchemaType: ColorSchemaTypes) => any;
443
+ "color:enter": (colorSchemaType: ColorSchemaTypes) => any;
444
+ "color:leave": (colorSchemaType: ColorSchemaTypes) => any;
433
445
  }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
434
446
  propsDefinition: Omit<Readonly<{} & {
435
447
  label?: string;
@@ -505,8 +517,10 @@ declare const _default: {
505
517
  } & {
506
518
  activator?: () => VNodeChild;
507
519
  };
508
- }>, "onUpdate:modelValue"> & {
520
+ }>, "onUpdate:modelValue" | "onColor:enter" | "onColor:leave"> & {
509
521
  "onUpdate:modelValue"?: (colorSchemaType: ColorSchemaTypes) => any;
522
+ "onColor:enter"?: (colorSchemaType: ColorSchemaTypes) => any;
523
+ "onColor:leave"?: (colorSchemaType: ColorSchemaTypes) => any;
510
524
  };
511
525
  };
512
526
  export default _default;
@@ -0,0 +1,110 @@
1
+ import { Activity } from "@omnia/fx-models";
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: {
7
+ style?: unknown;
8
+ class?: unknown;
9
+ key?: string | number | symbol;
10
+ ref?: import("vue").VNodeRef;
11
+ ref_for?: boolean;
12
+ ref_key?: string;
13
+ onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
14
+ [key: string]: any;
15
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
16
+ [key: string]: any;
17
+ }>) => void)[];
18
+ onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
19
+ [key: string]: any;
20
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
21
+ [key: string]: any;
22
+ }>) => void)[];
23
+ onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
24
+ [key: string]: any;
25
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
26
+ [key: string]: any;
27
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
28
+ [key: string]: any;
29
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
30
+ [key: string]: any;
31
+ }>) => void)[];
32
+ onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
33
+ [key: string]: any;
34
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
35
+ [key: string]: any;
36
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
37
+ [key: string]: any;
38
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
39
+ [key: string]: any;
40
+ }>) => void)[];
41
+ onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
42
+ [key: string]: any;
43
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
44
+ [key: string]: any;
45
+ }>) => void)[];
46
+ onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
47
+ [key: string]: any;
48
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
49
+ [key: string]: any;
50
+ }>) => void)[];
51
+ readonly activity: Activity<object>;
52
+ };
53
+ $attrs: {
54
+ [x: string]: unknown;
55
+ };
56
+ $refs: {
57
+ [x: string]: unknown;
58
+ };
59
+ $slots: Readonly<{
60
+ [name: string]: import("vue").Slot<any>;
61
+ }>;
62
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
63
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
64
+ $emit: (event: string, ...args: any[]) => void;
65
+ $el: any;
66
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
67
+ activity: {
68
+ type: import("vue").PropType<Activity<object>>;
69
+ required: true;
70
+ };
71
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
72
+ beforeCreate?: (() => void) | (() => void)[];
73
+ created?: (() => void) | (() => void)[];
74
+ beforeMount?: (() => void) | (() => void)[];
75
+ mounted?: (() => void) | (() => void)[];
76
+ beforeUpdate?: (() => void) | (() => void)[];
77
+ updated?: (() => void) | (() => void)[];
78
+ activated?: (() => void) | (() => void)[];
79
+ deactivated?: (() => void) | (() => void)[];
80
+ beforeDestroy?: (() => void) | (() => void)[];
81
+ beforeUnmount?: (() => void) | (() => void)[];
82
+ destroyed?: (() => void) | (() => void)[];
83
+ unmounted?: (() => void) | (() => void)[];
84
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
85
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
86
+ 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)[];
87
+ };
88
+ $forceUpdate: () => void;
89
+ $nextTick: typeof import("vue").nextTick;
90
+ $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;
91
+ } & Readonly<import("vue").ExtractPropTypes<{
92
+ activity: {
93
+ type: import("vue").PropType<Activity<object>>;
94
+ required: true;
95
+ };
96
+ }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
97
+ __isFragment?: never;
98
+ __isTeleport?: never;
99
+ __isSuspense?: never;
100
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
101
+ activity: {
102
+ type: import("vue").PropType<Activity<object>>;
103
+ required: true;
104
+ };
105
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
106
+ propsDefinition: Omit<Readonly<{
107
+ activity: Activity<object>;
108
+ } & {}>, never>;
109
+ };
110
+ export default _default;
@@ -0,0 +1,110 @@
1
+ import { Activity } from "@omnia/fx-models";
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: {
7
+ style?: unknown;
8
+ class?: unknown;
9
+ key?: string | number | symbol;
10
+ ref?: import("vue").VNodeRef;
11
+ ref_for?: boolean;
12
+ ref_key?: string;
13
+ onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
14
+ [key: string]: any;
15
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
16
+ [key: string]: any;
17
+ }>) => void)[];
18
+ onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
19
+ [key: string]: any;
20
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
21
+ [key: string]: any;
22
+ }>) => void)[];
23
+ onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
24
+ [key: string]: any;
25
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
26
+ [key: string]: any;
27
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
28
+ [key: string]: any;
29
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
30
+ [key: string]: any;
31
+ }>) => void)[];
32
+ onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
33
+ [key: string]: any;
34
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
35
+ [key: string]: any;
36
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
37
+ [key: string]: any;
38
+ }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
39
+ [key: string]: any;
40
+ }>) => void)[];
41
+ onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
42
+ [key: string]: any;
43
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
44
+ [key: string]: any;
45
+ }>) => void)[];
46
+ onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
47
+ [key: string]: any;
48
+ }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
49
+ [key: string]: any;
50
+ }>) => void)[];
51
+ readonly activity: Activity<object>;
52
+ };
53
+ $attrs: {
54
+ [x: string]: unknown;
55
+ };
56
+ $refs: {
57
+ [x: string]: unknown;
58
+ };
59
+ $slots: Readonly<{
60
+ [name: string]: import("vue").Slot<any>;
61
+ }>;
62
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
63
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
64
+ $emit: (event: string, ...args: any[]) => void;
65
+ $el: any;
66
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
67
+ activity: {
68
+ type: import("vue").PropType<Activity<object>>;
69
+ required: true;
70
+ };
71
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
72
+ beforeCreate?: (() => void) | (() => void)[];
73
+ created?: (() => void) | (() => void)[];
74
+ beforeMount?: (() => void) | (() => void)[];
75
+ mounted?: (() => void) | (() => void)[];
76
+ beforeUpdate?: (() => void) | (() => void)[];
77
+ updated?: (() => void) | (() => void)[];
78
+ activated?: (() => void) | (() => void)[];
79
+ deactivated?: (() => void) | (() => void)[];
80
+ beforeDestroy?: (() => void) | (() => void)[];
81
+ beforeUnmount?: (() => void) | (() => void)[];
82
+ destroyed?: (() => void) | (() => void)[];
83
+ unmounted?: (() => void) | (() => void)[];
84
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
85
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
86
+ 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)[];
87
+ };
88
+ $forceUpdate: () => void;
89
+ $nextTick: typeof import("vue").nextTick;
90
+ $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;
91
+ } & Readonly<import("vue").ExtractPropTypes<{
92
+ activity: {
93
+ type: import("vue").PropType<Activity<object>>;
94
+ required: true;
95
+ };
96
+ }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
97
+ __isFragment?: never;
98
+ __isTeleport?: never;
99
+ __isSuspense?: never;
100
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
101
+ activity: {
102
+ type: import("vue").PropType<Activity<object>>;
103
+ required: true;
104
+ };
105
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
106
+ propsDefinition: Omit<Readonly<{
107
+ activity: Activity<object>;
108
+ } & {}>, never>;
109
+ };
110
+ export default _default;
@@ -108,16 +108,11 @@ declare const _default: {
108
108
  } & {}>, never>;
109
109
  };
110
110
  export default _default;
111
- export declare class WcmPagePublishedFeedItem implements FeedActivityDefinition<WcmPagePublishedFeedItemState> {
112
- state: WcmPagePublishedFeedItemState;
111
+ export declare class PersonalStoryFeedItem implements FeedActivityDefinition<PersonalStoryFeedItemState> {
112
+ state: PersonalStoryFeedItemState;
113
113
  renderer: ActivityRenderer | ActivityRendererReference;
114
114
  activityTypeId: ActivityTypeId;
115
- constructor(state: WcmPagePublishedFeedItemState, renderer: ActivityRenderer | ActivityRendererReference);
115
+ constructor(state: PersonalStoryFeedItemState, renderer: ActivityRenderer | ActivityRendererReference);
116
116
  }
117
- export interface WcmPagePublishedFeedItemState extends DynamicState {
118
- content: {
119
- main: {
120
- markdown: string;
121
- };
122
- };
117
+ export interface PersonalStoryFeedItemState extends DynamicState {
123
118
  }
@@ -3,8 +3,13 @@ declare const _default: {
3
3
  $: import("vue").ComponentInternalInstance;
4
4
  $data: {};
5
5
  $props: {
6
+ container?: any;
7
+ blueprint?: any;
8
+ colorSchemaType?: any;
9
+ blueprintType?: any;
10
+ colors?: any;
6
11
  style?: unknown;
7
- class?: unknown;
12
+ class?: String | String[];
8
13
  key?: string | number | symbol;
9
14
  readonly size?: "small" | "default" | "large" | "x-large" | "x-small";
10
15
  readonly color?: string;
@@ -74,7 +79,22 @@ declare const _default: {
74
79
  color: {
75
80
  type: import("vue").PropType<string>;
76
81
  };
77
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
82
+ class: {
83
+ type: import("vue").PropType<String | String[]>;
84
+ required: boolean;
85
+ };
86
+ colorSchemaType?: any;
87
+ container?: any;
88
+ colors?: any;
89
+ blueprintType?: any;
90
+ blueprint?: any;
91
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
92
+ container?: any;
93
+ blueprint?: any;
94
+ colorSchemaType?: any;
95
+ blueprintType?: any;
96
+ colors?: any;
97
+ }, {}, string, {}> & {
78
98
  beforeCreate?: (() => void) | (() => void)[];
79
99
  created?: (() => void) | (() => void)[];
80
100
  beforeMount?: (() => void) | (() => void)[];
@@ -104,6 +124,15 @@ declare const _default: {
104
124
  color: {
105
125
  type: import("vue").PropType<string>;
106
126
  };
127
+ class: {
128
+ type: import("vue").PropType<String | String[]>;
129
+ required: boolean;
130
+ };
131
+ colorSchemaType?: any;
132
+ container?: any;
133
+ colors?: any;
134
+ blueprintType?: any;
135
+ blueprint?: any;
107
136
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
108
137
  __isFragment?: never;
109
138
  __isTeleport?: never;
@@ -118,8 +147,30 @@ declare const _default: {
118
147
  color: {
119
148
  type: import("vue").PropType<string>;
120
149
  };
121
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
122
- propsDefinition: Omit<Readonly<{} & {
150
+ class: {
151
+ type: import("vue").PropType<String | String[]>;
152
+ required: boolean;
153
+ };
154
+ colorSchemaType?: any;
155
+ container?: any;
156
+ colors?: any;
157
+ blueprintType?: any;
158
+ blueprint?: any;
159
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
160
+ container?: any;
161
+ blueprint?: any;
162
+ colorSchemaType?: any;
163
+ blueprintType?: any;
164
+ colors?: any;
165
+ }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
166
+ propsDefinition: Omit<Readonly<{
167
+ container?: any;
168
+ blueprint?: any;
169
+ colorSchemaType?: any;
170
+ blueprintType?: any;
171
+ colors?: any;
172
+ } & {
173
+ class?: String | String[];
123
174
  size?: "small" | "default" | "large" | "x-large" | "x-small";
124
175
  color?: string;
125
176
  gradient?: boolean;
@@ -1,5 +1,5 @@
1
1
  import { DataTableHeader, IDataTableRowRenderer } from "@omnia/fx/ux";
2
- import { VNodeChild, nextTick } from "vue";
2
+ import { VNodeChild } from "vue";
3
3
  declare const _default: {
4
4
  new (...args: any[]): {
5
5
  $: import("vue").ComponentInternalInstance;
@@ -58,14 +58,15 @@ declare const _default: {
58
58
  } & {
59
59
  item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
60
60
  };
61
- readonly variant?: "default" | "list" | "data-table";
61
+ readonly variant?: "default" | "list" | "element" | "data-table";
62
62
  "onClick:navigate"?: (value: any) => any;
63
63
  readonly itemTitle: string | ((item: any) => VNodeChild);
64
64
  readonly itemValue?: string | ((item: any) => string);
65
65
  readonly disabledItem?: string;
66
66
  readonly placeholderClass?: string;
67
- readonly handle?: string;
68
67
  readonly navigable?: boolean;
68
+ "onSort:start"?: () => any;
69
+ "onSort:end"?: () => any;
69
70
  };
70
71
  $attrs: {
71
72
  [x: string]: unknown;
@@ -78,7 +79,7 @@ declare const _default: {
78
79
  }>;
79
80
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
80
81
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
81
- $emit: (event: "click:navigate", value: any) => void;
82
+ $emit: ((event: "click:navigate", value: any) => void) & ((event: "sort:start") => void) & ((event: "sort:end") => void);
82
83
  $el: any;
83
84
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
84
85
  "v-slots": import("vue").Prop<{
@@ -91,16 +92,13 @@ declare const _default: {
91
92
  required: false;
92
93
  };
93
94
  variant: {
94
- type: import("vue").PropType<"default" | "list" | "data-table">;
95
+ type: import("vue").PropType<"default" | "list" | "element" | "data-table">;
95
96
  required: false;
96
97
  };
97
98
  navigable: {
98
99
  type: import("vue").PropType<boolean>;
99
100
  required: false;
100
101
  };
101
- handle: {
102
- type: import("vue").PropType<string>;
103
- };
104
102
  placeholderClass: {
105
103
  type: import("vue").PropType<string>;
106
104
  };
@@ -127,7 +125,11 @@ declare const _default: {
127
125
  };
128
126
  }>> & {
129
127
  "onClick:navigate"?: (value: any) => any;
128
+ "onSort:start"?: () => any;
129
+ "onSort:end"?: () => any;
130
130
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
131
+ "sort:end": () => true;
132
+ "sort:start": () => true;
131
133
  "click:navigate": (value: any) => true;
132
134
  }, string, {}, {}, string, {}> & {
133
135
  beforeCreate?: (() => void) | (() => void)[];
@@ -147,7 +149,7 @@ declare const _default: {
147
149
  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)[];
148
150
  };
149
151
  $forceUpdate: () => void;
150
- $nextTick: typeof nextTick;
152
+ $nextTick: typeof import("vue").nextTick;
151
153
  $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;
152
154
  } & Readonly<import("vue").ExtractPropTypes<{
153
155
  "v-slots": import("vue").Prop<{
@@ -160,16 +162,13 @@ declare const _default: {
160
162
  required: false;
161
163
  };
162
164
  variant: {
163
- type: import("vue").PropType<"default" | "list" | "data-table">;
165
+ type: import("vue").PropType<"default" | "list" | "element" | "data-table">;
164
166
  required: false;
165
167
  };
166
168
  navigable: {
167
169
  type: import("vue").PropType<boolean>;
168
170
  required: false;
169
171
  };
170
- handle: {
171
- type: import("vue").PropType<string>;
172
- };
173
172
  placeholderClass: {
174
173
  type: import("vue").PropType<string>;
175
174
  };
@@ -196,6 +195,8 @@ declare const _default: {
196
195
  };
197
196
  }>> & {
198
197
  "onClick:navigate"?: (value: any) => any;
198
+ "onSort:start"?: () => any;
199
+ "onSort:end"?: () => any;
199
200
  } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
200
201
  __isFragment?: never;
201
202
  __isTeleport?: never;
@@ -211,16 +212,13 @@ declare const _default: {
211
212
  required: false;
212
213
  };
213
214
  variant: {
214
- type: import("vue").PropType<"default" | "list" | "data-table">;
215
+ type: import("vue").PropType<"default" | "list" | "element" | "data-table">;
215
216
  required: false;
216
217
  };
217
218
  navigable: {
218
219
  type: import("vue").PropType<boolean>;
219
220
  required: false;
220
221
  };
221
- handle: {
222
- type: import("vue").PropType<string>;
223
- };
224
222
  placeholderClass: {
225
223
  type: import("vue").PropType<string>;
226
224
  };
@@ -247,7 +245,11 @@ declare const _default: {
247
245
  };
248
246
  }>> & {
249
247
  "onClick:navigate"?: (value: any) => any;
248
+ "onSort:start"?: () => any;
249
+ "onSort:end"?: () => any;
250
250
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
251
+ "sort:end": () => true;
252
+ "sort:start": () => true;
251
253
  "click:navigate": (value: any) => true;
252
254
  }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
253
255
  propsDefinition: Omit<Readonly<{
@@ -262,14 +264,15 @@ declare const _default: {
262
264
  } & {
263
265
  item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
264
266
  };
265
- variant?: "default" | "list" | "data-table";
267
+ variant?: "default" | "list" | "element" | "data-table";
266
268
  itemValue?: string | ((item: any) => string);
267
269
  disabledItem?: string;
268
270
  placeholderClass?: string;
269
- handle?: string;
270
271
  navigable?: boolean;
271
- }>, "onClick:navigate"> & {
272
+ }>, "onClick:navigate" | "onSort:start" | "onSort:end"> & {
272
273
  "onClick:navigate"?: (value: any) => any;
274
+ "onSort:start"?: () => any;
275
+ "onSort:end"?: () => any;
273
276
  };
274
277
  };
275
278
  export default _default;
@@ -48,7 +48,7 @@ declare const _default: {
48
48
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
49
49
  [key: string]: any;
50
50
  }>) => void)[];
51
- readonly variant?: "section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "settings" | "info-section";
51
+ readonly variant?: "section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section";
52
52
  readonly force?: boolean;
53
53
  readonly componentHost?: "dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx";
54
54
  readonly "component-host"?: "dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx";
@@ -73,9 +73,9 @@ declare const _default: {
73
73
  type: import("vue").PropType<boolean>;
74
74
  };
75
75
  variant: {
76
- type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "settings" | "info-section">;
76
+ type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section">;
77
77
  } & {
78
- type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "settings" | "info-section">;
78
+ type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section">;
79
79
  };
80
80
  "component-host": {
81
81
  type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx">;
@@ -117,9 +117,9 @@ declare const _default: {
117
117
  type: import("vue").PropType<boolean>;
118
118
  };
119
119
  variant: {
120
- type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "settings" | "info-section">;
120
+ type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section">;
121
121
  } & {
122
- type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "settings" | "info-section">;
122
+ type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section">;
123
123
  };
124
124
  "component-host": {
125
125
  type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx">;
@@ -145,9 +145,9 @@ declare const _default: {
145
145
  type: import("vue").PropType<boolean>;
146
146
  };
147
147
  variant: {
148
- type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "settings" | "info-section">;
148
+ type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section">;
149
149
  } & {
150
- type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "settings" | "info-section">;
150
+ type: import("vue").PropType<"section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section">;
151
151
  };
152
152
  "component-host": {
153
153
  type: import("vue").PropType<"dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx">;
@@ -165,7 +165,7 @@ declare const _default: {
165
165
  }>[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
166
166
  propsDefinition: Omit<Readonly<{} & {
167
167
  host?: "admin" | "editor" | "docs";
168
- variant?: "section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "settings" | "info-section";
168
+ variant?: "section" | "navigation" | "default" | "footer" | "header" | "options" | "content" | "toolbar" | "settings" | "info-section";
169
169
  force?: boolean;
170
170
  componentHost?: "dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx";
171
171
  "component-host"?: "dialog" | "menu" | "table" | "tab" | "toolbar" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "blade" | "appbar" | "panel" | "omfx";
@@ -67,6 +67,7 @@ declare const _default: {
67
67
  } & {
68
68
  chip?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
69
69
  selection?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
70
+ item?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
70
71
  };
71
72
  readonly variant?: "default" | "add" | "picker" | "combobox";
72
73
  readonly toned?: boolean;
@@ -102,6 +103,7 @@ declare const _default: {
102
103
  } & {
103
104
  chip?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
104
105
  selection?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
106
+ item?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
105
107
  }>;
106
108
  hideSelected: {
107
109
  type: import("vue").PropType<boolean>;
@@ -221,6 +223,7 @@ declare const _default: {
221
223
  } & {
222
224
  chip?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
223
225
  selection?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
226
+ item?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
224
227
  }>;
225
228
  hideSelected: {
226
229
  type: import("vue").PropType<boolean>;
@@ -315,6 +318,7 @@ declare const _default: {
315
318
  } & {
316
319
  chip?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
317
320
  selection?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
321
+ item?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
318
322
  }>;
319
323
  hideSelected: {
320
324
  type: import("vue").PropType<boolean>;
@@ -429,6 +433,7 @@ declare const _default: {
429
433
  } & {
430
434
  chip?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
431
435
  selection?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
436
+ item?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
432
437
  };
433
438
  variant?: "default" | "add" | "picker" | "combobox";
434
439
  toned?: boolean;
@@ -2,5 +2,6 @@ import { ColorDefinition, OTabVariants } from "@omnia/fx-models";
2
2
  export declare const TabStyles: {
3
3
  containerTabWrapper: (color: ColorDefinition) => string;
4
4
  tabWrapper: () => string;
5
+ notificationWrapper: () => string;
5
6
  activeTab: (color: string, variant: OTabVariants, backgroundColor: string) => string;
6
7
  };
@@ -64,7 +64,8 @@ declare const _default: {
64
64
  readonly "onUpdate:modelValue"?: (value: boolean) => any;
65
65
  readonly "v-model"?: boolean;
66
66
  readonly modelValue?: boolean;
67
- readonly variant?: "navigation" | "default" | "header" | "settings";
67
+ readonly variant?: "navigation" | "default" | "header" | "toolbar" | "settings";
68
+ readonly notificationCount?: number;
68
69
  };
69
70
  $attrs: {
70
71
  [x: string]: unknown;
@@ -81,11 +82,14 @@ declare const _default: {
81
82
  $el: any;
82
83
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
83
84
  variant: {
84
- type: import("vue").PropType<"navigation" | "default" | "header" | "settings">;
85
+ type: import("vue").PropType<"navigation" | "default" | "header" | "toolbar" | "settings">;
85
86
  };
86
87
  icon: {
87
88
  type: import("vue").PropType<TabIconModel>;
88
89
  };
90
+ notificationCount: {
91
+ type: import("vue").PropType<number>;
92
+ };
89
93
  title: {
90
94
  type: import("vue").PropType<string>;
91
95
  };
@@ -140,11 +144,14 @@ declare const _default: {
140
144
  $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;
141
145
  } & Readonly<import("vue").ExtractPropTypes<{
142
146
  variant: {
143
- type: import("vue").PropType<"navigation" | "default" | "header" | "settings">;
147
+ type: import("vue").PropType<"navigation" | "default" | "header" | "toolbar" | "settings">;
144
148
  };
145
149
  icon: {
146
150
  type: import("vue").PropType<TabIconModel>;
147
151
  };
152
+ notificationCount: {
153
+ type: import("vue").PropType<number>;
154
+ };
148
155
  title: {
149
156
  type: import("vue").PropType<string>;
150
157
  };
@@ -177,11 +184,14 @@ declare const _default: {
177
184
  __isSuspense?: never;
178
185
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
179
186
  variant: {
180
- type: import("vue").PropType<"navigation" | "default" | "header" | "settings">;
187
+ type: import("vue").PropType<"navigation" | "default" | "header" | "toolbar" | "settings">;
181
188
  };
182
189
  icon: {
183
190
  type: import("vue").PropType<TabIconModel>;
184
191
  };
192
+ notificationCount: {
193
+ type: import("vue").PropType<number>;
194
+ };
185
195
  title: {
186
196
  type: import("vue").PropType<string>;
187
197
  };
@@ -229,7 +239,8 @@ declare const _default: {
229
239
  "onUpdate:modelValue"?: (value: boolean) => any;
230
240
  "v-model"?: boolean;
231
241
  modelValue?: boolean;
232
- variant?: "navigation" | "default" | "header" | "settings";
242
+ variant?: "navigation" | "default" | "header" | "toolbar" | "settings";
243
+ notificationCount?: number;
233
244
  }>, never>;
234
245
  };
235
246
  export default _default;
@@ -3,5 +3,6 @@ export declare const TabsStyles: {
3
3
  itemContainer: (scrollOffset: string) => string;
4
4
  itemScrollContainer: (scrollOffset: string) => string;
5
5
  dialogWrapper: string;
6
+ toolbarStyles: (vertical: boolean) => string;
6
7
  dialogContainer: (baseSelected: ColorDefinition, onBaseSelected: ColorDefinition, toned: boolean, vertical: boolean) => string;
7
8
  };
@@ -11,6 +11,7 @@ declare const _default: {
11
11
  style?: unknown;
12
12
  class?: String | String[];
13
13
  key?: string | number | symbol;
14
+ readonly vertical?: boolean;
14
15
  ref?: import("vue").VNodeRef;
15
16
  ref_for?: boolean;
16
17
  ref_key?: string;
@@ -55,7 +56,7 @@ declare const _default: {
55
56
  readonly "onUpdate:modelValue"?: (value: number) => any;
56
57
  readonly "v-model"?: number;
57
58
  readonly modelValue?: number;
58
- readonly variant?: "navigation" | "default" | "header" | "settings";
59
+ readonly variant?: "navigation" | "default" | "header" | "toolbar" | "settings";
59
60
  readonly toned?: boolean;
60
61
  readonly stacked?: boolean;
61
62
  readonly scrolling?: string;
@@ -77,13 +78,18 @@ declare const _default: {
77
78
  scrolling: {
78
79
  type: import("vue").PropType<string>;
79
80
  };
81
+ vertical: {
82
+ type: import("vue").PropType<boolean>;
83
+ } & {
84
+ type: import("vue").PropType<boolean>;
85
+ };
80
86
  toned: {
81
87
  type: import("vue").PropType<boolean>;
82
88
  } & {
83
89
  type: import("vue").PropType<boolean>;
84
90
  };
85
91
  variant: {
86
- type: import("vue").PropType<"navigation" | "default" | "header" | "settings">;
92
+ type: import("vue").PropType<"navigation" | "default" | "header" | "toolbar" | "settings">;
87
93
  };
88
94
  stacked: {
89
95
  type: import("vue").PropType<boolean>;
@@ -139,13 +145,18 @@ declare const _default: {
139
145
  scrolling: {
140
146
  type: import("vue").PropType<string>;
141
147
  };
148
+ vertical: {
149
+ type: import("vue").PropType<boolean>;
150
+ } & {
151
+ type: import("vue").PropType<boolean>;
152
+ };
142
153
  toned: {
143
154
  type: import("vue").PropType<boolean>;
144
155
  } & {
145
156
  type: import("vue").PropType<boolean>;
146
157
  };
147
158
  variant: {
148
- type: import("vue").PropType<"navigation" | "default" | "header" | "settings">;
159
+ type: import("vue").PropType<"navigation" | "default" | "header" | "toolbar" | "settings">;
149
160
  };
150
161
  stacked: {
151
162
  type: import("vue").PropType<boolean>;
@@ -179,13 +190,18 @@ declare const _default: {
179
190
  scrolling: {
180
191
  type: import("vue").PropType<string>;
181
192
  };
193
+ vertical: {
194
+ type: import("vue").PropType<boolean>;
195
+ } & {
196
+ type: import("vue").PropType<boolean>;
197
+ };
182
198
  toned: {
183
199
  type: import("vue").PropType<boolean>;
184
200
  } & {
185
201
  type: import("vue").PropType<boolean>;
186
202
  };
187
203
  variant: {
188
- type: import("vue").PropType<"navigation" | "default" | "header" | "settings">;
204
+ type: import("vue").PropType<"navigation" | "default" | "header" | "toolbar" | "settings">;
189
205
  };
190
206
  stacked: {
191
207
  type: import("vue").PropType<boolean>;
@@ -226,10 +242,11 @@ declare const _default: {
226
242
  colors?: any;
227
243
  } & {
228
244
  class?: String | String[];
245
+ vertical?: boolean;
229
246
  "onUpdate:modelValue"?: (value: number) => any;
230
247
  "v-model"?: number;
231
248
  modelValue?: number;
232
- variant?: "navigation" | "default" | "header" | "settings";
249
+ variant?: "navigation" | "default" | "header" | "toolbar" | "settings";
233
250
  toned?: boolean;
234
251
  stacked?: boolean;
235
252
  scrolling?: string;
@@ -1,10 +0,0 @@
1
- import { TimePeriodSettings } from "../../models";
2
- export interface ITimePeriodPicker {
3
- min?: number;
4
- label?: string;
5
- dark?: boolean;
6
- disabled?: boolean;
7
- hideDetails?: boolean;
8
- valueBind: TimePeriodSettings;
9
- onValueChanged: (model: TimePeriodSettings) => void;
10
- }
@@ -222,7 +222,7 @@ declare const _default: {
222
222
  }>> & {
223
223
  "onUpdate:modelValue"?: (value: TimePeriodSettings) => any;
224
224
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
225
- "update:modelValue": (value: TimePeriodSettings) => boolean;
225
+ "update:modelValue": (value: TimePeriodSettings) => true;
226
226
  }, string, {}, {}, string, {}> & {
227
227
  beforeCreate?: (() => void) | (() => void)[];
228
228
  created?: (() => void) | (() => void)[];
@@ -428,7 +428,7 @@ declare const _default: {
428
428
  }>> & {
429
429
  "onUpdate:modelValue"?: (value: TimePeriodSettings) => any;
430
430
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
431
- "update:modelValue": (value: TimePeriodSettings) => boolean;
431
+ "update:modelValue": (value: TimePeriodSettings) => true;
432
432
  }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
433
433
  propsDefinition: Omit<Readonly<{} & {
434
434
  label?: string;
@@ -1 +0,0 @@
1
- export * from "./ITimePeriodPicker";
@@ -1,4 +1,4 @@
1
- import { VelcronAppDefinition } from "@omnia/fx-models";
1
+ import { Guid, VelcronAppDefinition, VelcronColorSchemaState, VelcronDefinition } from "@omnia/fx-models";
2
2
  import { ContentDefinitionRegistration } from "../model/ContentDefinitionRegistration";
3
3
  export declare enum MenuTabs {
4
4
  templates = 0,
@@ -9,6 +9,9 @@ export declare const useVelcronContentEditorStore: () => {
9
9
  definitions: ContentDefinitionRegistration[];
10
10
  activeDefinition: ContentDefinitionRegistration;
11
11
  selectedDefinition: ContentDefinitionRegistration;
12
+ lastDefinition: ContentDefinitionRegistration;
13
+ toggleColorSchemaPreview: VelcronColorSchemaState;
14
+ toggleDefinitionPreview: VelcronDefinition;
12
15
  activeTab: MenuTabs;
13
16
  onGoingDragging: boolean;
14
17
  };
@@ -16,44 +19,67 @@ export declare const useVelcronContentEditorStore: () => {
16
19
  onMutatedDefinitions: import("@omnia/fx").MessageBusExposeOnlySubscription<ContentDefinitionRegistration[]>;
17
20
  onMutatedActiveDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ContentDefinitionRegistration>;
18
21
  onMutatedSelectedDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ContentDefinitionRegistration>;
22
+ onMutatedLastDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ContentDefinitionRegistration>;
23
+ onMutatedToggleColorSchemaPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronColorSchemaState>;
24
+ onMutatedToggleDefinitionPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronDefinition>;
19
25
  onMutatedActiveTab: import("@omnia/fx").MessageBusExposeOnlySubscription<MenuTabs>;
20
26
  onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
21
27
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
22
28
  actions: {
23
29
  onDispatching<T extends (...args: any) => any>(action: (actions: {
30
+ ensureLastTextDefinition(): void;
24
31
  addDefinition(definition: ContentDefinitionRegistration): void;
25
32
  setActiveDefinition(definition: ContentDefinitionRegistration): void;
26
33
  removeActiveDefinition(): void;
27
34
  setSelectedDefinition(definition: ContentDefinitionRegistration): void;
28
35
  removeSelectedDefinition(): void;
29
36
  setDragDropState(onGoingDragging: boolean): void;
37
+ updateColorSchema(definitionRegistration: ContentDefinitionRegistration, colorSchemaType: string): void;
38
+ toggleColorSchemaPreview(definitionRegistration: ContentDefinitionRegistration, colorSchemaType: string): void;
39
+ toggleDefinitionPreview(definitionRegistration: ContentDefinitionRegistration, newDefinitionId: Guid): void;
40
+ changeDefinition(definitionRegistration: ContentDefinitionRegistration, newDefinitionId: Guid, toggle?: boolean): void;
30
41
  updateDefinition(definition: ContentDefinitionRegistration, velcronDefinition: VelcronAppDefinition): void;
31
42
  }) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
32
43
  onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
44
+ ensureLastTextDefinition(): void;
33
45
  addDefinition(definition: ContentDefinitionRegistration): void;
34
46
  setActiveDefinition(definition: ContentDefinitionRegistration): void;
35
47
  removeActiveDefinition(): void;
36
48
  setSelectedDefinition(definition: ContentDefinitionRegistration): void;
37
49
  removeSelectedDefinition(): void;
38
50
  setDragDropState(onGoingDragging: boolean): void;
51
+ updateColorSchema(definitionRegistration: ContentDefinitionRegistration, colorSchemaType: string): void;
52
+ toggleColorSchemaPreview(definitionRegistration: ContentDefinitionRegistration, colorSchemaType: string): void;
53
+ toggleDefinitionPreview(definitionRegistration: ContentDefinitionRegistration, newDefinitionId: Guid): void;
54
+ changeDefinition(definitionRegistration: ContentDefinitionRegistration, newDefinitionId: Guid, toggle?: boolean): void;
39
55
  updateDefinition(definition: ContentDefinitionRegistration, velcronDefinition: VelcronAppDefinition): void;
40
56
  }) => 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;
41
57
  onFailure<T_2 extends (...args: any) => any>(action: (actions: {
58
+ ensureLastTextDefinition(): void;
42
59
  addDefinition(definition: ContentDefinitionRegistration): void;
43
60
  setActiveDefinition(definition: ContentDefinitionRegistration): void;
44
61
  removeActiveDefinition(): void;
45
62
  setSelectedDefinition(definition: ContentDefinitionRegistration): void;
46
63
  removeSelectedDefinition(): void;
47
64
  setDragDropState(onGoingDragging: boolean): void;
65
+ updateColorSchema(definitionRegistration: ContentDefinitionRegistration, colorSchemaType: string): void;
66
+ toggleColorSchemaPreview(definitionRegistration: ContentDefinitionRegistration, colorSchemaType: string): void;
67
+ toggleDefinitionPreview(definitionRegistration: ContentDefinitionRegistration, newDefinitionId: Guid): void;
68
+ changeDefinition(definitionRegistration: ContentDefinitionRegistration, newDefinitionId: Guid, toggle?: boolean): void;
48
69
  updateDefinition(definition: ContentDefinitionRegistration, velcronDefinition: VelcronAppDefinition): void;
49
70
  }) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
50
71
  } & {
72
+ ensureLastTextDefinition(): void;
51
73
  addDefinition(definition: ContentDefinitionRegistration): void;
52
74
  setActiveDefinition(definition: ContentDefinitionRegistration): void;
53
75
  removeActiveDefinition(): void;
54
76
  setSelectedDefinition(definition: ContentDefinitionRegistration): void;
55
77
  removeSelectedDefinition(): void;
56
78
  setDragDropState(onGoingDragging: boolean): void;
79
+ updateColorSchema(definitionRegistration: ContentDefinitionRegistration, colorSchemaType: string): void;
80
+ toggleColorSchemaPreview(definitionRegistration: ContentDefinitionRegistration, colorSchemaType: string): void;
81
+ toggleDefinitionPreview(definitionRegistration: ContentDefinitionRegistration, newDefinitionId: Guid): void;
82
+ changeDefinition(definitionRegistration: ContentDefinitionRegistration, newDefinitionId: Guid, toggle?: boolean): void;
57
83
  updateDefinition(definition: ContentDefinitionRegistration, velcronDefinition: VelcronAppDefinition): void;
58
84
  };
59
85
  };
@@ -130,6 +130,8 @@ declare const _default: {
130
130
  readonly allowEdit?: boolean;
131
131
  readonly "allow-edit"?: boolean;
132
132
  readonly exclusions?: Guid[];
133
+ "onDefinition:enter"?: (id: Guid) => any;
134
+ "onDefinition:leave"?: (id: Guid) => any;
133
135
  };
134
136
  $attrs: {
135
137
  [x: string]: unknown;
@@ -142,7 +144,7 @@ declare const _default: {
142
144
  }>;
143
145
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
144
146
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
145
- $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "selected", id: Guid) => void);
147
+ $emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "selected", id: Guid) => void) & ((event: "definition:enter", id: Guid) => void) & ((event: "definition:leave", id: Guid) => void);
146
148
  $el: any;
147
149
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
148
150
  "v-slots": import("vue").Prop<{
@@ -250,9 +252,13 @@ declare const _default: {
250
252
  }>> & {
251
253
  "onUpdate:modelValue"?: (value: boolean) => any;
252
254
  onSelected?: (id: Guid) => any;
255
+ "onDefinition:enter"?: (id: Guid) => any;
256
+ "onDefinition:leave"?: (id: Guid) => any;
253
257
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
254
258
  selected: (id: Guid) => any;
255
259
  "update:modelValue": (value: boolean) => any;
260
+ "definition:enter": (id: Guid) => any;
261
+ "definition:leave": (id: Guid) => any;
256
262
  }, string, {
257
263
  container?: any;
258
264
  blueprint?: any;
@@ -385,6 +391,8 @@ declare const _default: {
385
391
  }>> & {
386
392
  "onUpdate:modelValue"?: (value: boolean) => any;
387
393
  onSelected?: (id: Guid) => any;
394
+ "onDefinition:enter"?: (id: Guid) => any;
395
+ "onDefinition:leave"?: (id: Guid) => any;
388
396
  } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
389
397
  __isFragment?: never;
390
398
  __isTeleport?: never;
@@ -495,9 +503,13 @@ declare const _default: {
495
503
  }>> & {
496
504
  "onUpdate:modelValue"?: (value: boolean) => any;
497
505
  onSelected?: (id: Guid) => any;
506
+ "onDefinition:enter"?: (id: Guid) => any;
507
+ "onDefinition:leave"?: (id: Guid) => any;
498
508
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
499
509
  selected: (id: Guid) => any;
500
510
  "update:modelValue": (value: boolean) => any;
511
+ "definition:enter": (id: Guid) => any;
512
+ "definition:leave": (id: Guid) => any;
501
513
  }, string, {
502
514
  container?: any;
503
515
  blueprint?: any;
@@ -587,9 +599,11 @@ declare const _default: {
587
599
  allowEdit?: boolean;
588
600
  "allow-edit"?: boolean;
589
601
  exclusions?: Guid[];
590
- }>, "onUpdate:modelValue" | "onSelected"> & {
602
+ }>, "onUpdate:modelValue" | "onSelected" | "onDefinition:enter" | "onDefinition:leave"> & {
591
603
  "onUpdate:modelValue"?: (value: boolean) => any;
592
604
  onSelected?: (id: Guid) => any;
605
+ "onDefinition:enter"?: (id: Guid) => any;
606
+ "onDefinition:leave"?: (id: Guid) => any;
593
607
  };
594
608
  };
595
609
  export default _default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.23-dev",
4
+ "version": "8.0.24-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.23-dev",
23
+ "@omnia/fx-models": "8.0.24-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",