@omnia/fx 8.0.217-dev → 8.0.220-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 (40) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +130 -12
  3. package/internal-do-not-import-from-here/ux/admin/usermanagement/usertypes/tabs/AuthenticationTab.d.ts +2 -2
  4. package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStylePicker.d.ts +6 -1
  5. package/internal-do-not-import-from-here/ux/aurora/styling/UseStyling.d.ts +7 -25
  6. package/internal-do-not-import-from-here/ux/aurora/styling/styles/Blueprints.d.ts +3 -8
  7. package/internal-do-not-import-from-here/ux/aurora/styling/styles/Spacing.d.ts +1 -6
  8. package/internal-do-not-import-from-here/ux/aurora/styling/styles/Typography.d.ts +1 -1
  9. package/internal-do-not-import-from-here/ux/enterpriseproperties/settings/extendedproperty/ExtendedPropertySettings.d.ts +54 -43
  10. package/internal-do-not-import-from-here/ux/markdown/patches/EditorScrollPatch.d.ts +2 -0
  11. package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.stylex.d.ts +53 -0
  12. package/internal-do-not-import-from-here/ux/oxide/btn/Button.stylex.d.ts +1 -0
  13. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.stylex.d.ts +1 -0
  14. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +11 -3
  15. package/internal-do-not-import-from-here/ux/oxide/text/Text.stylex.d.ts +1 -6
  16. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.stylex.d.ts +24 -18
  17. package/internal-do-not-import-from-here/ux/profilecard/ProfileCardRenderer.d.ts +58 -82
  18. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextEditor.d.ts +47 -51
  19. package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeEditor.d.ts +47 -51
  20. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HashTag/HashTagToolbar.d.ts +3 -2
  21. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerEditorExtension.d.ts +48 -68
  22. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerToolbar.d.ts +50 -70
  23. package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +65 -44
  24. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +681 -1061
  25. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentRenderer.d.ts +80 -0
  26. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector copy.d.ts +60 -0
  27. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector.css.d.ts +1 -0
  28. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar copy.d.ts +65 -0
  29. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar.css.d.ts +1 -0
  30. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/models/EditorRenderingHooks.d.ts +7 -0
  31. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +135 -203
  32. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/ImageEditor.d.ts +14 -0
  33. package/internal-do-not-import-from-here/wctypings.d.ts +11 -26
  34. package/package.json +2 -2
  35. package/internal-do-not-import-from-here/ux/oxide/alert/Alert.css.d.ts +0 -1
  36. package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.css.d.ts +0 -22
  37. package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlock.css.d.ts +0 -7
  38. package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlock.d.ts +0 -16
  39. package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlockSettings.css.d.ts +0 -6
  40. package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlockSettings.d.ts +0 -16
