@omnia/fx 8.0.24-vnext → 8.0.25-vnext

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 (53) hide show
  1. package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +25 -1
  2. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelection.css.d.ts +0 -1
  3. package/internal-do-not-import-from-here/ux/models/DataTable.d.ts +16 -0
  4. package/internal-do-not-import-from-here/ux/models/index.d.ts +1 -0
  5. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +17 -0
  6. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +260 -0
  7. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTableServer.d.ts +277 -0
  8. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTableVirtual.d.ts +593 -0
  9. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.css.d.ts +1 -1
  10. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +26 -0
  11. package/internal-do-not-import-from-here/ux/oxide/panel/docs/BasicPanelTypes.d.ts +46 -0
  12. package/internal-do-not-import-from-here/ux/oxide/panel/docs/PanelAlignment.d.ts +46 -0
  13. package/internal-do-not-import-from-here/ux/oxide/panel/docs/PanelVariants.d.ts +46 -0
  14. package/internal-do-not-import-from-here/ux/oxide/panel/docs/Scrolling.d.ts +46 -0
  15. package/internal-do-not-import-from-here/ux/oxide/panel/docs/SettingsPanel.d.ts +46 -0
  16. package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +14 -9
  17. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +21 -0
  18. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.css.d.ts +1 -0
  19. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +75 -39
  20. package/internal-do-not-import-from-here/ux/oxide/toolbar/docs/ToolbarExamples.d.ts +1 -0
  21. package/internal-do-not-import-from-here/ux/oxide/toolbar/docs/ToolbarIntro.d.ts +46 -0
  22. package/internal-do-not-import-from-here/ux/oxide/toolbar/docs/index.d.ts +1 -0
  23. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +243 -0
  24. package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.css.d.ts +1 -1
  25. package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +21 -0
  26. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/blueprints/BluePrintSelector.css.d.ts +1 -1
  27. package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +70 -1
  28. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +13 -14
  29. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDescriptors.d.ts +2 -3
  30. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +1 -2
  31. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronRenderers.d.ts +62 -6
  32. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronStyles.d.ts +2 -2
  33. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +42 -0
  34. package/internal-do-not-import-from-here/ux/velcron/core/stores/index.d.ts +1 -0
  35. package/internal-do-not-import-from-here/ux/velcron/editor/components/AddComponent.css.d.ts +4 -0
  36. package/internal-do-not-import-from-here/ux/velcron/editor/models/BuiltInDescriptors.d.ts +0 -1
  37. package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +5 -5
  38. package/internal-do-not-import-from-here/ux/velcron/renderer/components/App.d.ts +6 -6
  39. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Button.d.ts +6 -6
  40. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Card.d.ts +6 -6
  41. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Chip.d.ts +6 -6
  42. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Custom.d.ts +6 -6
  43. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Dialog.d.ts +6 -6
  44. package/internal-do-not-import-from-here/ux/velcron/renderer/components/FlexView.d.ts +0 -62
  45. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Icon.d.ts +6 -6
  46. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Image.d.ts +6 -6
  47. package/internal-do-not-import-from-here/ux/velcron/renderer/components/ProgressCircle.d.ts +6 -6
  48. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Text.d.ts +6 -6
  49. package/internal-do-not-import-from-here/ux/velcron/renderer/components/TextInput.d.ts +6 -6
  50. package/internal-do-not-import-from-here/ux/velcron/renderer/components/View.d.ts +6 -6
  51. package/internal-do-not-import-from-here/ux/velcron/renderer/components/WebView.d.ts +6 -6
  52. package/internal-do-not-import-from-here/wctypings.d.ts +6 -0
  53. package/package.json +2 -2
