@omnia/fx 8.0.513-dev → 8.0.515-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/layoutcanvas/editor/DefineLayoutEditorCanvas.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutBlockRendererHelper.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/links/LinkPicker.d.ts +10 -44
- package/internal-do-not-import-from-here/ux/links/factory/LinkItemFactory.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/models/linkpicker/LinkPickerRegistration.d.ts +2 -2
- package/internal-do-not-import-from-here/wctypings.d.ts +2 -11
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/links/LinkPickerV2.d.ts +0 -18
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/DefineLayoutEditorCanvas.d.ts
CHANGED
@@ -3,7 +3,7 @@ import { useEditorChromeStore, useLayoutCanvasStore } from "@omnia/fx/ux";
|
|
3
3
|
export interface LayoutEditorCanvasSettings {
|
4
4
|
blockProvider?: string;
|
5
5
|
chromeStore: ReturnType<typeof useEditorChromeStore>;
|
6
|
-
layoutCanvasStore
|
6
|
+
layoutCanvasStore?: ReturnType<typeof useLayoutCanvasStore>;
|
7
7
|
mediaContext?: ILayoutMediaContext;
|
8
8
|
fileContext?: ILayoutFileContext;
|
9
9
|
}
|
package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutBlockRendererHelper.d.ts
CHANGED
@@ -117,8 +117,8 @@ declare const _default: {
|
|
117
117
|
};
|
118
118
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
119
119
|
propsDefinition: Omit<Readonly<{} & {
|
120
|
-
blockId?: guid;
|
121
120
|
layoutProvider?: string;
|
121
|
+
blockId?: guid;
|
122
122
|
blockRenderer?: () => JSX.Element;
|
123
123
|
settingsStorage?: ISettingsStorage<any>;
|
124
124
|
isEditMode?: boolean;
|
@@ -1,54 +1,20 @@
|
|
1
1
|
import { LinkItem, LinkProviderId } from "@omnia/fx-models";
|
2
|
-
import { DefineEmit, DefineSlot } from "@omnia/fx/ux";
|
3
|
-
import "./LinkPicker.css";
|
4
|
-
import { LinkPickerRegistration } from "@omnia/fx/ux";
|
5
|
-
export declare const LinkPickerVariantDefinitions: readonly ["default", "dialog"];
|
6
|
-
export type LinkPickerVariant = typeof LinkPickerVariantDefinitions[number];
|
7
|
-
export declare const LinkPickerVariantTypesName = "LinkPickerVariant";
|
8
2
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
9
|
-
"emit:update:
|
3
|
+
"emit:update:modelValue": (value: LinkItem) => void;
|
10
4
|
} & {
|
11
|
-
"v-model
|
5
|
+
"v-model"?: LinkItem;
|
12
6
|
} & {
|
13
|
-
|
7
|
+
modelValue?: LinkItem;
|
14
8
|
} & {
|
15
|
-
|
9
|
+
allowProviders?: LinkProviderId[];
|
16
10
|
} & {
|
17
|
-
|
11
|
+
height?: number;
|
12
|
+
}> & {
|
13
|
+
"onUpdate:modelValue"?: (value: LinkItem) => any;
|
18
14
|
} & {
|
19
|
-
|
20
|
-
} & {
|
21
|
-
title?: string;
|
22
|
-
} & {
|
23
|
-
editMode?: boolean;
|
24
|
-
} & {
|
25
|
-
selectableProviders?: LinkProviderId[];
|
26
|
-
} & {
|
27
|
-
styles?: {
|
28
|
-
toolbar?: import("typestyle/lib/types").NestedCSSProperties;
|
29
|
-
closeButton?: import("typestyle/lib/types").NestedCSSProperties;
|
30
|
-
heightWrapper?: import("typestyle/lib/types").NestedCSSProperties;
|
31
|
-
wrapper?: import("typestyle/lib/types").NestedCSSProperties;
|
32
|
-
leftPanel?: import("typestyle/lib/types").NestedCSSProperties;
|
33
|
-
leftPanelContainer?: import("typestyle/lib/types").NestedCSSProperties;
|
34
|
-
leftPanelMenuItemIcon?: import("typestyle/lib/types").NestedCSSProperties;
|
35
|
-
leftPanelMenuItemTitle?: import("typestyle/lib/types").NestedCSSProperties;
|
36
|
-
leftPanelMenuItemContainer?: (theming: import("@omnia/fx/ux").ITheming, selected: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
37
|
-
rightPanelWrapper?: import("typestyle/lib/types").NestedCSSProperties;
|
38
|
-
rightPanelContent?: import("typestyle/lib/types").NestedCSSProperties;
|
39
|
-
};
|
40
|
-
} & DefineEmit<"configureProviders", (providers: Array<LinkPickerRegistration>) => void> & DefineEmit<"close", () => void> & DefineEmit<"saved", (selectedLinkItem: LinkItem) => void> & DefineSlot<"activator", () => void>> & {
|
41
|
-
onClose?: () => any;
|
42
|
-
"onUpdate:modelValue"?: (value: boolean) => any;
|
43
|
-
onSaved?: (selectedLinkItem: LinkItem) => any;
|
44
|
-
onConfigureProviders?: (providers: LinkPickerRegistration[]) => any;
|
45
|
-
"onUpdate:selectedItem"?: (value: LinkItem) => any;
|
46
|
-
} & {
|
47
|
-
"v-slots"?: {
|
48
|
-
activator?: () => void;
|
49
|
-
} & Omit<{
|
15
|
+
"v-slots"?: {} & Omit<{
|
50
16
|
default?: import("vue").Slot;
|
51
17
|
$stable?: boolean;
|
52
|
-
},
|
53
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "
|
18
|
+
}, never>;
|
19
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "height" | "v-model" | "modelValue" | "emit:update:modelValue" | "allowProviders"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
54
20
|
export default _default;
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { guid, IIcon, LinkItem,
|
1
|
+
import { guid, IIcon, LinkItem, LinkProviderId } from "@omnia/fx-models";
|
2
2
|
export interface ILinkPickerComponentProps {
|
3
|
-
modelValue:
|
3
|
+
modelValue: LinkItem;
|
4
4
|
}
|
5
5
|
export interface LinkPickerRegistration {
|
6
6
|
id: LinkProviderId;
|
@@ -75,7 +75,6 @@ import wc3392707566c844e39f57097aade4e81c from './ux/jsonexportimport/ExportImpo
|
|
75
75
|
import wc20b4e8166fb44f2b8b240724eb5f2db2 from './ux/languagepicker/LanguagePicker';
|
76
76
|
import wcfc7e793728e64099ab1b37b8f89e8693 from './ux/letteravatar/LetterAvatar';
|
77
77
|
import wc6c2ac8bf4da44a2b8e544eaf5b42099f from './ux/limited-label/LimitedLabel';
|
78
|
-
import wc1114043c582d4359a5261781854e77a3 from './ux/links/LinkPickerV2';
|
79
78
|
import wc9e7b4a48efba4dc390986eeb638b34cd from './ux/links/LinkPicker';
|
80
79
|
import wc4892102894624a4ca84e67df764cbe93 from './ux/links/LinkRenderer';
|
81
80
|
import wc106dba3f206e4ad7bbb28e574e3da49e from './ux/magiclink/MagicLinkLogin';
|
@@ -1797,21 +1796,13 @@ declare global {
|
|
1797
1796
|
} : typeof wc6c2ac8bf4da44a2b8e544eaf5b42099f;
|
1798
1797
|
};
|
1799
1798
|
"link": {
|
1800
|
-
"picker":
|
1799
|
+
"picker": typeof wc9e7b4a48efba4dc390986eeb638b34cd extends {
|
1801
1800
|
propsDefinition: infer TProp;
|
1802
1801
|
} ? {
|
1803
1802
|
new (...args: any[]): {
|
1804
1803
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1805
1804
|
};
|
1806
|
-
} : typeof wc9e7b4a48efba4dc390986eeb638b34cd
|
1807
|
-
"v2": typeof wc1114043c582d4359a5261781854e77a3 extends {
|
1808
|
-
propsDefinition: infer TProp;
|
1809
|
-
} ? {
|
1810
|
-
new (...args: any[]): {
|
1811
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1812
|
-
};
|
1813
|
-
} : typeof wc1114043c582d4359a5261781854e77a3;
|
1814
|
-
};
|
1805
|
+
} : typeof wc9e7b4a48efba4dc390986eeb638b34cd;
|
1815
1806
|
"renderer": typeof wc4892102894624a4ca84e67df764cbe93 extends {
|
1816
1807
|
propsDefinition: infer TProp;
|
1817
1808
|
} ? {
|
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.515-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.
|
23
|
+
"@omnia/fx-models": "8.0.515-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
@@ -1,18 +0,0 @@
|
|
1
|
-
import { LinkItemV2, LinkProviderId } from "@omnia/fx-models";
|
2
|
-
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
|
-
"emit:update:modelValue": (value: LinkItemV2) => void;
|
4
|
-
} & {
|
5
|
-
"v-model"?: LinkItemV2;
|
6
|
-
} & {
|
7
|
-
modelValue?: LinkItemV2;
|
8
|
-
} & {
|
9
|
-
allowProviders?: LinkProviderId[];
|
10
|
-
}> & {
|
11
|
-
"onUpdate:modelValue"?: (value: LinkItemV2) => any;
|
12
|
-
} & {
|
13
|
-
"v-slots"?: {} & Omit<{
|
14
|
-
default?: import("vue").Slot;
|
15
|
-
$stable?: boolean;
|
16
|
-
}, never>;
|
17
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "allowProviders"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
18
|
-
export default _default;
|