@omnia/fx 8.0.111-dev → 8.0.112-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 (43) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.libs.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/manifests/omnia.vendor.manifest.json +1 -1
  3. package/internal-do-not-import-from-here/shared/models/theming/ComponentDefinitions.d.ts +1 -1
  4. package/internal-do-not-import-from-here/shared/models/theming/SpacingSetting.d.ts +6 -0
  5. package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +9 -8
  6. package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +5 -0
  7. package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -0
  8. package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +2 -2
  9. package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +20 -0
  10. package/internal-do-not-import-from-here/ux/backgroundpicker/BackgroundPicker.css.d.ts +4 -0
  11. package/internal-do-not-import-from-here/ux/backgroundpicker/BackgroundPicker.d.ts +109 -0
  12. package/internal-do-not-import-from-here/ux/backgroundpicker/BackgroundPreview.d.ts +69 -0
  13. package/internal-do-not-import-from-here/ux/backgroundpicker/docs/BackgroundPickerExample.d.ts +16 -0
  14. package/internal-do-not-import-from-here/ux/backgroundpicker/docs/ExampleComponents.d.ts +1 -0
  15. package/internal-do-not-import-from-here/ux/backgroundpicker/docs/index.d.ts +1 -0
  16. package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +1 -1
  17. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/ColorSettings.d.ts +23 -23
  18. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +38 -9
  19. package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +1 -1
  20. package/internal-do-not-import-from-here/ux/multitextinput/MultiTextInput.d.ts +4 -0
  21. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +1 -1
  22. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +6 -2
  23. package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +1 -1
  24. package/internal-do-not-import-from-here/ux/oxide/link/Link.d.ts +11 -11
  25. package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/store/ScrollContainerStore.d.ts +36 -4
  26. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +6 -2
  27. package/internal-do-not-import-from-here/ux/oxide/text/Text.css.d.ts +2 -2
  28. package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +11 -11
  29. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfigurationV2.d.ts +65 -410
  30. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +582 -50
  31. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.css.d.ts +2 -4
  32. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +312 -50
  33. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/AnchorLink/AnchorLink.d.ts +5 -104
  34. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/AnchorLink/AnchorLinkMenu.d.ts +4 -104
  35. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/AnchorLink/AnchorLinkNode.d.ts +1 -1
  36. package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaStore.d.ts +2 -2
  37. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +530 -2
  38. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Blueprints.d.ts +15 -1
  39. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Spacing.d.ts +2 -7
  40. package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +5 -5
  41. package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +1 -1
  42. package/internal-do-not-import-from-here/wctypings.d.ts +24 -0
  43. package/package.json +4 -4
@@ -558,7 +558,7 @@ declare const _default: {
558
558
  currentTheme: () => ThemeDefinitionV2;
559
559
  };
560
560
  };
561
- colorValue(color: import("@omnia/fx-models").ColorValue): string;
561
+ colorValue(color: import("@omnia/fx-models").ColorValue | import("@omnia/fx-models").ColorGradientValue): string;
562
562
  readonly colorSchema: import("@omnia/fx-models").ColorSchema;
563
563
  readonly theme: "light" | "dark";
564
564
  readonly base: import("@omnia/fx-models").ColorDefinition;
@@ -3030,7 +3030,7 @@ declare const _default: {
3030
3030
  currentTheme: () => ThemeDefinitionV2;
3031
3031
  };
3032
3032
  };
3033
- colorValue(color: import("@omnia/fx-models").ColorValue): string;
3033
+ colorValue(color: import("@omnia/fx-models").ColorValue | import("@omnia/fx-models").ColorGradientValue): string;
3034
3034
  readonly colorSchema: import("@omnia/fx-models").ColorSchema;
3035
3035
  readonly theme: "light" | "dark";
3036
3036
  readonly base: import("@omnia/fx-models").ColorDefinition;
@@ -5505,7 +5505,7 @@ declare const _default: {
5505
5505
  currentTheme: () => ThemeDefinitionV2;
5506
5506
  };
5507
5507
  };
5508
- colorValue(color: import("@omnia/fx-models").ColorValue): string;
5508
+ colorValue(color: import("@omnia/fx-models").ColorValue | import("@omnia/fx-models").ColorGradientValue): string;
5509
5509
  readonly colorSchema: import("@omnia/fx-models").ColorSchema;
5510
5510
  readonly theme: "light" | "dark";
5511
5511
  readonly base: import("@omnia/fx-models").ColorDefinition;
@@ -7979,7 +7979,7 @@ declare const _default: {
7979
7979
  currentTheme: () => ThemeDefinitionV2;
7980
7980
  };
7981
7981
  };
7982
- colorValue(color: import("@omnia/fx-models").ColorValue): string;
7982
+ colorValue(color: import("@omnia/fx-models").ColorValue | import("@omnia/fx-models").ColorGradientValue): string;
7983
7983
  readonly colorSchema: import("@omnia/fx-models").ColorSchema;
7984
7984
  readonly theme: "light" | "dark";
7985
7985
  readonly base: import("@omnia/fx-models").ColorDefinition;
@@ -10444,7 +10444,7 @@ declare const _default: {
10444
10444
  currentTheme: () => ThemeDefinitionV2;
10445
10445
  };
