@omnia/fx 8.0.242-dev → 8.0.243-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 (24) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/stores/markdown/MarkdownPluginStore.d.ts +41 -0
  3. package/internal-do-not-import-from-here/stores/markdown/index.d.ts +1 -1
  4. package/internal-do-not-import-from-here/ux/admin/usermanagement/authentication/models/LoginProvidersFactory.d.ts +2 -0
  5. package/internal-do-not-import-from-here/ux/journey/DefineBlade.d.ts +3 -7
  6. package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +6 -18
  7. package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +1 -1
  8. package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor_bak.d.ts +0 -498
  9. package/internal-do-not-import-from-here/ux/markdown/plugins/CodeMarkdownRenderer.d.ts +0 -3
  10. package/internal-do-not-import-from-here/ux/markdown/plugins/VelcronMarkdownRenderer.d.ts +0 -3
  11. package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/ColorButton.d.ts +0 -57
  12. package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/ThemeStylingPlugin.d.ts +0 -3
  13. package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/TypographyButton.d.ts +0 -57
  14. package/internal-do-not-import-from-here/{stores/markdown → ux/markdown/stores}/MarkdownEditorStore.d.ts +3 -3
  15. package/internal-do-not-import-from-here/ux/markdown2/MarkdownEditorFuture.d.ts +6 -1
  16. package/internal-do-not-import-from-here/ux/markdown2/PluginRegistrationHandler.d.ts +1 -0
  17. package/internal-do-not-import-from-here/ux/markdown2/plugins/registrations/PluginRegistrations.d.ts +1 -0
  18. package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownStore.d.ts +5 -5
  19. package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownToolbarStore.d.ts +20 -20
  20. package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +3 -3
  21. package/internal-do-not-import-from-here/ux/use/UseDraggable.d.ts +1 -1
  22. package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +7 -7
  23. package/internal-do-not-import-from-here/ux/velcron/renderer/components/App.d.ts +6 -6
  24. package/package.json +2 -2
@@ -1,5 +1,6 @@
1
1
  import { DefineEmit } from "@omnia/fx/ux";
2
2
  import { useMarkdownStore } from "./stores/MarkdownStore";
3
+ import { MarkdownPluginSettings } from "@omnia/fx-models";
3
4
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
4
5
  "v-model"?: string;
5
6
  } & {
@@ -14,6 +15,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
14
15
  edit?: boolean;
15
16
  } & {
16
17
  getApi?: (store: ReturnType<typeof useMarkdownStore>) => void;
18
+ } & {
19
+ plugins?: MarkdownPluginSettings[];
17
20
  } & DefineEmit<"update:modelValue", (value: string) => true>>) => {
18
21
  $: import("vue").ComponentInternalInstance;
19
22
  $data: {};
@@ -66,13 +69,15 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
66
69
  edit?: boolean;
67
70
  } & {
68
71
  getApi?: (store: ReturnType<typeof useMarkdownStore>) => void;
72
+ } & {
73
+ plugins?: MarkdownPluginSettings[];
69
74
  } & DefineEmit<"update:modelValue", (value: string) => true>> & {
70
75
  "v-slots"?: {} & Omit<{
71
76
  default?: import("vue").Slot;
72
77
  }, never>;
73
78
  } & {
74
79
  "onUpdate:modelValue"?: (value: string) => any;
75
- } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "toolbar" | "placeholder" | "edit" | "v-model" | "onUpdate:modelValue" | "modelValue" | "getApi">;
80
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "toolbar" | "placeholder" | "edit" | "v-model" | "onUpdate:modelValue" | "modelValue" | "getApi" | "plugins">;
76
81
  } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
77
82
  [key: string]: any;
78
83
  }>;
@@ -1,4 +1,4 @@
1
- import { MarkdownEditorActionRegistration } from "@omnia/fx-models";
1
+ import { MarkdownEditorActionRegistration, MarkdownPluginSettings } from "@omnia/fx-models";
2
2
  import { MarkdownPlugin, MarkdownPluginContext } from "../models/MarkdownPlugin";
