@omnia/fx 8.0.183-dev → 8.0.185-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. package/internal-do-not-import-from-here/libs/sortable/Sortable.d.ts +1 -0
  2. package/internal-do-not-import-from-here/libs/sortable/index.d.ts +1 -0
  3. package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +43 -1
  4. package/internal-do-not-import-from-here/ux/UxModels.d.ts +1 -0
  5. package/internal-do-not-import-from-here/ux/aurora/components/containerpicker/ContainerPicker.d.ts +52 -0
  6. package/internal-do-not-import-from-here/ux/aurora/store/ComponentBlueprintStore.d.ts +2 -2
  7. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +8 -8
  8. package/internal-do-not-import-from-here/ux/aurora/store/ThemeContextStore.d.ts +24 -24
  9. package/internal-do-not-import-from-here/ux/aurora/store/ThemeStoreV2.d.ts +3 -3
  10. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +8 -8
  11. package/internal-do-not-import-from-here/ux/journey/Journey.css.d.ts +1 -1
  12. package/internal-do-not-import-from-here/ux/journey/Journey.d.ts +26 -0
  13. package/internal-do-not-import-from-here/ux/journey/JourneyBlade.css.d.ts +1 -1
  14. package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +5 -5
  15. package/internal-do-not-import-from-here/ux/journey/SettingsJourneyMenu.d.ts +56 -0
  16. package/internal-do-not-import-from-here/ux/journey/docs/ExampleComponentSettings.d.ts +1 -0
  17. package/internal-do-not-import-from-here/ux/journey/docs/SampleComponentSettings.d.ts +51 -0
  18. package/internal-do-not-import-from-here/ux/journey/docs/index.d.ts +1 -0
  19. package/internal-do-not-import-from-here/ux/journey/models/SettingsBladeRegistration.d.ts +13 -0
  20. package/internal-do-not-import-from-here/ux/journey/models/index.d.ts +1 -0
  21. package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +22 -0
  22. package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +11 -3
  23. package/internal-do-not-import-from-here/ux/markdown/patches/HtmlInlinePatch.d.ts +2 -0
  24. package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/ThemeStylingPlugin.d.ts +1 -1
  25. package/internal-do-not-import-from-here/ux/models/DataTable.d.ts +2 -0
  26. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +9 -9
  27. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +15 -6
  28. package/internal-do-not-import-from-here/ux/oxide/datatable/RowRenderer.d.ts +3 -0
  29. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.css.d.ts +2 -5
  30. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +9 -9
  31. package/internal-do-not-import-from-here/ux/use/UseDraggable.d.ts +9 -67
  32. package/internal-do-not-import-from-here/ux/use/index.d.ts +1 -0
  33. package/internal-do-not-import-from-here/wctypings.d.ts +22 -9
  34. package/package.json +2 -2
@@ -1,70 +1,12 @@
1
+ import { DefineProp, DefineVModel } from "../DefineVueTypings";
2
+ import { Ref } from "vue";
3
+ type DraggableComponentProps = DefineVModel<"", Array<any>, false, null> & DefineProp<"containerRef", Ref<any>, true, null>;
4
+ type DraggableComponentTypings = (props: Omit<DraggableComponentProps, "containerRef">) => any;
1
5
  export declare function useDraggable(): {
2
- Draggable: (props: import("../InternalDefineComponent").ExtractProps<{
3
- "v-model"?: any[];
4
- } & {
5
- "onUpdate:modelValue"?: (value: any[]) => void;
6
- } & {
7
- modelValue?: any[];
8
- } & {
9
- placeholderClass?: string;
10
- }> & Omit<{}, "v-model" | "onUpdate:modelValue" | "modelValue" | "placeholderClass"> & {
11
- "v-slots"?: {
12
- default?: import("vue").Slot;
13
- } & {};
14
- } & Omit<import("..").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "placeholderClass">) => {
15
- $: import("vue").ComponentInternalInstance;
16
- $data: {};
17
- $props: {};
18
- $attrs: {
19
- [x: string]: unknown;
20
- };
21
- $refs: {
22
- [x: string]: unknown;
23
- };
24
- $slots: Readonly<{
25
- [name: string]: import("vue").Slot<any>;
26
- }>;
27
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
28
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
29
- $emit: (event: string, ...args: any[]) => void;
30
- $el: any;
31
- $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
32
- beforeCreate?: (() => void) | (() => void)[];
33
- created?: (() => void) | (() => void)[];
34
- beforeMount?: (() => void) | (() => void)[];
35
- mounted?: (() => void) | (() => void)[];
36
- beforeUpdate?: (() => void) | (() => void)[];
37
- updated?: (() => void) | (() => void)[];
38
- activated?: (() => void) | (() => void)[];
39
- deactivated?: (() => void) | (() => void)[];
40
- beforeDestroy?: (() => void) | (() => void)[];
41
- beforeUnmount?: (() => void) | (() => void)[];
42
- destroyed?: (() => void) | (() => void)[];
43
- unmounted?: (() => void) | (() => void)[];
44
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
45
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
46
- 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)[];
47
- };
48
- $forceUpdate: () => void;
49
- $nextTick: typeof import("vue").nextTick;
50
- $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;
51
- } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
52
- propsDefinition: import("../InternalDefineComponent").ExtractProps<{
53
- "v-model"?: any[];
54
- } & {
55
- "onUpdate:modelValue"?: (value: any[]) => void;
56
- } & {
57
- modelValue?: any[];
58
- } & {
59
- placeholderClass?: string;
60
- }> & {
61
- "v-slots"?: {
62
- default?: import("vue").Slot;
63
- } & {};
64
- } & {} & Omit<import("..").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "placeholderClass">;
65
- } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
66
- [key: string]: any;
67
- }>;
6
+ Draggable: DraggableComponentTypings;
7
+ readonly DraggableIcon: JSX.Element;
8
+ draggableContainerRef: Ref<any>;
68
9
  draggableItemClass: string;
