@omnia/fx 8.0.183-dev → 8.0.184-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 (29) 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/manifests/omnia.fx.ux.manifest.json +1 -1
  4. package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +43 -1
  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/SettingsJourney.d.ts +70 -0
  12. package/internal-do-not-import-from-here/ux/journey/SettingsJourneyBlade.d.ts +55 -0
  13. package/internal-do-not-import-from-here/ux/journey/SettingsJourneyMenu.d.ts +56 -0
  14. package/internal-do-not-import-from-here/ux/journey/models/SettingsBladeRegistration.d.ts +12 -0
  15. package/internal-do-not-import-from-here/ux/journey/models/index.d.ts +1 -0
  16. package/internal-do-not-import-from-here/ux/journey/stores/SettingsJourneyStore.d.ts +68 -0
  17. package/internal-do-not-import-from-here/ux/journey/stores/index.d.ts +1 -0
  18. package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +11 -3
  19. package/internal-do-not-import-from-here/ux/markdown/patches/HtmlInlinePatch.d.ts +2 -0
  20. package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/ThemeStylingPlugin.d.ts +1 -1
  21. package/internal-do-not-import-from-here/ux/models/DataTable.d.ts +2 -0
  22. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +15 -6
  23. package/internal-do-not-import-from-here/ux/oxide/datatable/RowRenderer.d.ts +3 -0
  24. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.css.d.ts +2 -5
  25. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +9 -9
  26. package/internal-do-not-import-from-here/ux/use/UseDraggable.d.ts +9 -67
  27. package/internal-do-not-import-from-here/ux/use/index.d.ts +1 -0
  28. package/internal-do-not-import-from-here/wctypings.d.ts +44 -9
  29. package/package.json +2 -2
@@ -57,6 +57,9 @@ 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 wcb15b9fd985a945748963ae09e292c903 from './ux/journey/SettingsJourney';
61
+ import wc360199d2428c4f3c9a99b931a9a5f2d1 from './ux/journey/SettingsJourneyBlade';
62
+ import wcd91fa8e10e3b4350bb158f9cbeace0e8 from './ux/journey/SettingsJourneyMenu';
60
63
  import wc3392707566c844e39f57097aade4e81c from './ux/jsonexportimport/ExportImport';
61
64
  import wc20b4e8166fb44f2b8b240724eb5f2db2 from './ux/languagepicker/LanguagePicker';
62
65
  import wc6c2ac8bf4da44a2b8e544eaf5b42099f from './ux/limited-label/LimitedLabel';
@@ -626,6 +629,15 @@ declare global {
626
629
  "omfx-journey-menu": typeof wc828a4c20542945858e792ec584148a5c extends {
627
630
  propsDefinition: infer TProp;
628
631
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc828a4c20542945858e792ec584148a5c extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc828a4c20542945858e792ec584148a5c>, "propsDefinition">> : never;
632
+ "omfx-settings-journey": typeof wcb15b9fd985a945748963ae09e292c903 extends {
633
+ propsDefinition: infer TProp;
634
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcb15b9fd985a945748963ae09e292c903 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcb15b9fd985a945748963ae09e292c903>, "propsDefinition">> : never;
635
+ "omfx-settings-journey-blade": typeof wc360199d2428c4f3c9a99b931a9a5f2d1 extends {
636
+ propsDefinition: infer TProp;
637
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc360199d2428c4f3c9a99b931a9a5f2d1 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc360199d2428c4f3c9a99b931a9a5f2d1>, "propsDefinition">> : never;
638
+ "omfx-settings-journey-menu": typeof wcd91fa8e10e3b4350bb158f9cbeace0e8 extends {
639
+ propsDefinition: infer TProp;
640
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcd91fa8e10e3b4350bb158f9cbeace0e8 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcd91fa8e10e3b4350bb158f9cbeace0e8>, "propsDefinition">> : never;
629
641
  "omfx-export-import-json": typeof wc3392707566c844e39f57097aade4e81c extends {
630
642
  propsDefinition: infer TProp;
631
643
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc3392707566c844e39f57097aade4e81c extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc3392707566c844e39f57097aade4e81c>, "propsDefinition">> : never;
@@ -2649,6 +2661,38 @@ declare global {
2649
2661
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2650
2662
  };
2651
2663
  } : typeof wcc0ba9c7ccef54093bcb0be49e7cf79df;
2664
+ "settings": {
2665
+ "journey": {
2666
+ "blade": typeof wc360199d2428c4f3c9a99b931a9a5f2d1 extends {
2667
+ propsDefinition: infer TProp;
2668
+ } ? {
2669
+ new (...args: any[]): {
2670
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2671
+ };
2672
+ } : typeof wc360199d2428c4f3c9a99b931a9a5f2d1;
2673
+ "menu": typeof wcd91fa8e10e3b4350bb158f9cbeace0e8 extends {
2674
+ propsDefinition: infer TProp;
2675
+ } ? {
2676
+ new (...args: any[]): {
2677
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2678
+ };
2679
+ } : typeof wcd91fa8e10e3b4350bb158f9cbeace0e8;
2680
+ };
2681
+ "journey$": typeof wcb15b9fd985a945748963ae09e292c903 extends {
2682
+ propsDefinition: infer TProp;
2683
+ } ? {
2684
+ new (...args: any[]): {
2685
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2686
+ };
2687
+ } : typeof wcb15b9fd985a945748963ae09e292c903;
2688
+ "pane": typeof wcc0de4753b9fe4004b0f4e6b6b91730ab extends {
2689
+ propsDefinition: infer TProp;
2690
+ } ? {
2691
+ new (...args: any[]): {
2692
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2693
+ };
2694
+ } : typeof wcc0de4753b9fe4004b0f4e6b6b91730ab;
2695
+ };
2652
2696
  "export": {
2653
2697
  "import": {
2654
2698
  "json": typeof wc3392707566c844e39f57097aade4e81c extends {
@@ -3096,15 +3140,6 @@ declare global {
3096
3140
  };
3097
3141
  } : typeof wc379287b1efe64a49a43fcd754d1fd951;
3098
3142
  };
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
3143
  "side": {
3109
3144
  "panel": typeof wc539d199f69934c10a963f142e4f3056d extends {
3110
3145
  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.184-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.184-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",