@omnia/fx 8.0.516-dev → 8.0.517-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.
@@ -19,4 +19,5 @@ export interface EnterprisePropertiesTagDisplaySettings extends EnterpriseProper
19
19
  title: string;
20
20
  };
21
21
  }[];
22
+ textOnly?: boolean;
22
23
  }
@@ -24,4 +24,5 @@ export interface EnterprisePropertiesTaxonomyDisplaySettings extends EnterpriseP
24
24
  icon: IIcon;
25
25
  };
26
26
  }[]);
27
+ textOnly?: boolean;
27
28
  }
@@ -115,6 +115,7 @@ export declare function defineLayoutEditorCanvas(settings: LayoutEditorCanvasSet
115
115
  ensureRemoveDeletedBlocks: (layout: import("@omnia/fx-models").Layout) => void;
116
116
  };
117
117
  show: () => import("../../mobile").StoreReturnDefineAction<{
118
+ editingPanel: (action: "show" | "hide" | "toggle") => void;
118
119
  settingsPanel: (action: "show" | "hide" | "toggle") => void;
119
120
  layoutStructurePanel: (action: "show" | "hide" | "toggle") => void;
120
121
  clipboardPanel: (action: "show" | "hide" | "toggle") => void;
@@ -107,6 +107,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
107
107
  ensureRemoveDeletedBlocks: (layout: import("@omnia/fx-models").Layout) => void;
108
108
  };
109
109
  show: () => import("../../mobile").StoreReturnDefineAction<{
110
+ editingPanel: (action: "show" | "hide" | "toggle") => void;
110
111
  settingsPanel: (action: "show" | "hide" | "toggle") => void;
111
112
  layoutStructurePanel: (action: "show" | "hide" | "toggle") => void;
112
113
  clipboardPanel: (action: "show" | "hide" | "toggle") => void;
@@ -109,6 +109,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
109
109
  ensureRemoveDeletedBlocks: (layout: import("@omnia/fx-models").Layout) => void;
110
110
  };
111
111
  show: () => import("../../mobile").StoreReturnDefineAction<{
112
+ editingPanel: (action: "show" | "hide" | "toggle") => void;
112
113
  settingsPanel: (action: "show" | "hide" | "toggle") => void;
113
114
  layoutStructurePanel: (action: "show" | "hide" | "toggle") => void;
114
115
  clipboardPanel: (action: "show" | "hide" | "toggle") => void;
@@ -44,6 +44,7 @@ export declare const useLayoutCanvasEditorStore: () => {
44
44
  ensureRemoveDeletedBlocks: (layout: Layout) => void;
45
45
  };
46
46
  show: () => import("@omnia/fx/stores").StoreReturnDefineAction<{
47
+ editingPanel: (action: "show" | "hide" | "toggle") => void;
47
48
  settingsPanel: (action: "show" | "hide" | "toggle") => void;
48
49
  layoutStructurePanel: (action: "show" | "hide" | "toggle") => void;
49
50
  clipboardPanel: (action: "show" | "hide" | "toggle") => void;
@@ -127,6 +127,7 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
127
127
  ensureRemoveDeletedBlocks: (layout: Layout) => void;
128
128
  };
129
129
  show: () => import("../../../stores").StoreReturnDefineAction<{
130
+ editingPanel: (action: "show" | "hide" | "toggle") => void;
130
131
  settingsPanel: (action: "show" | "hide" | "toggle") => void;
131
132
  layoutStructurePanel: (action: "show" | "hide" | "toggle") => void;
132
133
  clipboardPanel: (action: "show" | "hide" | "toggle") => void;
@@ -120,6 +120,7 @@ export declare const useLayoutCanvasStore: () => {
120
120
  ensureRemoveDeletedBlocks: (layout: Layout) => void;
121
121
  };
122
122
  show: () => import("@omnia/fx/stores").StoreReturnDefineAction<{
123
+ editingPanel: (action: "show" | "hide" | "toggle") => void;
123
124
  settingsPanel: (action: "show" | "hide" | "toggle") => void;
124
125
  layoutStructurePanel: (action: "show" | "hide" | "toggle") => void;
125
126
  clipboardPanel: (action: "show" | "hide" | "toggle") => void;
@@ -21,7 +21,7 @@ export declare const useIconComponent: () => {
21
21
  [x: string]: string | number;
22
22
  };
23
23
  class: (string | String | String[])[];
24
- color: string;
24
+ color: any;
25
25
  };
26
26
  };
27
27
  actions: import("@omnia/fx-models/internal-do-not-import-from-here/shared").StoreReturnDefineAction<{
@@ -1,13 +1,13 @@
1
- import { TagsPropertyDefinition, IPropertyDisplayRenderer, PropertyValueType, Tag, IIcon, TagsDisplaySettings } from "@omnia/fx-models";
1
+ import { TagsPropertyDefinition, IPropertyDisplayRenderer, PropertyValueType, Tag, IIcon, TagsDisplaySettings, ColorValue } from "@omnia/fx-models";
2
2
  import { DefineProp, DefineSlot, DefineVModel, TagsFieldDisplayStyles } from "@omnia/fx/ux";
3
3
  import { VNodeChild } from "vue";
4
4
  export type TagsDisplayProps = IPropertyDisplayRenderer<TagsPropertyDefinition> & ComponentProps;
5
- type ComponentProps = DefineVModel<"", PropertyValueType<TagsPropertyDefinition>> & DefineProp<"displaySettings", TagsDisplaySettings> & DefineProp<"renderTextOnly", boolean, false, false> & DefineProp<"renderTextOnly", boolean, false, false> & DefineProp<"clickableIcon", IIcon> & DefineProp<"appendedTagContents", {
5
+ type ComponentProps = DefineVModel<"", PropertyValueType<TagsPropertyDefinition>> & DefineProp<"displaySettings", TagsDisplaySettings> & DefineProp<"renderTextOnly", boolean, false, false> & DefineProp<"clickableIcon", IIcon> & DefineProp<"appendedTagContents", {
6
6
  [tagName: string]: {
7
7
  icon: IIcon;
8
8
  title: string;
9
9
  };
10
- }[]> & DefineProp<"hideSelected", boolean> & DefineProp<"styles", typeof TagsFieldDisplayStyles> & DefineProp<"contentColor", string> & DefineProp<"onTagClicked", (tag: Tag) => void> & DefineProp<"persistentLabels", boolean, false, false> & DefineSlot<"appendedElement", () => JSX.Element> & DefineSlot<"renderer", (renderProps: {
10
+ }[]> & DefineProp<"hideSelected", boolean> & DefineProp<"styles", typeof TagsFieldDisplayStyles> & DefineProp<"contentColor", ColorValue> & DefineProp<"onTagClicked", (tag: Tag) => void> & DefineProp<"persistentLabels", boolean, false, false> & DefineSlot<"appendedElement", () => JSX.Element> & DefineSlot<"renderer", (renderProps: {
11
11
  tags: Array<Tag>;
12
12
  }) => VNodeChild>;
13
13
  declare const _default: (props: import("@omnia/fx/ux").ExtractProps<TagsDisplayProps> & {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.516-dev",
4
+ "version": "8.0.517-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": "Omnia Digital Workplace AB",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.516-dev",
23
+ "@omnia/fx-models": "8.0.517-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",