@omnia/fx 8.0.245-dev → 8.0.247-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 (24) hide show
  1. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesAddBlade.d.ts +52 -66
  2. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesHomeBlade.d.ts +54 -75
  3. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesInfoBlade.d.ts +50 -50
  4. package/internal-do-not-import-from-here/ux/markdown2/commands/EditorCommands.d.ts +6 -3
  5. package/internal-do-not-import-from-here/ux/markdown2/commands/helpers/Nodehelper.d.ts +2 -1
  6. package/internal-do-not-import-from-here/ux/markdown2/models/MarkdownPlugin.d.ts +6 -1
  7. package/internal-do-not-import-from-here/ux/markdown2/parsers/HtmlParser.d.ts +6 -0
  8. package/internal-do-not-import-from-here/ux/markdown2/parsers/MarkdownParser.d.ts +7 -0
  9. package/internal-do-not-import-from-here/ux/markdown2/plugins/colorstyle/ColorStylePlugin.d.ts +3 -0
  10. package/internal-do-not-import-from-here/ux/markdown2/plugins/text/TextPlugin.d.ts +3 -0
  11. package/internal-do-not-import-from-here/ux/markdown2/plugins/typography/TypographyPlugin.d.ts +3 -0
  12. package/internal-do-not-import-from-here/ux/markdown2/plugins/velcron/VelcronPlugin.d.ts +3 -0
  13. package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownStore.d.ts +20 -18
  14. package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownToolbarStore.d.ts +100 -90
  15. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +15 -5
  16. package/internal-do-not-import-from-here/ux/oxide/datatable/RowRenderer.d.ts +73 -1
  17. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +5 -8
  18. package/package.json +2 -2
  19. package/internal-do-not-import-from-here/ux/markdown2/plugins/ColorStylePlugin.d.ts +0 -3
  20. package/internal-do-not-import-from-here/ux/markdown2/plugins/TextPlugin.d.ts +0 -3
  21. package/internal-do-not-import-from-here/ux/markdown2/plugins/TypographyPlugin.d.ts +0 -3
  22. package/internal-do-not-import-from-here/ux/markdown2/plugins/VelcronPlugin.d.ts +0 -3
  23. /package/internal-do-not-import-from-here/ux/markdown2/plugins/{buttons → colorstyle}/ColorButton.d.ts +0 -0
  24. /package/internal-do-not-import-from-here/ux/markdown2/plugins/{buttons → typography}/TypographyButton.d.ts +0 -0
@@ -1,8 +1,7 @@
1
1
  import { ODraggableVariants } from "@omnia/fx-models";
2
- import { DataTableHeader, DefineEmit, DefineProp, DefineSlot, DefineVModel, IDataTableRowRenderer } from "@omnia/fx/ux";
3
- import { Ref, VNodeChild } from "vue";
4
- declare const defaultHeadersValue: any[];
5
- export type DraggableProps = DefineVModel<"", Array<any>, false, null, false, "The draggable items."> & DefineProp<"itemTitle", string | ((item: any) => VNodeChild), false, null, "Specify title property of an item or provide custom render it."> & DefineProp<"itemValue", string | ((item: any) => string), false, null, "Property on supplied items that contains its value."> & DefineProp<"disabledItem", string, false, null, "Specify a class name for items that are disabled for sortable."> & DefineProp<"placeholderClass", string, false, null, "Custom styles of the placeholder."> & DefineProp<"navigable", boolean | Ref<boolean>, false, false, "Show navigate icon for further navigation."> & DefineProp<"hideDraggableIcon", boolean | Ref<boolean>, false, false, "Hide draggable icons."> & DefineProp<"draggableWholeRow", boolean | Ref<boolean>, false, false, "Hide draggable icons."> & DefineProp<"variant", ODraggableVariants, false, "default", "Applies a distinct style to the component."> & DefineProp<"headers", DataTableHeader[], false, typeof defaultHeadersValue, "An array of objects that each describe a header column for data-table variant."> & DefineSlot<"item", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Define a custom item appearance."> & DefineSlot<"append", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Provide extra actions to the end of the item. Applicable in structured variants like List, DataTable,..."> & DefineEmit<"click:navigate", (value: any) => true, "Emit a navigate event."> & DefineEmit<"sort:start", () => true, "Emit a sort start event."> & DefineEmit<"sort:end", () => true, "Emit a sort end event.">;
2
+ import { DefineEmit, DefineProp, DefineSlot, DefineVModel, IDataTableRowRenderer } from "@omnia/fx/ux";
3
+ import { VNodeChild } from "vue";
4
+ export type DraggableProps = DefineVModel<"", Array<any>, false, null, false, "The draggable items."> & DefineProp<"itemTitle", string | ((item: any) => VNodeChild), false, null, "Specify title property of an item or provide custom render it."> & DefineProp<"itemValue", string | ((item: any) => string), false, null, "Property on supplied items that contains its value."> & DefineProp<"disabledItem", string, false, null, "Specify a class name for items that are disabled for sortable."> & DefineProp<"placeholderClass", string, false, null, "Custom styles of the placeholder."> & DefineProp<"variant", ODraggableVariants, false, "default", "Applies a distinct style to the component."> & DefineSlot<"item", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Define a custom item appearance."> & DefineEmit<"sort:start", () => true, "Emit a sort start event."> & DefineEmit<"sort:end", () => true, "Emit a sort end event.">;
6
5
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<DraggableProps>) => {
7
6
  $: import("vue").ComponentInternalInstance;
8
7
  $data: {};
@@ -44,15 +43,13 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<D
44
43
  propsDefinition: import("@omnia/fx/ux").ExtractProps<DraggableProps> & {
45
44
  "v-slots"?: {
46
45
  item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer<any>) => void);
47
- append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer<any>) => void);
48
46
  } & Omit<{
49
47
  default?: import("vue").Slot;
50
- }, "append" | "item">;
48
+ }, "item">;
51
49
  } & {
52
50
  "onSort:end"?: () => any;
53
- "onClick:navigate"?: (value: any) => any;
54
51
  "onSort:start"?: () => any;
55
- } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "itemValue" | "itemTitle" | "disabledItem" | "placeholderClass" | "navigable" | "hideDraggableIcon" | "draggableWholeRow">;
52
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "itemValue" | "itemTitle" | "disabledItem" | "placeholderClass">;
56
53
  } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
57
54
  [key: string]: any;
58
55
  }>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.245-dev",
4
+ "version": "8.0.247-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.245-dev",
23
+ "@omnia/fx-models": "8.0.247-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",
@@ -1,3 +0,0 @@
1
- export declare const colorStylePlugin: () => import("../models/MarkdownPlugin").MarkdownPlugin & {
2
- dispose?: () => void;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const textPlugin: () => import("../models/MarkdownPlugin").MarkdownPlugin & {
2
- dispose?: () => void;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const typographyPlugin: () => import("../models/MarkdownPlugin").MarkdownPlugin & {
2
- dispose?: () => void;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const velcronRendererPlugin: () => import("../models/MarkdownPlugin").MarkdownPlugin & {
2
- dispose?: () => void;
3
- };