10446
10446
  };
10447
- colorValue(color: import("@omnia/fx-models").ColorValue): string;
10447
+ colorValue(color: import("@omnia/fx-models").ColorValue | import("@omnia/fx-models").ColorGradientValue): string;
10448
10448
  readonly colorSchema: import("@omnia/fx-models").ColorSchema;
10449
10449
  readonly theme: "light" | "dark";
10450
10450
  readonly base: import("@omnia/fx-models").ColorDefinition;
@@ -499,7 +499,7 @@ export declare function useColorSchemaSetup(props: object): {
499
499
  currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
500
500
  };
501
501
  };
502
- colorValue(color: import("@omnia/fx-models").ColorValue): string;
502
+ colorValue(color: import("@omnia/fx-models").ColorValue | import("@omnia/fx-models").ColorGradientValue): string;
503
503
  readonly colorSchema: import("@omnia/fx-models").ColorSchema;
504
504
  readonly theme: "light" | "dark";
505
505
  readonly base: import("@omnia/fx-models").ColorDefinition;
@@ -3,6 +3,8 @@ import wcf3d75940db51447dbf6719251f5465b0 from './console/components/Console';
3
3
  import wce6b88bd8d41949c8af6fed268ae64430 from './console/components/SocketComponent';
4
4
  import wc8e3534c9960c46b090f442e563d71265 from './ux/alignmentpicker/AlignmentPicker';
5
5
  import wce4889269c6ad440da65f3acdf5bb6152 from './ux/authsetup/AuthSetup';
6
+ import wcbb2e0efa0634452f94d99d1f33ae5b64 from './ux/backgroundpicker/BackgroundPicker';
7
+ import wc349a445fe7a2403b8f98fceff168f87e from './ux/backgroundpicker/BackgroundPreview';
6
8
  import wc057bef6897bb4ba4a089d01c2da1322e from './ux/chrome/ChromeRenderer';
7
9
  import wc638cfe124ab24d0ebd0711c0bd844af6 from './ux/colorpickerV2/ColorPicker';
8
10
  import wc1266389c28034034921b897f788f302d from './ux/colorschemapicker/ColorSchemaPicker';
@@ -403,6 +405,12 @@ declare global {
403
405
  "omfx-authsetup": typeof wce4889269c6ad440da65f3acdf5bb6152 extends {
404
406
  propsDefinition: infer TProp;
405
407
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wce4889269c6ad440da65f3acdf5bb6152 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wce4889269c6ad440da65f3acdf5bb6152>, "propsDefinition">> : never;
408
+ "omfx-background-picker": typeof wcbb2e0efa0634452f94d99d1f33ae5b64 extends {
409
+ propsDefinition: infer TProp;
410
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcbb2e0efa0634452f94d99d1f33ae5b64 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcbb2e0efa0634452f94d99d1f33ae5b64>, "propsDefinition">> : never;
411
+ "omfx-background-preview": typeof wc349a445fe7a2403b8f98fceff168f87e extends {
412
+ propsDefinition: infer TProp;
413
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc349a445fe7a2403b8f98fceff168f87e extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc349a445fe7a2403b8f98fceff168f87e>, "propsDefinition">> : never;
406
414
  "omfx-chrome-renderer": typeof wc057bef6897bb4ba4a089d01c2da1322e extends {
407
415
  propsDefinition: infer TProp;
408
416
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc057bef6897bb4ba4a089d01c2da1322e extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc057bef6897bb4ba4a089d01c2da1322e>, "propsDefinition">> : never;
@@ -1656,6 +1664,22 @@ declare global {
1656
1664
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1657
1665
  };
1658
1666
  } : typeof wce4889269c6ad440da65f3acdf5bb6152;
1667
+ "background": {
1668
+ "picker": typeof wcbb2e0efa0634452f94d99d1f33ae5b64 extends {
1669
+ propsDefinition: infer TProp;
1670
+ } ? {
1671
+ new (...args: any[]): {
1672
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1673
+ };
1674
+ } : typeof wcbb2e0efa0634452f94d99d1f33ae5b64;
1675
+ "preview": typeof wc349a445fe7a2403b8f98fceff168f87e extends {
1676
+ propsDefinition: infer TProp;
1677
+ } ? {
1678
+ new (...args: any[]): {
1679
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1680
+ };
1681
+ } : typeof wc349a445fe7a2403b8f98fceff168f87e;
1682
+ };
1659
1683
  "chrome": {
1660
1684
  "renderer": typeof wc057bef6897bb4ba4a089d01c2da1322e extends {
1661
1685
  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.111-dev",
4
+ "version": "8.0.112-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,13 +20,13 @@
20
20
  ],
21
21
  "author": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.111-dev",
23
+ "@omnia/fx-models": "8.0.112-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",
27
27
  "splitpanes": "2.4.1",
28
- "vuetify": "3.4.10",
29
- "vue": "3.4.14",
28
+ "vuetify": "3.5.1",
29
+ "vue": "3.4.15",
30
30
  "tslib": "2.6.2",
31
31
  "typescript": "5.3.3",
32
32
  "@tiptap/vue-3": "2.1.13",