@omnia/fx 8.0.495-dev → 8.0.496-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.
@@ -1,10 +1,8 @@
|
|
1
1
|
import { VNodeChild } from "vue";
|
2
2
|
import { BlockLayoutSettings, BlockRenderingModes, Breakpoint, guid, IBlockInstance, ILayoutMediaContext, ILayoutFileContext, IMessageBusTopicSubscription, MultilingualString, EditBlockRenderer, VersionedLayoutId } from "../models";
|
3
3
|
export declare class BlockInstance<TSettings = void> implements IBlockInstance<TSettings> {
|
4
|
-
|
5
|
-
|
6
|
-
edit(renderer: (element: EditBlockRenderer) => VNodeChild): void;
|
7
|
-
};
|
4
|
+
private _editting;
|
5
|
+
get editing(): boolean;
|
8
6
|
versionedLayout?: {
|
9
7
|
id: VersionedLayoutId;
|
10
8
|
};
|
@@ -24,4 +22,9 @@ export declare class BlockInstance<TSettings = void> implements IBlockInstance<T
|
|
24
22
|
renderCacheKeyProvider?: (currentKey: string, settings: TSettings) => string;
|
25
23
|
mediaContext: Readonly<ILayoutMediaContext>;
|
26
24
|
fileContext: Readonly<ILayoutFileContext>;
|
25
|
+
enableEdit(): void;
|
26
|
+
disableEdit(): void;
|
27
|
+
configurations(): {
|
28
|
+
enableEdit(renderer: (element: EditBlockRenderer) => VNodeChild, mode?: "design-write" | "design" | "write"): void;
|
29
|
+
};
|
27
30
|
}
|
@@ -1,22 +1,11 @@
|
|
1
|
-
import {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
styles?: typeof IconWrapperStyles;
|
13
|
-
iconAttrs?: Colorable & Disableable & Themable & Positionable & Sizeable & {};
|
14
|
-
private iconClasses;
|
15
|
-
private classKeys;
|
16
|
-
created(): void;
|
17
|
-
mounted(): void;
|
18
|
-
renderFontIcon(icon: IIconModel): import("vue/jsx-runtime").JSX.Element;
|
19
|
-
renderCustomIcon(icon: IIconModel): import("vue/jsx-runtime").JSX.Element;
|
20
|
-
renderSVGIcon(icon: IIconModel): import("vue/jsx-runtime").JSX.Element;
|
21
|
-
render(): import("vue/jsx-runtime").JSX.Element;
|
22
|
-
}
|
1
|
+
import { IIcon, LegacyIconPickerModel, MediaPickerImage } from "@omnia/fx-models";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
|
+
icon?: IIcon | MediaPickerImage | LegacyIconPickerModel;
|
4
|
+
} & {
|
5
|
+
size?: "small" | "x-small" | "large" | "default" | "x-large";
|
6
|
+
}> & {} & {
|
7
|
+
"v-slots"?: {} & Omit<{
|
8
|
+
default?: import("vue").Slot;
|
9
|
+
}, never>;
|
10
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "size"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
11
|
+
export default _default;
|
@@ -56,6 +56,7 @@ import wca673e0befd6649dda5e680ae1cd3535d from './ux/governancedashboard/Numeric
|
|
56
56
|
import wca377536b4fd84773a9730966623601cd from './ux/governancedashboard/BarChartIndicator';
|
57
57
|
import wc08b9c70d2a77433f8492dc0fb50d900e from './ux/grecaptcha/GRecaptcha';
|
58
58
|
import wc64887c3414da45279ea9c905df12c48f from './ux/helptext/HelpText';
|
59
|
+
import wcec34a224751b4124b1503174ac3868f1 from './ux/icon/Icon';
|
59
60
|
import wc7c3b9838bf844a53a446d3795494b304 from './ux/iconpicker/IconPicker';
|
60
61
|
import wca7608d8c42184cbb994910dc06c464a1 from './ux/identities/IdentityRenderer';
|
61
62
|
import wcba60557e3daf48208c919a1806502df5 from './ux/identitypicker/IdentityPickerField';
|
@@ -1533,7 +1534,13 @@ declare global {
|
|
1533
1534
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1534
1535
|
};
|
1535
1536
|
} : typeof wc64887c3414da45279ea9c905df12c48f;
|
1536
|
-
"icon": {
|
1537
|
+
"icon": (typeof wcec34a224751b4124b1503174ac3868f1 extends {
|
1538
|
+
propsDefinition: infer TProp;
|
1539
|
+
} ? {
|
1540
|
+
new (...args: any[]): {
|
1541
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1542
|
+
};
|
1543
|
+
} : typeof wcec34a224751b4124b1503174ac3868f1) & {
|
1537
1544
|
"picker": typeof wc7c3b9838bf844a53a446d3795494b304 extends {
|
1538
1545
|
propsDefinition: infer TProp;
|
1539
1546
|
} ? {
|
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.496-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.496-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|