@@ -1,11 +1,11 @@
1
- import { VelcronTextDefinition } from "../../core";
1
+ import { VelcronTextDefinition, VelcronRenderContext } from "../../core";
2
2
  declare const _default: {
3
3
  new (...args: any[]): {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
7
7
  definition: import("vue").Prop<VelcronTextDefinition, VelcronTextDefinition>;
8
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
8
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
9
9
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
10
10
  $attrs: {
11
11
  [x: string]: unknown;
@@ -22,7 +22,7 @@ declare const _default: {
22
22
  $el: any;
23
23
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
24
24
  definition: import("vue").Prop<VelcronTextDefinition, VelcronTextDefinition>;
25
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
25
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
26
26
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
27
27
  beforeCreate?: (() => void) | (() => void)[];
28
28
  created?: (() => void) | (() => void)[];
@@ -45,18 +45,18 @@ declare const _default: {
45
45
  $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;
46
46
  } & Readonly<import("vue").ExtractPropTypes<{
47
47
  definition: import("vue").Prop<VelcronTextDefinition, VelcronTextDefinition>;
48
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
48
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
49
49
  }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
50
50
  __isFragment?: never;
51
51
  __isTeleport?: never;
52
52
  __isSuspense?: never;
53
53
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
54
54
  definition: import("vue").Prop<VelcronTextDefinition, VelcronTextDefinition>;
55
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
55
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
56
56
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
57
57
  propsDefinition: Readonly<{} & {
58
58
  definition?: VelcronTextDefinition;
59
- renderContext?: import("../../core").VelcronRenderContext;
59
+ renderContext?: VelcronRenderContext;
60
60
  }>;
61
61
  };
62
62
  export default _default;
@@ -1,11 +1,11 @@
1
- import { VelcronTextInputDefinition } from "../../core";
1
+ import { VelcronRenderContext, VelcronTextInputDefinition } from "../../core";
2
2
  declare const _default: {
3
3
  new (...args: any[]): {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
7
7
  definition: import("vue").Prop<VelcronTextInputDefinition, VelcronTextInputDefinition>;
8
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
8
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
9
9
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
10
10
  $attrs: {
11
11
  [x: string]: unknown;
@@ -22,7 +22,7 @@ declare const _default: {
22
22
  $el: any;
23
23
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
24
24
  definition: import("vue").Prop<VelcronTextInputDefinition, VelcronTextInputDefinition>;
25
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
25
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
26
26
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
27
27
  beforeCreate?: (() => void) | (() => void)[];
28
28
  created?: (() => void) | (() => void)[];
@@ -45,18 +45,18 @@ declare const _default: {
45
45
  $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;
46
46
  } & Readonly<import("vue").ExtractPropTypes<{
47
47
  definition: import("vue").Prop<VelcronTextInputDefinition, VelcronTextInputDefinition>;
48
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
48
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
49
49
  }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
50
50
  __isFragment?: never;
51
51
  __isTeleport?: never;
52
52
  __isSuspense?: never;
53
53
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
54
54
  definition: import("vue").Prop<VelcronTextInputDefinition, VelcronTextInputDefinition>;
55
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
55
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
56
56
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
57
57
  propsDefinition: Readonly<{} & {
58
58
  definition?: VelcronTextInputDefinition;
59
- renderContext?: import("../../core").VelcronRenderContext;
59
+ renderContext?: VelcronRenderContext;
60
60
  }>;
61
61
  };
62
62
  export default _default;
@@ -1,11 +1,11 @@
1
- import { VelcronViewDefinition } from "../../core";
1
+ import { VelcronRenderContext, VelcronViewDefinition } from "../../core";
2
2
  declare const _default: {
3
3
  new (...args: any[]): {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
7
7
  definition: import("vue").Prop<VelcronViewDefinition, VelcronViewDefinition>;
8
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
8
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
9
9
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
10
10
  $attrs: {
11
11
  [x: string]: unknown;
@@ -22,7 +22,7 @@ declare const _default: {
22
22
  $el: any;
23
23
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
24
24
  definition: import("vue").Prop<VelcronViewDefinition, VelcronViewDefinition>;
25
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
25
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
26
26
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
27
27
  beforeCreate?: (() => void) | (() => void)[];
28
28
  created?: (() => void) | (() => void)[];
@@ -45,18 +45,18 @@ declare const _default: {
45
45
  $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;
46
46
  } & Readonly<import("vue").ExtractPropTypes<{
47
47
  definition: import("vue").Prop<VelcronViewDefinition, VelcronViewDefinition>;
48
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
48
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
49
49
  }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
50
50
  __isFragment?: never;
51
51
  __isTeleport?: never;
52
52
  __isSuspense?: never;
53
53
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
54
54
  definition: import("vue").Prop<VelcronViewDefinition, VelcronViewDefinition>;
55
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
55
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
56
56
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
57
57
  propsDefinition: Readonly<{} & {
58
58
  definition?: VelcronViewDefinition;
59
- renderContext?: import("../../core").VelcronRenderContext;
59
+ renderContext?: VelcronRenderContext;
60
60
  }>;
61
61
  };
62
62
  export default _default;
@@ -1,11 +1,11 @@
1
- import { VelcronWebViewDefinition } from "../../core";
1
+ import { VelcronRenderContext, VelcronWebViewDefinition } from "../../core";
2
2
  declare const _default: {
3
3
  new (...args: any[]): {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
7
7
  definition: import("vue").Prop<VelcronWebViewDefinition, VelcronWebViewDefinition>;
8
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
8
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
9
9
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
10
10
  $attrs: {
11
11
  [x: string]: unknown;
@@ -22,7 +22,7 @@ declare const _default: {
22
22
  $el: any;
23
23
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
24
24
  definition: import("vue").Prop<VelcronWebViewDefinition, VelcronWebViewDefinition>;
25
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
25
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
26
26
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
27
27
  beforeCreate?: (() => void) | (() => void)[];
28
28
  created?: (() => void) | (() => void)[];
@@ -45,18 +45,18 @@ declare const _default: {
45
45
  $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;
46
46
  } & Readonly<import("vue").ExtractPropTypes<{
47
47
  definition: import("vue").Prop<VelcronWebViewDefinition, VelcronWebViewDefinition>;
48
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
48
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
49
49
  }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
50
50
  __isFragment?: never;
51
51
  __isTeleport?: never;
52
52
  __isSuspense?: never;
53
53
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
54
54
  definition: import("vue").Prop<VelcronWebViewDefinition, VelcronWebViewDefinition>;
55
- renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
55
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
56
56
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
57
57
  propsDefinition: Readonly<{} & {
58
58
  definition?: VelcronWebViewDefinition;
59
- renderContext?: import("../../core").VelcronRenderContext;
59
+ renderContext?: VelcronRenderContext;
60
60
  }>;
61
61
  };
62
62
  export default _default;
@@ -98,6 +98,9 @@ import wcbeb97ee8f2a94d1b86980b1736f82e20 from './ux/oxide/btntoggle/ButtonToggl
98
98
  import wcffc99f8d26ae4caf84ece7c13463b6c5 from './ux/oxide/card/Card';
99
99
  import wccd6b8d55c18546d4b1d8c4d9e1d89106 from './ux/oxide/checkbox/Checkbox';
100
100
  import wccdd8102dec85424da156ca516659956e from './ux/oxide/column/Column';
101
+ import wc86e7df28b98d4594be5ab9a3f64dd0cc from './ux/oxide/datatable/DataTable';
102
+ import wc900eaa8c89a9411b93b657be6feaa992 from './ux/oxide/datatable/DataTableServer';
103
+ import wc6013b19c722b4bb781b2380b969f3c77 from './ux/oxide/datatable/DataTableVirtual';
101
104
  import wc2ae3cf98c95443a199d44705ad87d994 from './ux/oxide/dialog/Dialog';
102
105
  import wcd1a4678669114d9293f42409a1080756 from './ux/oxide/divider/Divider';
103
106
  import wc1f535ab2cf154914a9bb104aa46d1e2a from './ux/oxide/expansionpanel/ExpansionPanels';
@@ -311,6 +314,9 @@ declare global {
311
314
  "o-card": typeof wcffc99f8d26ae4caf84ece7c13463b6c5.propsDefinition & VueComponentBaseProps;
312
315
  "o-checkbox": typeof wccd6b8d55c18546d4b1d8c4d9e1d89106.propsDefinition & VueComponentBaseProps;
313
316
  "o-col": typeof wccdd8102dec85424da156ca516659956e.propsDefinition & VueComponentBaseProps;
317
+ "o-data-table": typeof wc86e7df28b98d4594be5ab9a3f64dd0cc.propsDefinition & VueComponentBaseProps;
318
+ "o-data-table-server": typeof wc900eaa8c89a9411b93b657be6feaa992.propsDefinition & VueComponentBaseProps;
319
+ "o-data-table-virtual": typeof wc6013b19c722b4bb781b2380b969f3c77.propsDefinition & VueComponentBaseProps;
314
320
  "o-dialog": typeof wc2ae3cf98c95443a199d44705ad87d994.propsDefinition & VueComponentBaseProps;
315
321
  "o-divider": typeof wcd1a4678669114d9293f42409a1080756.propsDefinition & VueComponentBaseProps;
316
322
  "o-expansion-panels": typeof wc1f535ab2cf154914a9bb104aa46d1e2a.propsDefinition & VueComponentBaseProps;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.24-vnext",
4
+ "version": "8.0.25-vnext",
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.24-vnext",
23
+ "@omnia/fx-models": "8.0.25-vnext",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",