@@ -1,5 +1,9 @@
1
+ import { EditorLocation } from "@omnia/fx-models";
1
2
  declare const _default: {
2
3
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
+ location: {
5
+ type: import("vue").PropType<EditorLocation>;
6
+ };
3
7
  settings: {
4
8
  type: import("vue").PropType<any>;
5
9
  };
@@ -74,6 +78,9 @@ declare const _default: {
74
78
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
75
79
  "update:modelValue": (value: any) => true;
76
80
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
81
+ location: {
82
+ type: import("vue").PropType<EditorLocation>;
83
+ };
77
84
  settings: {
78
85
  type: import("vue").PropType<any>;
79
86
  };
@@ -153,6 +160,9 @@ declare const _default: {
153
160
  M: {};
154
161
  Defaults: {};
155
162
  }, Readonly<import("vue").ExtractPropTypes<{
163
+ location: {
164
+ type: import("vue").PropType<EditorLocation>;
165
+ };
156
166
  settings: {
157
167
  type: import("vue").PropType<any>;
158
168
  };
@@ -229,6 +239,9 @@ declare const _default: {
229
239
  __isTeleport?: never;
230
240
  __isSuspense?: never;
231
241
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
242
+ location: {
243
+ type: import("vue").PropType<EditorLocation>;
244
+ };
232
245
  settings: {
233
246
  type: import("vue").PropType<any>;
234
247
  };
@@ -369,6 +382,7 @@ declare const _default: {
369
382
  "v-model"?: any;
370
383
  "onUpdate:modelValue"?: (value: any) => any;
371
384
  modelValue?: any;
385
+ location?: EditorLocation;
372
386
  }>, "onUpdate:modelValue"> & {
373
387
  "onUpdate:modelValue"?: (value: any) => any;
374
388
  };
@@ -443,14 +443,13 @@ import wceb1460af73a8467597c5d0987d38cae5 from './ux/properties/builtins/time/Ti
443
443
  import wcf6b07b9fb080465498768f4fc8c58415 from './ux/properties/builtins/time/TimeEditor';
444
444
  import wcab831db522504b8ea6948fe46978bd31 from './ux/properties/builtins/usertype/UserTypeDisplay';
445
445
  import wc2717acc386ab40198b6dae0986557da3 from './ux/properties/builtins/usertype/UserTypeEditor';
446
- import wccf8f32c9a70e408489a451caa80cd327 from './ux/velcron/blocks/content/ContentBlock';
447
- import wcce1c0a7d513e45ee86564ec4235e712d from './ux/velcron/blocks/content/ContentBlockSettings';
448
446
  import wcc9d01726f5594902bf4de68612b186de from './ux/velcron/blocks/demo/DemoBlock';
449
447
  import wcbbd5168574b64f0486adaf68ba31be49 from './ux/velcron/blocks/demo/DemoBlockSettings';
450
448
  import wc80bd5b0978ea40439001d3d409236382 from './ux/velcron/blocks/velcron/VelcronBlock';
451
449
  import wce8526e8ed3f74e848e0dd747fd4d376d from './ux/velcron/blocks/velcron/VelcronBlockSettings';
452
450
  import wca7db43482a3140998eca19b47d941126 from './ux/velcron/components/contenteditor/VelcronContentEditor';
453
451
  import wcb2999683f82046d6ad05a3c13df8e577 from './ux/velcron/components/contenteditorNew/VelcronContentEditor';
452
+ import wc6d57729e9d8f4a8080e512f6214ee24d from './ux/velcron/components/contenteditorNew/VelcronContentRenderer';
454
453
  import wcb197c5e805cc4d6bb3d012e258560b31 from './ux/velcron/components/definitionpicker/VelcronDefinitionPicker';
455
454
  import wcdabd67ab338243858fe7d1ca24399995 from './ux/velcron/components/propertieseditor/VelcronPropertiesEditor';
456
455
  import wc5688474abe554cabb34c696620eb6be1 from './ux/velcron/renderer/editors/PropertyEditorCreator';
@@ -1858,12 +1857,6 @@ declare global {
1858
1857
  "omfx-properties-usertype-editor": typeof wc2717acc386ab40198b6dae0986557da3 extends {
1859
1858
  propsDefinition: infer TProp;
1860
1859
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc2717acc386ab40198b6dae0986557da3 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc2717acc386ab40198b6dae0986557da3>, "propsDefinition">> : never;
1861
- "omfx-content-block": typeof wccf8f32c9a70e408489a451caa80cd327 extends {
1862
- propsDefinition: infer TProp;
1863
- } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wccf8f32c9a70e408489a451caa80cd327 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wccf8f32c9a70e408489a451caa80cd327>, "propsDefinition">> : never;
1864
- "omfx-content-block-settings": typeof wcce1c0a7d513e45ee86564ec4235e712d extends {
1865
- propsDefinition: infer TProp;
1866
- } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcce1c0a7d513e45ee86564ec4235e712d extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcce1c0a7d513e45ee86564ec4235e712d>, "propsDefinition">> : never;
1867
1860
  "o-demo": typeof wcc9d01726f5594902bf4de68612b186de extends {
1868
1861
  propsDefinition: infer TProp;
1869
1862
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcc9d01726f5594902bf4de68612b186de extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcc9d01726f5594902bf4de68612b186de>, "propsDefinition">> : never;
@@ -1882,6 +1875,9 @@ declare global {
1882
1875
  "omfx-velcron-content-editor-new": typeof wcb2999683f82046d6ad05a3c13df8e577 extends {
1883
1876
  propsDefinition: infer TProp;
1884
1877
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcb2999683f82046d6ad05a3c13df8e577 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcb2999683f82046d6ad05a3c13df8e577>, "propsDefinition">> : never;
1878
+ "omfx-velcron-content-renderer": typeof wc6d57729e9d8f4a8080e512f6214ee24d extends {
1879
+ propsDefinition: infer TProp;
1880
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc6d57729e9d8f4a8080e512f6214ee24d extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc6d57729e9d8f4a8080e512f6214ee24d>, "propsDefinition">> : never;
1885
1881
  "omfx-velcron-definition-picker": typeof wcb197c5e805cc4d6bb3d012e258560b31 extends {
1886
1882
  propsDefinition: infer TProp;
1887
1883
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcb197c5e805cc4d6bb3d012e258560b31 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcb197c5e805cc4d6bb3d012e258560b31>, "propsDefinition">> : never;
@@ -4711,6 +4707,13 @@ declare global {
4711
4707
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
4712
4708
  };
4713
4709
  } : typeof wca7db43482a3140998eca19b47d941126;
4710
+ "renderer": typeof wc6d57729e9d8f4a8080e512f6214ee24d extends {
4711
+ propsDefinition: infer TProp;
4712
+ } ? {
4713
+ new (...args: any[]): {
4714
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
4715
+ };
4716
+ } : typeof wc6d57729e9d8f4a8080e512f6214ee24d;
4714
4717
  };
4715
4718
  "definition": {
4716
4719
  "picker": typeof wcb197c5e805cc4d6bb3d012e258560b31 extends {
@@ -5454,24 +5457,6 @@ declare global {
5454
5457
  };
5455
5458
  } : typeof wcca498a9d23e947afa4c5695f01ba7959;
5456
5459
  };
5457
- "content": {
5458
- "block": {
5459
- "settings": typeof wcce1c0a7d513e45ee86564ec4235e712d extends {
5460
- propsDefinition: infer TProp;
5461
- } ? {
5462
- new (...args: any[]): {
5463
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
5464
- };
5465
- } : typeof wcce1c0a7d513e45ee86564ec4235e712d;
5466
- };
5467
- "block$": typeof wccf8f32c9a70e408489a451caa80cd327 extends {
5468
- propsDefinition: infer TProp;
5469
- } ? {
5470
- new (...args: any[]): {
5471
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
5472
- };
5473
- } : typeof wccf8f32c9a70e408489a451caa80cd327;
5474
- };
5475
5460
  "demo": {
5476
5461
  "block": {
5477
5462
  "settings": typeof wcbbd5168574b64f0486adaf68ba31be49 extends {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.217-dev",
4
+ "version": "8.0.220-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.217-dev",
23
+ "@omnia/fx-models": "8.0.220-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",
@@ -1 +0,0 @@
1
- export declare const AlertStyles: {};
@@ -1,22 +0,0 @@
1
- import { ColorDefinition } from "../../velcron/core";
2
- import { useColorSchemaSetup } from "../..";
3
- import { OAppBarTypes } from "@omnia/fx-models";
4
- export declare const AppbarStyles: {
5
- templateTitle: string;
6
- content: string;
7
- wrapper: (variant: OAppBarTypes, colors: ReturnType<typeof useColorSchemaSetup>) => string;
8
- navigation: (color: ColorDefinition) => string;
9
- navigationIcon: {
10
- buttonHeader: string;
11
- container: string;
12
- menuItems: string;
13
- menuOpen: string;
14
- line: (color: string) => string;
15
- line1: string;
16
- line1Open: string;
17
- line2: string;
18
- line2Open: string;
19
- line3: string;
20
- line3Open: string;
21
- };
22
- };
@@ -1,7 +0,0 @@
1
- import { ColorDefinition } from "@omnia/fx-models";
2
- export declare const ContentBlockStyles: {
3
- contentWrapper: (items: number) => string;
4
- itemWrapper: string;
5
- selectedItem: string;
6
- toolBar: (colorDefinition: ColorDefinition) => string;
7
- };
@@ -1,16 +0,0 @@
1
- declare const _default: {
2
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element | JSX.Element[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
3
- P: {};
4
- B: {};
5
- D: {};
6
- C: {};
7
- M: {};
8
- Defaults: {};
9
- }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element | JSX.Element[], {}, {}, {}, {}>;
10
- __isFragment?: never;
11
- __isTeleport?: never;
12
- __isSuspense?: never;
13
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element | JSX.Element[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
14
- propsDefinition: Omit<Readonly<{} & {}>, never>;
15
- };
16
- export default _default;
@@ -1,6 +0,0 @@
1
- declare const _default: {
2
- container: {
3
- fontSize: number;
4
- };
5
- };
6
- export default _default;
@@ -1,16 +0,0 @@
1
- declare const _default: {
2
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
3
- P: {};
4
- B: {};
5
- D: {};
6
- C: {};
7
- M: {};
8
- Defaults: {};
9
- }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
10
- __isFragment?: never;
11
- __isTeleport?: never;
12
- __isSuspense?: never;
13
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
14
- propsDefinition: Omit<Readonly<{} & {}>, never>;
15
- };
16
- export default _default;