69
- disabledDraggableItemClass: string;
10
+ disabledItemClass: string;
70
11
  };
12
+ export {};
@@ -20,3 +20,4 @@ export * from "./UseSupported";
20
20
  export * from "./UseInterSectionObserver";
21
21
  export * from "./UseMounted";
22
22
  export * from "./UseInternatlStateMirroring";
23
+ export * from "./UseDraggable";
@@ -57,6 +57,7 @@ import wcc0ba9c7ccef54093bcb0be49e7cf79df from './ux/journey/Journey';
57
57
  import wc4357bb8264e3482c8710afed3b2be35c from './ux/journey/JourneyBlade';
58
58
  import wc0ce695fbce6f4c08906de47bbd84152d from './ux/journey/JourneyPlaceHolder';
59
59
  import wc828a4c20542945858e792ec584148a5c from './ux/journey/JourneyMenu';
60
+ import wcd91fa8e10e3b4350bb158f9cbeace0e8 from './ux/journey/SettingsJourneyMenu';
60
61
  import wc3392707566c844e39f57097aade4e81c from './ux/jsonexportimport/ExportImport';
61
62
  import wc20b4e8166fb44f2b8b240724eb5f2db2 from './ux/languagepicker/LanguagePicker';
62
63
  import wc6c2ac8bf4da44a2b8e544eaf5b42099f from './ux/limited-label/LimitedLabel';
@@ -626,6 +627,9 @@ declare global {
626
627
  "omfx-journey-menu": typeof wc828a4c20542945858e792ec584148a5c extends {
627
628
  propsDefinition: infer TProp;
628
629
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc828a4c20542945858e792ec584148a5c extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc828a4c20542945858e792ec584148a5c>, "propsDefinition">> : never;
630
+ "omfx-settings-journey-menu": typeof wcd91fa8e10e3b4350bb158f9cbeace0e8 extends {
631
+ propsDefinition: infer TProp;
632
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcd91fa8e10e3b4350bb158f9cbeace0e8 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcd91fa8e10e3b4350bb158f9cbeace0e8>, "propsDefinition">> : never;
629
633
  "omfx-export-import-json": typeof wc3392707566c844e39f57097aade4e81c extends {
630
634
  propsDefinition: infer TProp;
631
635
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc3392707566c844e39f57097aade4e81c extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc3392707566c844e39f57097aade4e81c>, "propsDefinition">> : never;
@@ -2649,6 +2653,24 @@ declare global {
2649
2653
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2650
2654
  };
2651
2655
  } : typeof wcc0ba9c7ccef54093bcb0be49e7cf79df;
2656
+ "settings": {
2657
+ "journey": {
2658
+ "menu": typeof wcd91fa8e10e3b4350bb158f9cbeace0e8 extends {
2659
+ propsDefinition: infer TProp;
2660
+ } ? {
2661
+ new (...args: any[]): {
2662
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2663
+ };
2664
+ } : typeof wcd91fa8e10e3b4350bb158f9cbeace0e8;
2665
+ };
2666
+ "pane": typeof wcc0de4753b9fe4004b0f4e6b6b91730ab extends {
2667
+ propsDefinition: infer TProp;
2668
+ } ? {
2669
+ new (...args: any[]): {
2670
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2671
+ };
2672
+ } : typeof wcc0de4753b9fe4004b0f4e6b6b91730ab;
2673
+ };
2652
2674
  "export": {
2653
2675
  "import": {
2654
2676
  "json": typeof wc3392707566c844e39f57097aade4e81c extends {
@@ -3096,15 +3118,6 @@ declare global {
3096
3118
  };
3097
3119
  } : typeof wc379287b1efe64a49a43fcd754d1fd951;
3098
3120
  };
3099
- "settings": {
3100
- "pane": typeof wcc0de4753b9fe4004b0f4e6b6b91730ab extends {
3101
- propsDefinition: infer TProp;
3102
- } ? {
3103
- new (...args: any[]): {
3104
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
3105
- };
3106
- } : typeof wcc0de4753b9fe4004b0f4e6b6b91730ab;
3107
- };
3108
3121
  "side": {
3109
3122
  "panel": typeof wc539d199f69934c10a963f142e4f3056d extends {
3110
3123
  propsDefinition: infer TProp;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.183-dev",
4
+ "version": "8.0.185-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.183-dev",
23
+ "@omnia/fx-models": "8.0.185-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",