@omnia/fx 8.0.524-dev → 8.0.526-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.
- package/internal-do-not-import-from-here/ux/admin/usermanagement/groups/GroupDetailBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/admin/usermanagement/usertypes/UserTypeDeleteDialog.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/management/blades/CreateItemBlade.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/GeneralTab.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningwizard/AppProvisioningWizard.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstancePermissionsVueComponent.d.ts +11 -21
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppProvisioningComponentBase.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/editorchrome/EditorChrome.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/editorchrome/stores/EditorChromeStoreV2.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/editorchrome/toolbars/HeaderToolbar.d.ts +6 -3
- package/internal-do-not-import-from-here/ux/governancedashboard/BarChartIndicator.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/governancedashboard/BarChartIndicator.stylex.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/DefineLayoutEditorCanvas.d.ts +127 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.stylex.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvasV2.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasEditorStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStoreV2.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/Slider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.d.ts +13 -442
- package/internal-do-not-import-from-here/ux/models/BarChartIndicatorStyles.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/nodes/MediaPickerNodeView.d.ts +20 -85
- package/internal-do-not-import-from-here/ux/social/templates/LikeListingTemplate.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/blade/Shared.d.ts +19 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor_old.d.ts +27 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/helpers/ConfigurationHelper.d.ts +43 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/DefineDefaultView.d.ts +58 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/actions/CanvasActions.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/actions/CheckedOutActions.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/actions/NotCheckedOutActions.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/actions/PanelActions.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/stores/VersionedLayoutEditorStoreV2.d.ts +60 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +27 -10
- package/package.json +4 -4
- package/internal-do-not-import-from-here/ux/governancedashboard/BarChartIndicator.css.d.ts +0 -1
package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor.d.ts
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
import { ServiceContainerContext } from "@omnia/fx";
|
2
2
|
import { guid, IIcon } from "@omnia/fx-models";
|
3
|
-
import { DefineEmit,
|
4
|
-
import {
|
3
|
+
import { DefineEmit, VersionedLayoutEditorSettings } from "@omnia/fx/ux";
|
4
|
+
import { useVersionedLayoutEditorStore } from "../stores/VersionedLayoutEditorStoreV2";
|
5
5
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
6
|
+
settings?: VersionedLayoutEditorSettings<import("@omnia/fx-models").VersionedLayoutDefinition>;
|
7
|
+
} & {
|
6
8
|
appInstanceId?: guid;
|
7
9
|
} & {
|
8
10
|
icon?: IIcon;
|
@@ -12,16 +14,14 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
12
14
|
subTitle?: string;
|
13
15
|
} & {
|
14
16
|
serviceContainerContext?: ServiceContainerContext;
|
15
|
-
} &
|
16
|
-
|
17
|
+
} & {
|
18
|
+
getApi?: (store: ReturnType<typeof useVersionedLayoutEditorStore>) => void;
|
19
|
+
} & DefineEmit<"closeEditor", () => void>> & {
|
17
20
|
onCloseEditor?: () => any;
|
18
21
|
} & {
|
19
|
-
"v-slots"?: {
|
20
|
-
navigationDrawerLeft?: () => JSX.Element;
|
21
|
-
navigationDrawerBottom?: () => JSX.Element;
|
22
|
-
} & Omit<{
|
22
|
+
"v-slots"?: {} & Omit<{
|
23
23
|
default?: import("vue").Slot;
|
24
24
|
$stable?: boolean;
|
25
|
-
},
|
26
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "title" | "appInstanceId" | "serviceContainerContext" | "subTitle" | "
|
25
|
+
}, never>;
|
26
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "title" | "settings" | "appInstanceId" | "serviceContainerContext" | "subTitle" | "getApi" | "emit:closeEditor"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
27
27
|
export default _default;
|
package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor_old.d.ts
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
import { ServiceContainerContext } from "@omnia/fx";
|
2
|
+
import { guid, IIcon } from "@omnia/fx-models";
|
3
|
+
import { DefineEmit, DefineSlot } from "@omnia/fx/ux";
|
4
|
+
import { VersionedLayoutEditorApi } from "./IVersionedLayoutEditor";
|
5
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
6
|
+
appInstanceId?: guid;
|
7
|
+
} & {
|
8
|
+
icon?: IIcon;
|
9
|
+
} & {
|
10
|
+
title?: string;
|
11
|
+
} & {
|
12
|
+
subTitle?: string;
|
13
|
+
} & {
|
14
|
+
serviceContainerContext?: ServiceContainerContext;
|
15
|
+
} & DefineEmit<"getApi", (api: VersionedLayoutEditorApi) => void> & DefineEmit<"closeEditor", () => void> & DefineSlot<"navigationDrawerLeft", () => JSX.Element> & DefineSlot<"navigationDrawerBottom", () => JSX.Element>> & {
|
16
|
+
onGetApi?: (api: VersionedLayoutEditorApi) => any;
|
17
|
+
onCloseEditor?: () => any;
|
18
|
+
} & {
|
19
|
+
"v-slots"?: {
|
20
|
+
navigationDrawerLeft?: () => JSX.Element;
|
21
|
+
navigationDrawerBottom?: () => JSX.Element;
|
22
|
+
} & Omit<{
|
23
|
+
default?: import("vue").Slot;
|
24
|
+
$stable?: boolean;
|
25
|
+
}, "navigationDrawerLeft" | "navigationDrawerBottom">;
|
26
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "title" | "appInstanceId" | "serviceContainerContext" | "subTitle" | "emit:getApi" | "emit:closeEditor" | "slot:navigationDrawerLeft" | "slot:navigationDrawerBottom"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
27
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/versionedlayout/editor/helpers/ConfigurationHelper.d.ts
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
import { ChromeActionItem, EditorChromeConfiguration } from "@omnia/fx-models";
|
2
|
+
export declare class ConfigurationHelper {
|
3
|
+
/**
|
4
|
+
* Ensures an array exists, returns empty array if undefined
|
5
|
+
*/
|
6
|
+
static ensureArray<T>(array: T[] | undefined): T[];
|
7
|
+
/**
|
8
|
+
* Ensures footer toolbar exists on configuration
|
9
|
+
*/
|
10
|
+
static ensureFooterToolbar(configuration: EditorChromeConfiguration): void;
|
11
|
+
/**
|
12
|
+
* Ensures header toolbar exists on configuration
|
13
|
+
*/
|
14
|
+
static ensureHeaderToolbar(configuration: EditorChromeConfiguration): void;
|
15
|
+
/**
|
16
|
+
* Adds an action to an array if it doesn't already exist (based on id)
|
17
|
+
*/
|
18
|
+
static addActionToArray(actions: Array<ChromeActionItem>, action: ChromeActionItem): void;
|
19
|
+
/**
|
20
|
+
* Adds an action to the left footer toolbar actions of configuration(s)
|
21
|
+
*/
|
22
|
+
static addActionToLeftFooter(configuration: EditorChromeConfiguration | EditorChromeConfiguration[], action: ChromeActionItem): void;
|
23
|
+
/**
|
24
|
+
* Adds an action to the right footer toolbar actions of configuration(s)
|
25
|
+
*/
|
26
|
+
static addActionToRightFooter(configuration: EditorChromeConfiguration | EditorChromeConfiguration[], action: ChromeActionItem): void;
|
27
|
+
/**
|
28
|
+
* Adds an action to the center footer toolbar actions of configuration(s)
|
29
|
+
*/
|
30
|
+
static addActionToCenterFooter(configuration: EditorChromeConfiguration | EditorChromeConfiguration[], action: ChromeActionItem): void;
|
31
|
+
/**
|
32
|
+
* Adds an action to the extended right footer toolbar actions of configuration(s)
|
33
|
+
*/
|
34
|
+
static addActionToExtendedRightFooter(configuration: EditorChromeConfiguration | EditorChromeConfiguration[], action: ChromeActionItem): void;
|
35
|
+
/**
|
36
|
+
* Adds multiple actions to a specific toolbar location
|
37
|
+
*/
|
38
|
+
static addActionsToToolbar(configuration: EditorChromeConfiguration | EditorChromeConfiguration[], actions: ChromeActionItem[], location: "left" | "right" | "center" | "extendedRight"): void;
|
39
|
+
/**
|
40
|
+
* Ensures all standard toolbar arrays exist on configuration(s)
|
41
|
+
*/
|
42
|
+
static ensureAllToolbars(configuration: EditorChromeConfiguration | EditorChromeConfiguration[]): void;
|
43
|
+
}
|
package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/DefineDefaultView.d.ts
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
import { EditorChromeConfiguration, guid } from "@omnia/fx/models";
|
2
|
+
export declare const defineDefaultEditorView: (param1: EditorChromeConfiguration, param2: {
|
3
|
+
state: {
|
4
|
+
id: guid;
|
5
|
+
settings: import("../..").VersionedLayoutEditorSettings<import("@omnia/fx-models").VersionedLayoutDefinition>;
|
6
|
+
active: {
|
7
|
+
versionedLayout: import("@omnia/fx-models").VersionedLayout;
|
8
|
+
layout: import("@omnia/fx-models").Layout;
|
9
|
+
versionedData: import("@omnia/fx-models").IVersionedData<import("@omnia/fx-models").VersionedLayoutDefinition>;
|
10
|
+
};
|
11
|
+
views: import("../../stores/VersionedLayoutEditorStoreV2").EditorViews;
|
12
|
+
chrome: {
|
13
|
+
title: string;
|
14
|
+
subTitle: string;
|
15
|
+
};
|
16
|
+
panels: {};
|
17
|
+
};
|
18
|
+
events: import("../../../mobile").StoreEvents<{
|
19
|
+
id: guid;
|
20
|
+
settings: import("../..").VersionedLayoutEditorSettings<import("@omnia/fx-models").VersionedLayoutDefinition>;
|
21
|
+
active: {
|
22
|
+
versionedLayout: import("@omnia/fx-models").VersionedLayout;
|
23
|
+
layout: import("@omnia/fx-models").Layout;
|
24
|
+
versionedData: import("@omnia/fx-models").IVersionedData<import("@omnia/fx-models").VersionedLayoutDefinition>;
|
25
|
+
};
|
26
|
+
views: import("../../stores/VersionedLayoutEditorStoreV2").EditorViews;
|
27
|
+
chrome: {
|
28
|
+
title: string;
|
29
|
+
subTitle: string;
|
30
|
+
};
|
31
|
+
panels: {};
|
32
|
+
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
33
|
+
actions: import("../../../mobile").StoreReturnDefineAction<{
|
34
|
+
layout: () => {
|
35
|
+
set: (layout: import("@omnia/fx-models").VersionedLayout) => Promise<void>;
|
36
|
+
setDefault: () => Promise<void>;
|
37
|
+
};
|
38
|
+
editor: () => {
|
39
|
+
set: {
|
40
|
+
mode: (mode: import("@omnia/fx-models").LayoutCanvasEditorMode) => void;
|
41
|
+
toReadMode: () => void;
|
42
|
+
};
|
43
|
+
};
|
44
|
+
init: (editorChromeStore: ReturnType<typeof import("../../..").useEditorChromeStore>, views: import("../../stores/VersionedLayoutEditorStoreV2").EditorViews) => void;
|
45
|
+
}>;
|
46
|
+
get: {
|
47
|
+
editorMode: () => import("@omnia/fx-models").LayoutCanvasEditorMode;
|
48
|
+
canvasMode: () => import("@omnia/fx-models").LayoutCanvasMode;
|
49
|
+
};
|
50
|
+
rules: {};
|
51
|
+
} & {
|
52
|
+
dispose?: () => void;
|
53
|
+
}) => {
|
54
|
+
view: {
|
55
|
+
id: guid;
|
56
|
+
configurations: EditorChromeConfiguration[];
|
57
|
+
};
|
58
|
+
};
|
package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/actions/CanvasActions.d.ts
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
import { ChromeActionItem } from "@omnia/fx-models";
|
2
|
+
import { useVersionedLayoutEditorStore } from "../../../stores/VersionedLayoutEditorStoreV2";
|
3
|
+
export declare function useCanvasActions(editorStore: ReturnType<typeof useVersionedLayoutEditorStore>): {
|
4
|
+
preview: ChromeActionItem;
|
5
|
+
design: ChromeActionItem;
|
6
|
+
};
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { ChromeActionItem } from "@omnia/fx-models";
|
2
|
+
import { useVersionedLayoutEditorStore } from "../../../stores/VersionedLayoutEditorStoreV2";
|
3
|
+
export declare function useCheckedOutActions(editorStore: ReturnType<typeof useVersionedLayoutEditorStore>): {
|
4
|
+
discardChanges: ChromeActionItem;
|
5
|
+
saveAsDraft: ChromeActionItem;
|
6
|
+
publish: ChromeActionItem;
|
7
|
+
};
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { ChromeActionItem } from "@omnia/fx-models";
|
2
|
+
import { useVersionedLayoutEditorStore } from "../../../stores/VersionedLayoutEditorStoreV2";
|
3
|
+
export declare function useNotCheckedOutActions(editorStore: ReturnType<typeof useVersionedLayoutEditorStore>): {
|
4
|
+
takeControl: ChromeActionItem;
|
5
|
+
edit: ChromeActionItem;
|
6
|
+
delete: ChromeActionItem;
|
7
|
+
close: ChromeActionItem;
|
8
|
+
};
|
package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/actions/PanelActions.d.ts
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
import { ChromeActionItem } from "@omnia/fx-models";
|
2
|
+
import { useVersionedLayoutEditorStore } from "../../../stores/VersionedLayoutEditorStoreV2";
|
3
|
+
export declare function usePanelActions(editorStore: ReturnType<typeof useVersionedLayoutEditorStore>): {
|
4
|
+
versionHistory: ChromeActionItem;
|
5
|
+
statistics: ChromeActionItem;
|
6
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./DefineDefaultView";
|
package/internal-do-not-import-from-here/ux/versionedlayout/stores/VersionedLayoutEditorStoreV2.d.ts
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
import { EditorChromeView, guid, IVersionedData, Layout, LayoutCanvasEditorMode, VersionedLayout, VersionedLayoutDefinition } from "@omnia/fx-models";
|
2
|
+
import { useEditorChromeStore, useLayoutCanvasStore, VersionedLayoutEditorSettings } from "@omnia/fx/ux";
|
3
|
+
export interface EditorViews {
|
4
|
+
default: () => {
|
5
|
+
view: EditorChromeView;
|
6
|
+
layoutStore: ReturnType<typeof useLayoutCanvasStore>;
|
7
|
+
};
|
8
|
+
}
|
9
|
+
export declare const useVersionedLayoutEditorStore: () => {
|
10
|
+
state: {
|
11
|
+
id: guid;
|
12
|
+
settings: VersionedLayoutEditorSettings<VersionedLayoutDefinition>;
|
13
|
+
active: {
|
14
|
+
versionedLayout: VersionedLayout;
|
15
|
+
layout: Layout;
|
16
|
+
versionedData: IVersionedData<VersionedLayoutDefinition>;
|
17
|
+
};
|
18
|
+
views: EditorViews;
|
19
|
+
chrome: {
|
20
|
+
title: string;
|
21
|
+
subTitle: string;
|
22
|
+
};
|
23
|
+
panels: {};
|
24
|
+
};
|
25
|
+
events: import("@omnia/fx/stores").StoreEvents<{
|
26
|
+
id: guid;
|
27
|
+
settings: VersionedLayoutEditorSettings<VersionedLayoutDefinition>;
|
28
|
+
active: {
|
29
|
+
versionedLayout: VersionedLayout;
|
30
|
+
layout: Layout;
|
31
|
+
versionedData: IVersionedData<VersionedLayoutDefinition>;
|
32
|
+
};
|
33
|
+
views: EditorViews;
|
34
|
+
chrome: {
|
35
|
+
title: string;
|
36
|
+
subTitle: string;
|
37
|
+
};
|
38
|
+
panels: {};
|
39
|
+
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
40
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
41
|
+
layout: () => {
|
42
|
+
set: (layout: VersionedLayout) => Promise<void>;
|
43
|
+
setDefault: () => Promise<void>;
|
44
|
+
};
|
45
|
+
editor: () => {
|
46
|
+
set: {
|
47
|
+
mode: (mode: LayoutCanvasEditorMode) => void;
|
48
|
+
toReadMode: () => void;
|
49
|
+
};
|
50
|
+
};
|
51
|
+
init: (editorChromeStore: ReturnType<typeof useEditorChromeStore>, views: EditorViews) => void;
|
52
|
+
}>;
|
53
|
+
get: {
|
54
|
+
editorMode: () => LayoutCanvasEditorMode;
|
55
|
+
canvasMode: () => import("@omnia/fx-models").LayoutCanvasMode;
|
56
|
+
};
|
57
|
+
rules: {};
|
58
|
+
} & {
|
59
|
+
dispose?: () => void;
|
60
|
+
};
|
@@ -148,7 +148,8 @@ import wc21a1f20b3d404602853049c1c8b8da2f from './ux/userpresence/UserPresence';
|
|
148
148
|
import wc30289e2b58ff48b0aabb3cb3732c3038 from './ux/usertypelayout/UserTypeLayoutRenderer';
|
149
149
|
import wc90cfd68bb4e04f67bfd5677bdf4af59d from './ux/validation/FieldValidation';
|
150
150
|
import wcba03fc7e6921468289c0a0ffe0cf942e from './ux/versionedlayout/renderer/VersionedLayoutRenderer';
|
151
|
-
import wc73154f51a92944acbe248779a3fa7ef5 from './ux/versionedlayout/editor/
|
151
|
+
import wc73154f51a92944acbe248779a3fa7ef5 from './ux/versionedlayout/editor/VersionedLayoutEditor_old';
|
152
|
+
import wcf61a88097aa748dbb99b691f78da571a from './ux/versionedlayout/editor/VersionedLayoutEditor';
|
152
153
|
import wc32a6ca3074384eb4bcef68e9cd49a334 from './ux/versionedlayout/editor/panels/versionhistory/VersionHistory';
|
153
154
|
import wcf024796066784669a26452b2da403b70 from './ux/versionedlayout/editor/panels/Panels';
|
154
155
|
import wcc88e2566b07a4680aef7f575f5c5641b from './ux/versionedlayout/controller/VersionedLayoutController';
|
@@ -257,6 +258,7 @@ import wc5d6ec741cf6e4d8ab005abdda288ceed from './ux/layoutcanvas/layoutblock/La
|
|
257
258
|
import wc0b2ee63495854227a082987161a9e641 from './ux/layoutcanvas/renderer/LayoutBlockRendererHelper';
|
258
259
|
import wc16631fca46634e1b8c44401400bbf6ef from './ux/layoutcanvas/renderer/InternalLayoutBlockSettingsHelper';
|
259
260
|
import wcf346db89a53b404690b1795429fb0162 from './ux/layoutcanvas/renderer/LayoutRendererCanvas';
|
261
|
+
import wc100134c612ae49f1a7ab9e89abe8af5b from './ux/layoutcanvas/renderer/LayoutRendererCanvasV2';
|
260
262
|
import wc96c7e84dfb66450796fe123aea7999c5 from './ux/mediagallery/view/PhotoWallWithSliderDisplayRenderer';
|
261
263
|
import wcc15cd6402e584ab18c73ed2b5e3eded9 from './ux/mediagallery/view/MediaDisplayRenderer';
|
262
264
|
import wc29f45ded4fb4479fab6fd6fd79505642 from './ux/mediapickerV2/chrome/MediaPicker';
|
@@ -2597,13 +2599,6 @@ declare global {
|
|
2597
2599
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2598
2600
|
};
|
2599
2601
|
} : typeof wcba03fc7e6921468289c0a0ffe0cf942e;
|
2600
|
-
"controller": typeof wcc88e2566b07a4680aef7f575f5c5641b extends {
|
2601
|
-
propsDefinition: infer TProp;
|
2602
|
-
} ? {
|
2603
|
-
new (...args: any[]): {
|
2604
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2605
|
-
};
|
2606
|
-
} : typeof wcc88e2566b07a4680aef7f575f5c5641b;
|
2607
2602
|
"editor": (typeof wc73154f51a92944acbe248779a3fa7ef5 extends {
|
2608
2603
|
propsDefinition: infer TProp;
|
2609
2604
|
} ? {
|
@@ -2611,6 +2606,13 @@ declare global {
|
|
2611
2606
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2612
2607
|
};
|
2613
2608
|
} : typeof wc73154f51a92944acbe248779a3fa7ef5) & {
|
2609
|
+
"v2": typeof wcf61a88097aa748dbb99b691f78da571a extends {
|
2610
|
+
propsDefinition: infer TProp;
|
2611
|
+
} ? {
|
2612
|
+
new (...args: any[]): {
|
2613
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2614
|
+
};
|
2615
|
+
} : typeof wcf61a88097aa748dbb99b691f78da571a;
|
2614
2616
|
"chrome": typeof wc177046bfd171495bbce70d1cd9242fa1 extends {
|
2615
2617
|
propsDefinition: infer TProp;
|
2616
2618
|
} ? {
|
@@ -2619,6 +2621,13 @@ declare global {
|
|
2619
2621
|
};
|
2620
2622
|
} : typeof wc177046bfd171495bbce70d1cd9242fa1;
|
2621
2623
|
};
|
2624
|
+
"controller": typeof wcc88e2566b07a4680aef7f575f5c5641b extends {
|
2625
|
+
propsDefinition: infer TProp;
|
2626
|
+
} ? {
|
2627
|
+
new (...args: any[]): {
|
2628
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2629
|
+
};
|
2630
|
+
} : typeof wcc88e2566b07a4680aef7f575f5c5641b;
|
2622
2631
|
"blade": {
|
2623
2632
|
"builder": typeof wc35ec8e8c3b6e45858afd0b1832eef250 extends {
|
2624
2633
|
propsDefinition: infer TProp;
|
@@ -3334,13 +3343,21 @@ declare global {
|
|
3334
3343
|
};
|
3335
3344
|
};
|
3336
3345
|
"renderer": {
|
3337
|
-
"canvas": typeof wcf346db89a53b404690b1795429fb0162 extends {
|
3346
|
+
"canvas": (typeof wcf346db89a53b404690b1795429fb0162 extends {
|
3338
3347
|
propsDefinition: infer TProp;
|
3339
3348
|
} ? {
|
3340
3349
|
new (...args: any[]): {
|
3341
3350
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3342
3351
|
};
|
3343
|
-
} : typeof wcf346db89a53b404690b1795429fb0162
|
3352
|
+
} : typeof wcf346db89a53b404690b1795429fb0162) & {
|
3353
|
+
"v2": typeof wc100134c612ae49f1a7ab9e89abe8af5b extends {
|
3354
|
+
propsDefinition: infer TProp;
|
3355
|
+
} ? {
|
3356
|
+
new (...args: any[]): {
|
3357
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3358
|
+
};
|
3359
|
+
} : typeof wc100134c612ae49f1a7ab9e89abe8af5b;
|
3360
|
+
};
|
3344
3361
|
};
|
3345
3362
|
"background": {
|
3346
3363
|
"settings": typeof wcf5cf0b4975644d688124880ae533869e extends {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.526-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,20 +20,20 @@
|
|
20
20
|
],
|
21
21
|
"author": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.526-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
27
27
|
"splitpanes": "3.2.0",
|
28
28
|
"vue": "3.5.18",
|
29
|
-
"vuetify": "3.9.
|
29
|
+
"vuetify": "3.9.4",
|
30
30
|
"tslib": "2.6.2",
|
31
31
|
"typescript": "5.8.2",
|
32
32
|
"@tiptap/vue-3": "2.1.13",
|
33
33
|
"@tiptap/pm": "2.1.13",
|
34
34
|
"@tiptap/suggestion": "2.1.13",
|
35
35
|
"@tiptap/starter-kit": "2.1.13",
|
36
|
-
"axios": "1.
|
36
|
+
"axios": "1.11.0",
|
37
37
|
"mousetrap": "1.6.1",
|
38
38
|
"@stylexjs/stylex": "0.7.5"
|
39
39
|
},
|
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|