@omnia/fx 8.0.356-dev → 8.0.358-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,6 +1,7 @@
|
|
1
1
|
import { AnchorLinkRoute, TokenBasedRouteStateData, IMessageBusSubscriptionHandler } from "../models";
|
2
2
|
import { TokenBasedRouter } from "./TokenBasedRouter";
|
3
3
|
import { VueComponentBase } from "./VueComponentBase";
|
4
|
+
import { ComponentPublicInstance } from "vue";
|
4
5
|
interface AnchorLinkConfiguration {
|
5
6
|
validate(anchorName: string): boolean;
|
6
7
|
trigger?(options: AnchorLinkTriggerOptions): void;
|
@@ -30,7 +31,7 @@ export declare class AnchorLink {
|
|
30
31
|
router: InternalAnchorLinkRouter;
|
31
32
|
private disabled;
|
32
33
|
constructor();
|
33
|
-
initInheritedState(currentComponent: VueComponentBase): void;
|
34
|
+
initInheritedState(currentComponent: VueComponentBase | ComponentPublicInstance): void;
|
34
35
|
get tokenExistsOnUrl(): boolean;
|
35
36
|
get enabled(): boolean;
|
36
37
|
disable(): void;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ReactiveLayoutItemSettings, IReactiveLayoutItemsSettingsStore, BlockSettings, IMessageBusTopicSubscription } from "../../../models";
|
1
|
+
import { ReactiveLayoutItemSettings, IReactiveLayoutItemsSettingsStore, BlockSettings, guid, IMessageBusTopicSubscription } from "../../../models";
|
2
2
|
import { MessageBusTopicMediator } from "../../../core";
|
3
3
|
interface ReactiveLayoutItemSettingsExtends extends ReactiveLayoutItemSettings {
|
4
4
|
readyWatchSettings?: boolean;
|
@@ -20,7 +20,7 @@ export declare class ReactiveLayoutItemsSettingsStore implements IReactiveLayout
|
|
20
20
|
copySetting(existingKey: string, newKey: string): ReactiveLayoutItemSettings;
|
21
21
|
deleteSetting(key: string): void;
|
22
22
|
resetSetting(key: string): void;
|
23
|
-
updateSettingsElement(id: string,
|
23
|
+
updateSettingsElement(id: string, editElementManifestId: guid): void;
|
24
24
|
registerWatchSettings(settings: ReactiveLayoutItemSettingsExtends): void;
|
25
25
|
getSettingsSubcriber<TSettings = void>(settingKey: string): IMessageBusTopicSubscription<TSettings>;
|
26
26
|
getSettings(): BlockSettings;
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { UserIdentity } from "@omnia/fx-models";
|
2
|
+
import { DefineEmit } from "@omnia/fx/ux";
|
2
3
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
4
|
"emit:update:modelValue": (value: UserIdentity) => void;
|
4
5
|
} & {
|
@@ -7,11 +8,12 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
7
8
|
modelValue?: UserIdentity;
|
8
9
|
} & {
|
9
10
|
removeElementAfterClosing?: boolean;
|
10
|
-
}
|
11
|
+
} & DefineEmit<"close", () => void>> & {
|
12
|
+
onClose?: () => any;
|
11
13
|
"onUpdate:modelValue"?: (value: UserIdentity) => any;
|
12
14
|
} & {
|
13
15
|
"v-slots"?: {} & Omit<{
|
14
16
|
default?: import("vue").Slot;
|
15
17
|
}, never>;
|
16
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "modelValue" | "v-model" | "emit:update:modelValue" | "removeElementAfterClosing"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
18
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "modelValue" | "v-model" | "emit:update:modelValue" | "emit:close" | "removeElementAfterClosing"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
17
19
|
export default _default;
|
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.358-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.358-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|