@omnia/fx 8.0.95-dev → 8.0.96-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.
@@ -10,7 +10,6 @@ export declare class TimeZoneStore extends Store {
10
10
  localTimeZoneId: () => string;
11
11
  timeZones: () => TimeZoneUnit[];
12
12
  convertToCurrentUserTimeZone: (utcDatetime: string) => dayjs.Dayjs;
13
- convertToTimeZone: (utcDatetime: string, timezone: string) => dayjs.Dayjs;
14
13
  };
15
14
  actions: {
16
15
  ensureTimeZones: import("./Store").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
@@ -518,7 +518,10 @@ export interface OmniaUxLocalization {
518
518
  };
519
519
  TermSet: {
520
520
  TextOnly: string;
521
- MultiValue: string;
521
+ MultiValueTitle: string;
522
+ };
523
+ Identity: {
524
+ MultiValueTitle: string;
522
525
  };
523
526
  InternalName: string;
524
527
  InternalNameInvalidMessage: string;
@@ -1,8 +1,8 @@
1
- import { Guid } from "../../../../models";
1
+ import { HeadingEditorExtensionConfiguration, Guid, GuidValue } from "@omnia/fx/models";
2
2
  export declare const headingEditorExtension: () => {
3
3
  id: Guid;
4
4
  title: string;
5
- getConfiguration(): {
5
+ getConfiguration(): Promise<{
6
6
  nodes: import("@tiptap/core").Node<any, any>[];
7
7
  toolbarItems: {
8
8
  toolbar: {
@@ -21,8 +21,9 @@ export declare const headingEditorExtension: () => {
21
21
  propsDefinition: Omit<Readonly<{} & {}>, never>;
22
22
  };
23
23
  configuration: {
24
- headings: any[];
24
+ headings: GuidValue[];
25
25
  };
26
26
  }[];
27
- };
27
+ }>;
28
+ setOptions(options: HeadingEditorExtensionConfiguration): void;
28
29
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.95-dev",
4
+ "version": "8.0.96-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.95-dev",
23
+ "@omnia/fx-models": "8.0.96-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
28
  "vuetify": "3.4.7",
29
- "vue": "3.4.3",
29
+ "vue": "3.4.4",
30
30
  "tslib": "2.6.2",
31
31
  "typescript": "5.3.2",
32
32
  "@tiptap/vue-3": "2.1.13",