3
3
  export declare const useMarkdownStore: () => {
4
4
  state: {
@@ -22,7 +22,7 @@ export declare const useMarkdownStore: () => {
22
22
  actions: {
23
23
  onDispatching: {
24
24
  registerPlugin: {
25
- subscribe(fn: (plugin: () => MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
25
+ subscribe(fn: (pluginSettings: MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
26
26
  };
27
27
  toHtml: {
28
28
  subscribe(fn: (markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -57,7 +57,7 @@ export declare const useMarkdownStore: () => {
57
57
  };
58
58
  onDispatched: {
59
59
  registerPlugin: {
60
- subscribe(fn: (result: void, plugin: () => MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
60
+ subscribe(fn: (result: void, pluginSettings: MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
61
61
  };
62
62
  toHtml: {
63
63
  subscribe(fn: (result: string, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -105,7 +105,7 @@ export declare const useMarkdownStore: () => {
105
105
  };
106
106
  onFailure: {
107
107
  registerPlugin: {
108
- subscribe(fn: (failureReason: any, plugin: () => MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
108
+ subscribe(fn: (failureReason: any, pluginSettings: MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
109
109
  };
110
110
  toHtml: {
111
111
  subscribe(fn: (failureReason: any, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -139,7 +139,7 @@ export declare const useMarkdownStore: () => {
139
139
  };
140
140
  };
141
141
  } & {
142
- registerPlugin: (plugin: () => MarkdownPlugin) => void;
142
+ registerPlugin: (pluginSettings: MarkdownPluginSettings) => void;
143
143
  toHtml: (markdown: string) => string;
144
144
  toMarkdown: () => void;
145
145
  setContent: (markdown: string) => void;
@@ -24,7 +24,7 @@ export declare const useMarkdownToolbarStore: () => {
24
24
  actions: {
25
25
  onDispatching: {
26
26
  registerPlugin: {
27
- subscribe(fn: (plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
27
+ subscribe(fn: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
28
28
  };
29
29
  toHtml: {
30
30
  subscribe(fn: (markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -59,7 +59,7 @@ export declare const useMarkdownToolbarStore: () => {
59
59
  };
60
60
  onDispatched: {
61
61
  registerPlugin: {
62
- subscribe(fn: (result: void, plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
62
+ subscribe(fn: (result: void, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
63
63
  };
64
64
  toHtml: {
65
65
  subscribe(fn: (result: string, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -107,7 +107,7 @@ export declare const useMarkdownToolbarStore: () => {
107
107
  };
108
108
  onFailure: {
109
109
  registerPlugin: {
110
- subscribe(fn: (failureReason: any, plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
110
+ subscribe(fn: (failureReason: any, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
111
111
  };
112
112
  toHtml: {
113
113
  subscribe(fn: (failureReason: any, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -141,7 +141,7 @@ export declare const useMarkdownToolbarStore: () => {
141
141
  };
142
142
  };
143
143
  } & {
144
- registerPlugin: (plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void;
144
+ registerPlugin: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void;
145
145
  toHtml: (markdown: string) => string;
146
146
  toMarkdown: () => void;
147
147
  setContent: (markdown: string) => void;
@@ -196,7 +196,7 @@ export declare const useMarkdownToolbarStore: () => {
196
196
  actions: {
197
197
  onDispatching: {
198
198
  registerPlugin: {
199
- subscribe(fn: (plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
199
+ subscribe(fn: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
200
200
  };
201
201
  toHtml: {
202
202
  subscribe(fn: (markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -231,7 +231,7 @@ export declare const useMarkdownToolbarStore: () => {
231
231
  };
232
232
  onDispatched: {
233
233
  registerPlugin: {
234
- subscribe(fn: (result: void, plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
234
+ subscribe(fn: (result: void, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
235
235
  };
236
236
  toHtml: {
237
237
  subscribe(fn: (result: string, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -279,7 +279,7 @@ export declare const useMarkdownToolbarStore: () => {
279
279
  };
280
280
  onFailure: {
281
281
  registerPlugin: {
282
- subscribe(fn: (failureReason: any, plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
282
+ subscribe(fn: (failureReason: any, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
283
283
  };
284
284
  toHtml: {
285
285
  subscribe(fn: (failureReason: any, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -313,7 +313,7 @@ export declare const useMarkdownToolbarStore: () => {
313
313
  };
314
314
  };
315
315
  } & {
316
- registerPlugin: (plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void;
316
+ registerPlugin: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void;
317
317
  toHtml: (markdown: string) => string;
318
318
  toMarkdown: () => void;
319
319
  setContent: (markdown: string) => void;
@@ -370,7 +370,7 @@ export declare const useMarkdownToolbarStore: () => {
370
370
  actions: {
371
371
  onDispatching: {
372
372
  registerPlugin: {
373
- subscribe(fn: (plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
373
+ subscribe(fn: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
374
374
  };
375
375
  toHtml: {
376
376
  subscribe(fn: (markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -405,7 +405,7 @@ export declare const useMarkdownToolbarStore: () => {
405
405
  };
406
406
  onDispatched: {
407
407
  registerPlugin: {
408
- subscribe(fn: (result: void, plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
408
+ subscribe(fn: (result: void, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
409
409
  };
410
410
  toHtml: {
411
411
  subscribe(fn: (result: string, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -453,7 +453,7 @@ export declare const useMarkdownToolbarStore: () => {
453
453
  };
454
454
  onFailure: {
455
455
  registerPlugin: {
456
- subscribe(fn: (failureReason: any, plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
456
+ subscribe(fn: (failureReason: any, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
457
457
  };
458
458
  toHtml: {
459
459
  subscribe(fn: (failureReason: any, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -487,7 +487,7 @@ export declare const useMarkdownToolbarStore: () => {
487
487
  };
488
488
  };
489
489
  } & {
490
- registerPlugin: (plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void;
490
+ registerPlugin: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void;
491
491
  toHtml: (markdown: string) => string;
492
492
  toMarkdown: () => void;
493
493
  setContent: (markdown: string) => void;
@@ -545,7 +545,7 @@ export declare const useMarkdownToolbarStore: () => {
545
545
  actions: {
546
546
  onDispatching: {
547
547
  registerPlugin: {
548
- subscribe(fn: (plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
548
+ subscribe(fn: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
549
549
  };
550
550
  toHtml: {
551
551
  subscribe(fn: (markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -580,7 +580,7 @@ export declare const useMarkdownToolbarStore: () => {
580
580
  };
581
581
  onDispatched: {
582
582
  registerPlugin: {
583
- subscribe(fn: (result: void, plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
583
+ subscribe(fn: (result: void, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
584
584
  };
585
585
  toHtml: {
586
586
  subscribe(fn: (result: string, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -628,7 +628,7 @@ export declare const useMarkdownToolbarStore: () => {
628
628
  };
629
629
  onFailure: {
630
630
  registerPlugin: {
631
- subscribe(fn: (failureReason: any, plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
631
+ subscribe(fn: (failureReason: any, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
632
632
  };
633
633
  toHtml: {
634
634
  subscribe(fn: (failureReason: any, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -662,7 +662,7 @@ export declare const useMarkdownToolbarStore: () => {
662
662
  };
663
663
  };
664
664
  } & {
665
- registerPlugin: (plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void;
665
+ registerPlugin: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void;
666
666
  toHtml: (markdown: string) => string;
667
667
  toMarkdown: () => void;
668
668
  setContent: (markdown: string) => void;
@@ -720,7 +720,7 @@ export declare const useMarkdownToolbarStore: () => {
720
720
  actions: {
721
721
  onDispatching: {
722
722
  registerPlugin: {
723
- subscribe(fn: (plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
723
+ subscribe(fn: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
724
724
  };
725
725
  toHtml: {
726
726
  subscribe(fn: (markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -755,7 +755,7 @@ export declare const useMarkdownToolbarStore: () => {
755
755
  };
756
756
  onDispatched: {
757
757
  registerPlugin: {
758
- subscribe(fn: (result: void, plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
758
+ subscribe(fn: (result: void, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
759
759
  };
760
760
  toHtml: {
761
761
  subscribe(fn: (result: string, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -803,7 +803,7 @@ export declare const useMarkdownToolbarStore: () => {
803
803
  };
804
804
  onFailure: {
805
805
  registerPlugin: {
806
- subscribe(fn: (failureReason: any, plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
806
+ subscribe(fn: (failureReason: any, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
807
807
  };
808
808
  toHtml: {
809
809
  subscribe(fn: (failureReason: any, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -837,7 +837,7 @@ export declare const useMarkdownToolbarStore: () => {
837
837
  };
838
838
  };
839
839
  } & {
840
- registerPlugin: (plugin: () => import("../models/MarkdownPlugin").MarkdownPlugin) => void;
840
+ registerPlugin: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void;
841
841
  toHtml: (markdown: string) => string;
842
842
  toMarkdown: () => void;
843
843
  setContent: (markdown: string) => void;
@@ -1,12 +1,12 @@
1
1
  import { DefineProp, DefinePropClass, DefinePropTheming, DefineSlot, DefineVModel } from "@omnia/fx/ux";
2
- import { ComponentPublicInstance, Ref, VNodeChild } from "vue";
2
+ import { ComponentPublicInstance, VNodeChild } from "vue";
3
3
  import { OListLineTypes, OListTypes } from "@omnia/fx-models";
4
4
  export interface IListItem<T> {
5
5
  value: T;
6
6
  index: number;
7
7
  Item: typeof o.list.item;
8
8
  }
9
- export type OListProps<T> = DefinePropTheming & DefinePropClass & DefineVModel<"", T[], false, null, true, "An array of strings or objects used for automatically generating children components."> & DefineProp<"lines", OListLineTypes, false, null, "Designates a minimum-height for all the children o-list-item components. THis props uses line-clamp."> & DefineProp<"nav", boolean, false, false, "An alternative styling that reduces o-list-item width and rounds the corners. Typically used with o-navigation-drawer."> & DefineProp<"toned", boolean, false, false> & DefineProp<"divider", boolean, false, false, "If true, each item will have a bottom divider"> & DefineProp<"variant", OListTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"draggable", boolean | Ref<boolean>, false, false, "Enable draggable row."> & DefineProp<"removable", boolean | Ref<boolean>, false, false, "Enable removable row."> & DefineProp<"itemValue", string | ((item: any) => string), false, null, "Property on supplied items that contains its value."> & DefineSlot<"item", (item: IListItem<T>) => VNodeChild>;
9
+ export type OListProps<T> = DefinePropTheming & DefinePropClass & DefineVModel<"", T[], false, null, true, "An array of strings or objects used for automatically generating children components."> & DefineProp<"lines", OListLineTypes, false, null, "Designates a minimum-height for all the children o-list-item components. THis props uses line-clamp."> & DefineProp<"nav", boolean, false, false, "An alternative styling that reduces o-list-item width and rounds the corners. Typically used with o-navigation-drawer."> & DefineProp<"toned", boolean, false, false> & DefineProp<"divider", boolean, false, false, "If true, each item will have a bottom divider"> & DefineProp<"variant", OListTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"drag", boolean, false, false, "Enable draggable row."> & DefineProp<"navigation", boolean | ((item: T) => boolean), false, false, "The row navigation."> & DefineProp<"remove", boolean | ((item: T) => boolean), false, false, "Enable removable row."> & DefineProp<"itemValue", string | ((item: T) => string), false, null, "Property on supplied items that contains its value."> & DefineSlot<"item", (item: IListItem<T>) => VNodeChild>;
10
10
  declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").ConstructComponentProps<OListProps<T>>) => {
11
11
  $: import("vue").ComponentInternalInstance;
12
12
  $data: {};
@@ -51,7 +51,7 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Constr
51
51
  } & Omit<{
52
52
  default?: import("vue").Slot;
53
53
  }, "item">;
54
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "nav" | "colorSchemaType" | "toned" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "draggable" | "variant" | "divider" | "lines" | "removable" | "itemValue">;
54
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "navigation" | "container" | "drag" | "class" | "nav" | "colorSchemaType" | "toned" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "remove" | "variant" | "divider" | "lines" | "itemValue">;
55
55
  } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
56
56
  [key: string]: any;
57
57
  }>;
@@ -8,7 +8,7 @@ export declare const DraggableStyles: {
8
8
  };
9
9
  export declare function useDraggable(): {
10
10
  Draggable: DraggableComponentTypings;
11
- DraggableIcon: JSX.Element;
11
+ readonly DraggableIcon: JSX.Element;
12
12
  draggableContainerRef: Ref<any>;
13
13
  draggableItemClass: string;
14
14
  disabledItemClass: string;
@@ -34,8 +34,8 @@ declare const _default: {
34
34
  required: true;
35
35
  };
36
36
  }>> & {
37
- "onState:updated"?: (newState: object, oldState: object) => any;
38
37
  "onSetup:context"?: (context: VelcronRenderContext) => any;
38
+ "onState:updated"?: (newState: object, oldState: object) => any;
39
39
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
40
40
  "state:updated": (newState: DynamicState, oldState: DynamicState) => any;
41
41
  "setup:context": (context: VelcronRenderContext) => any;
@@ -72,8 +72,8 @@ declare const _default: {
72
72
  required: true;
73
73
  };
74
74
  }>> & {
75
- "onState:updated"?: (newState: object, oldState: object) => any;
76
75
  "onSetup:context"?: (context: VelcronRenderContext) => any;
76
+ "onState:updated"?: (newState: object, oldState: object) => any;
77
77
  }, {
78
78
  container: boolean;
79
79
  }, true, {}, {}, {
@@ -116,8 +116,8 @@ declare const _default: {
116
116
  required: true;
117
117
  };
118
118
  }>> & {
119
- "onState:updated"?: (newState: object, oldState: object) => any;
120
119
  "onSetup:context"?: (context: VelcronRenderContext) => any;
120
+ "onState:updated"?: (newState: object, oldState: object) => any;
121
121
  }, () => JSX.Element, {}, {}, {}, {
122
122
  container: boolean;
123
123
  }>;
@@ -157,8 +157,8 @@ declare const _default: {
157
157
  required: true;
158
158
  };
159
159
  }>> & {
160
- "onState:updated"?: (newState: object, oldState: object) => any;
161
160
  "onSetup:context"?: (context: VelcronRenderContext) => any;
161
+ "onState:updated"?: (newState: object, oldState: object) => any;
162
162
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
163
163
  "state:updated": (newState: DynamicState, oldState: DynamicState) => any;
164
164
  "setup:context": (context: VelcronRenderContext) => any;
@@ -174,11 +174,11 @@ declare const _default: {
174
174
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
175
175
  themeDefinition?: ThemeDefinitionV2;
176
176
  context?: VelcronRenderContext;
177
- eventHandlers?: VelcronRenderContextEventHandlers;
178
177
  editMode?: boolean;
179
- }>, "onState:updated" | "onSetup:context"> & {
180
- "onState:updated"?: (newState: object, oldState: object) => any;
178
+ eventHandlers?: VelcronRenderContextEventHandlers;
179
+ }>, "onSetup:context" | "onState:updated"> & {
181
180
  "onSetup:context"?: (context: VelcronRenderContext) => any;
181
+ "onState:updated"?: (newState: object, oldState: object) => any;
182
182
  };
183
183
  };
184
184
  export default _default;
@@ -13,8 +13,8 @@ declare const _default: {
13
13
  required: true;
14
14
  };
15
15
  }>> & {
16
- "onState:updated"?: (newState: object, oldState: object) => any;
17
16
  "onSetup:context"?: (context: VelcronRenderContext) => any;
17
+ "onState:updated"?: (newState: object, oldState: object) => any;
18
18
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
19
  "state:updated": (newState: DynamicState, oldState: DynamicState) => any;
20
20
  "setup:context": (context: VelcronRenderContext) => any;
@@ -31,8 +31,8 @@ declare const _default: {
31
31
  required: true;
32
32
  };
33
33
  }>> & {
34
- "onState:updated"?: (newState: object, oldState: object) => any;
35
34
  "onSetup:context"?: (context: VelcronRenderContext) => any;
35
+ "onState:updated"?: (newState: object, oldState: object) => any;
36
36
  }, {}, true, {}, {}, {
37
37
  P: {};
38
38
  B: {};
@@ -53,8 +53,8 @@ declare const _default: {
53
53
  required: true;
54
54
  };
55
55
  }>> & {
56
- "onState:updated"?: (newState: object, oldState: object) => any;
57
56
  "onSetup:context"?: (context: VelcronRenderContext) => any;
57
+ "onState:updated"?: (newState: object, oldState: object) => any;
58
58
  }, () => JSX.Element, {}, {}, {}, {}>;
59
59
  __isFragment?: never;
60
60
  __isTeleport?: never;
@@ -72,8 +72,8 @@ declare const _default: {
72
72
  required: true;
73
73
  };
74
74
  }>> & {
75
- "onState:updated"?: (newState: object, oldState: object) => any;
76
75
  "onSetup:context"?: (context: VelcronRenderContext) => any;
76
+ "onState:updated"?: (newState: object, oldState: object) => any;
77
77
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
78
78
  "state:updated": (newState: DynamicState, oldState: DynamicState) => any;
79
79
  "setup:context": (context: VelcronRenderContext) => any;
@@ -83,9 +83,9 @@ declare const _default: {
83
83
  renderContext: VelcronRenderContext;
84
84
  } & {
85
85
  rootApp?: boolean;
86
- }>, "onState:updated" | "onSetup:context"> & {
87
- "onState:updated"?: (newState: object, oldState: object) => any;
86
+ }>, "onSetup:context" | "onState:updated"> & {
88
87
  "onSetup:context"?: (context: VelcronRenderContext) => any;
88
+ "onState:updated"?: (newState: object, oldState: object) => any;
89
89
  };
90
90
  };
91
91
  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.242-dev",
4
+ "version": "8.0.243-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.242-dev",
23
+ "@omnia/fx-models": "8.0.243-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",