@omnia/fx 8.0.367-dev → 8.0.369-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/UxModels.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/aurora/components/backgroundstyle/BackgroundStyleEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/chromepicker/ChromePicker.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/editor/settings/DefineJourneyMenuSettings.d.ts +11 -6
- package/internal-do-not-import-from-here/ux/journey/SettingsJourneyMenu.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/journey/models/JourneySelectItem.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/selection/JourneySelect.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanelSettings.d.ts +11 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +29 -1
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/demo/DemoBlock.d.ts +0 -0
@@ -340,6 +340,7 @@ export interface OmniaUxLocalization {
|
|
340
340
|
Filter: string;
|
341
341
|
SortBy: string;
|
342
342
|
View: string;
|
343
|
+
Result: string;
|
343
344
|
Others: string;
|
344
345
|
ItemLimit: string;
|
345
346
|
Paging: string;
|
@@ -421,6 +422,8 @@ export interface OmniaUxLocalization {
|
|
421
422
|
};
|
422
423
|
Follow: string;
|
423
424
|
Unfollow: string;
|
425
|
+
ListView: string;
|
426
|
+
CardView: string;
|
424
427
|
};
|
425
428
|
Image: string;
|
426
429
|
};
|
@@ -42,5 +42,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
42
42
|
} & Omit<{
|
43
43
|
default?: import("vue").Slot;
|
44
44
|
}, "activator">;
|
45
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "fill" | "border" | "variant" | "label" | "modelValue" | "elevation" | "v-model" | "toned" | "emit:update:modelValue" | "themeType" | "slot:activator" | "emit:click:confirm" | "defaultColorSchemaType" | "enableDynamicColor" | "
|
45
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "fill" | "border" | "variant" | "label" | "modelValue" | "elevation" | "v-model" | "toned" | "emit:update:modelValue" | "themeType" | "slot:activator" | "emit:click:confirm" | "defaultColorSchemaType" | "enableDynamicColor" | "emit:init:actionButtons" | "individualRadiusSelection" | "individualBorderWidthSelection" | "createNewColorDynamic"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
46
46
|
export default _default;
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { DefineEmit } from "@omnia/fx/ux";
|
2
|
+
import { VersionedLayout } from "@omnia/fx-models";
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
4
|
+
"emit:update:modelValue": (value: number) => void;
|
5
|
+
} & {
|
6
|
+
"v-model"?: number;
|
7
|
+
} & {
|
8
|
+
modelValue?: number;
|
9
|
+
} & DefineEmit<"selection", (selection: VersionedLayout) => void>> & {
|
10
|
+
"onUpdate:modelValue"?: (value: number) => any;
|
11
|
+
onSelection?: (selection: VersionedLayout) => any;
|
12
|
+
} & {
|
13
|
+
"v-slots"?: {} & Omit<{
|
14
|
+
default?: import("vue").Slot;
|
15
|
+
}, never>;
|
16
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "modelValue" | "v-model" | "emit:update:modelValue" | "emit:selection"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
17
|
+
export default _default;
|
@@ -38,5 +38,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
38
38
|
} & Omit<{
|
39
39
|
default?: import("vue").Slot;
|
40
40
|
}, "activator">;
|
41
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "variant" | "label" | "modelValue" | "v-model" | "toned" | "colorType" | "emit:update:modelValue" | "themeType" | "slot:activator" | "defaultColorSchemaType" | "enableDynamicColor" | "
|
41
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "variant" | "label" | "modelValue" | "v-model" | "toned" | "colorType" | "emit:update:modelValue" | "themeType" | "slot:activator" | "defaultColorSchemaType" | "enableDynamicColor" | "emit:init:actionButtons" | "createNewColorDynamic" | "singleColor"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
42
42
|
export default _default;
|
@@ -1,15 +1,20 @@
|
|
1
1
|
import { type SettingsJourneyMenuItem } from "../../journey/models";
|
2
2
|
import { ConstructComponentProps, defineBlade, VNodeEvents } from "@omnia/fx/ux";
|
3
|
-
interface SettingsJourneyMenuItemState extends SettingsJourneyMenuItem {
|
3
|
+
interface SettingsJourneyMenuItemState extends Omit<SettingsJourneyMenuItem, "id"> {
|
4
4
|
blade: ReturnType<typeof defineBlade>;
|
5
5
|
}
|
6
6
|
type JourneySettingsMenuElement = (props: ConstructComponentProps<{}> & VNodeEvents) => any;
|
7
|
+
type SetupType = {
|
8
|
+
addPadding(blade: ReturnType<typeof defineBlade>): Omit<SetupType, "addPadding">;
|
9
|
+
addFilter(blade: ReturnType<typeof defineBlade>): Omit<SetupType, "addFilter">;
|
10
|
+
addView(blade: ReturnType<typeof defineBlade>): Omit<SetupType, "addView">;
|
11
|
+
addResult(blade: ReturnType<typeof defineBlade>): Omit<SetupType, "addResult">;
|
12
|
+
addQuery(blade: ReturnType<typeof defineBlade>): Omit<SetupType, "addQuery">;
|
13
|
+
addStyle(blade: ReturnType<typeof defineBlade>): Omit<SetupType, "addStyle">;
|
14
|
+
addItem(item: SettingsJourneyMenuItemState): SetupType;
|
15
|
+
};
|
7
16
|
export declare function defineJourneyMenuSettings(): {
|
8
|
-
setup:
|
9
|
-
addPadding(blade: ReturnType<typeof defineBlade>): Omit</*elided*/ any, "addPadding">;
|
10
|
-
addFilter(blade: ReturnType<typeof defineBlade>): Omit</*elided*/ any, "addFilter">;
|
11
|
-
addItem(item: SettingsJourneyMenuItemState): /*elided*/ any;
|
12
|
-
};
|
17
|
+
setup: SetupType;
|
13
18
|
MenuSettingsRenderer: JourneySettingsMenuElement;
|
14
19
|
};
|
15
20
|
export {};
|
@@ -1,6 +1,8 @@
|
|
1
1
|
import { DefineRef, SettingsJourneyMenuItem, useJourneyStore } from "@omnia/fx/ux";
|
2
2
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
3
|
items?: SettingsJourneyMenuItem[];
|
4
|
+
} & {
|
5
|
+
getApi?: (store: ReturnType<typeof useJourneyStore>) => void;
|
4
6
|
} & DefineRef<{
|
5
7
|
journeyStore: ReturnType<typeof useJourneyStore>;
|
6
8
|
}>> & {} & {
|
@@ -15,5 +17,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
15
17
|
}> | ((ref: {
|
16
18
|
journeyStore: ReturnType<typeof useJourneyStore>;
|
17
19
|
}) => void);
|
18
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "items" | "ref"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
20
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "items" | "ref" | "getApi"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
19
21
|
export default _default;
|
@@ -3,7 +3,7 @@ import { VNodeChild } from "vue";
|
|
3
3
|
import { JourneySelectItem } from "../models/JourneySelectItem";
|
4
4
|
export declare const SelectionTypeDefinitions: readonly ["selection", "custom"];
|
5
5
|
export type SelectionTypes = typeof SelectionTypeDefinitions[number];
|
6
|
-
type BaseProps = DefinePropTheming & DefineVModel<"", Array<JourneySelectItem>, false, null, false, "The v-model of the component"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"multiple", boolean, false, null, "If it is allowed to select multiple or single"> & DefineProp<"label", string, null, null, "The label of the component"> & DefineProp<"labelAdd", string, null, null, "The add label of the component"> & DefineProp<"items", Array<JourneySelectItem>, false, null, "Items to select from"> & DefineProp<"searchable", boolean, false, null, "If it is allowed to search"> & DefineProp<"sortable", boolean, false, null, "If it is allowed to sort"> & DefineProp<"readonly", boolean, false, null, "Disable add and delete"> & DefineEmit<"search", (searchText: string) => true> & DefineSlot<"selectionItemRender", (item: JourneySelectItem, index: Number, onSave?: (item: JourneySelectItem) => void) => VNodeChild> & DefineSlot<"selectionRender", () => VNodeChild> & DefineSlot<"settingsRender", (item: JourneySelectItem) => VNodeChild> & DefineSlot<"chipRenderer", (item: JourneySelectItem, index: Number) => VNodeChild> & DefineEmit<"showAdd", () => true> & DefineEmit<"showEdit", (item: JourneySelectItem) => true> & DefineEmit<"click:add", () => true> & DefineEmit<"click:update", (item: JourneySelectItem) => true> & DefineEmit<"click:delete", (item: JourneySelectItem) => true>;
|
6
|
+
type BaseProps = DefinePropTheming & DefineVModel<"", Array<JourneySelectItem>, false, null, false, "The v-model of the component"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"multiple", boolean, false, null, "If it is allowed to select multiple or single"> & DefineProp<"label", string, null, null, "The label of the component"> & DefineProp<"labelAdd", string, null, null, "The add label of the component"> & DefineProp<"items", Array<JourneySelectItem>, false, null, "Items to select from"> & DefineProp<"searchable", boolean, false, null, "If it is allowed to search"> & DefineProp<"sortable", boolean, false, null, "If it is allowed to sort"> & DefineProp<"readonly", boolean, false, null, "Disable add and delete"> & DefineProp<"bladeless", boolean, false, null, "If add/edit is not a blade and only fires events"> & DefineEmit<"search", (searchText: string) => true> & DefineSlot<"selectionItemRender", (item: JourneySelectItem, index: Number, onSave?: (item: JourneySelectItem) => void) => VNodeChild> & DefineSlot<"selectionRender", () => VNodeChild> & DefineSlot<"settingsRender", (item: JourneySelectItem) => VNodeChild> & DefineSlot<"chipRenderer", (item: JourneySelectItem, index: Number) => VNodeChild> & DefineEmit<"showAdd", () => true> & DefineEmit<"showEdit", (item: JourneySelectItem) => true> & DefineEmit<"click:add", () => true> & DefineEmit<"click:update", (item: JourneySelectItem) => true> & DefineEmit<"click:delete", (item: JourneySelectItem) => true>;
|
7
7
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<BaseProps> & {
|
8
8
|
"onUpdate:modelValue"?: (value: JourneySelectItem<any>[]) => any;
|
9
9
|
onSearch?: (searchText: string) => any;
|
@@ -21,5 +21,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<BaseProps> &
|
|
21
21
|
} & Omit<{
|
22
22
|
default?: import("vue").Slot;
|
23
23
|
}, "selectionItemRender" | "selectionRender" | "settingsRender" | "chipRenderer">;
|
24
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "multiple" | "colorSchemaType" | "modelValue" | "items" | "readonly" | "colors" | "v-model" | "toned" | "emit:update:modelValue" | "searchable" | "emit:click:add" | "emit:search" | "emit:click:delete" | "sortable" | "labelAdd" | "slot:selectionItemRender" | "slot:selectionRender" | "slot:settingsRender" | "slot:chipRenderer" | "emit:showAdd" | "emit:showEdit" | "emit:click:update"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
24
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "multiple" | "colorSchemaType" | "modelValue" | "items" | "readonly" | "colors" | "v-model" | "toned" | "emit:update:modelValue" | "searchable" | "emit:click:add" | "emit:search" | "emit:click:delete" | "sortable" | "labelAdd" | "bladeless" | "slot:selectionItemRender" | "slot:selectionRender" | "slot:settingsRender" | "slot:chipRenderer" | "emit:showAdd" | "emit:showEdit" | "emit:click:update"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
25
25
|
export default _default;
|
@@ -11,9 +11,10 @@ export type OListItemProps = DefinePropTheming & DefineProp<"class", String | St
|
|
11
11
|
title: string | number;
|
12
12
|
}) => VNodeChild, "Slot for the component’s title content."> & DefineSlot<"subtitle", (value: {
|
13
13
|
subtitle: string | number;
|
14
|
-
}) => VNodeChild, "Slot for the component’s subtitle content."> & DefineEmit<"click:delete", (e: MouseEvent) => VNodeChild, "Emit a delete event."> & DefineEmit<"click:navigate", (e: MouseEvent) => VNodeChild, "Emit a navigate event."> & DefineEmit<"click:select", (e: MouseEvent) => VNodeChild, "Emit a navigate event.">;
|
14
|
+
}) => VNodeChild, "Slot for the component’s subtitle content."> & DefineEmit<"click:delete", (e: MouseEvent) => VNodeChild, "Emit a delete event."> & DefineEmit<"click:remove", (e: MouseEvent) => VNodeChild, "Emit a remove event."> & DefineEmit<"click:navigate", (e: MouseEvent) => VNodeChild, "Emit a navigate event."> & DefineEmit<"click:select", (e: MouseEvent) => VNodeChild, "Emit a navigate event.">;
|
15
15
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<OListItemProps> & {
|
16
16
|
"onClick:delete"?: (e: MouseEvent) => any;
|
17
|
+
"onClick:remove"?: (e: MouseEvent) => any;
|
17
18
|
"onClick:navigate"?: (e: MouseEvent) => any;
|
18
19
|
"onClick:select"?: (e: MouseEvent) => any;
|
19
20
|
} & {
|
@@ -30,5 +31,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<OListItemPro
|
|
30
31
|
} & Omit<{
|
31
32
|
default?: import("vue").Slot;
|
32
33
|
}, "title" | "default" | "append" | "prepend" | "subtitle">;
|
33
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "icon" | "variant" | "active" | "class" | "disabled" | "colorSchemaType" | "colors" | "slot:title" | "slot:append" | "slot:prepend" | "subtitle" | "selected" | "slot:default" | "slot:subtitle" | "emit:click:delete" | "emit:click:navigate" | "emit:click:select"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
34
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "icon" | "variant" | "active" | "class" | "disabled" | "colorSchemaType" | "colors" | "slot:title" | "slot:append" | "slot:prepend" | "subtitle" | "selected" | "slot:default" | "slot:subtitle" | "emit:click:delete" | "emit:click:remove" | "emit:click:navigate" | "emit:click:select"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
34
35
|
export default _default;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { DefinePropTheming, DefineVModel } from "@omnia/fx/ux";
|
2
|
+
import { SlidePanelSettings } from "@omnia/fx-models";
|
3
|
+
type SlidePanelProps = DefinePropTheming & DefineVModel<"", SlidePanelSettings>;
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<SlidePanelProps> & {
|
5
|
+
"onUpdate:modelValue"?: (value: SlidePanelSettings) => any;
|
6
|
+
} & {
|
7
|
+
"v-slots"?: {} & Omit<{
|
8
|
+
default?: import("vue").Slot;
|
9
|
+
}, never>;
|
10
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "modelValue" | "colors" | "v-model" | "emit:update:modelValue"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
11
|
+
export default _default;
|
@@ -314,6 +314,7 @@ import wc578e2a4d5cd247a4b1291911256253a7 from './ux/oxide/select/Select';
|
|
314
314
|
import wc2ade92721b3c426fac97c63026f77351 from './ux/oxide/skeletonloader/SkeletonLoader';
|
315
315
|
import wc8b0bddecd5d74fcba7aac87913137ca3 from './ux/oxide/slidepanel/SlidePanel';
|
316
316
|
import wcd5ff31018df44196a5c6ab219bab4c25 from './ux/oxide/slidepanel/Slide';
|
317
|
+
import wc2001e58f6a33442fb716d45a67eee24d from './ux/oxide/slidepanel/SlidePanelSettings';
|
317
318
|
import wcd108fdde5ca942d7ae92195eb74b5452 from './ux/oxide/slider/Slider';
|
318
319
|
import wca19feddcd78b4065b7650162fd088379 from './ux/oxide/snackbar/Snackbar';
|
319
320
|
import wcc26ccc7aeae04f76a062e83c6df302fc from './ux/oxide/spacer/Spacer';
|
@@ -375,6 +376,7 @@ import wc8391c3abe04c43b78b32edde15337988 from './ux/aurora/components/borderpic
|
|
375
376
|
import wcdb6d37c1525f463aa5b4a89a4ddfe05c from './ux/aurora/components/buttonstyle/ButtonStylePicker';
|
376
377
|
import wc28aca89920b749c894138e728231ffc4 from './ux/aurora/components/buttonstyle/ButtonStyleEditor';
|
377
378
|
import wc7222a47525f54724a8e9f7f2cfc39354 from './ux/aurora/components/buttonstyle/ButtonBlueprintsViewer';
|
379
|
+
import wc81ff82944f2542b3afec55c5dba22f36 from './ux/aurora/components/chromepicker/ChromePicker';
|
378
380
|
import wc638cfe124ab24d0ebd0711c0bd844af6 from './ux/aurora/components/colorpickerV2/ColorPicker';
|
379
381
|
import wc1266389c28034034921b897f788f302d from './ux/aurora/components/colorschemapicker/ColorSchemaPicker';
|
380
382
|
import wc9ed2b61fad8a43f384efef4a5dcbd184 from './ux/aurora/components/colorschemapicker/ColorSchemaDefinitionPicker';
|
@@ -560,6 +562,7 @@ import wc606afcf1b9b04b5e8920b7675b4ecc4b from './ux/admin/system/submenu/system
|
|
560
562
|
import wc3734b9786d374f388cc5b5181f5cd4f3 from './ux/aurora/admin/blades/blueprints/typography/components/FontPicker';
|
561
563
|
import wcb358eb4c58fb49119c7c2fca8b2fe186 from './ux/app/apps/admin/appsettings/admin/blades/editapp/EditBlade';
|
562
564
|
import wcb0e4ded914dd47ed99226f884b927f9a from './ux/app/apps/admin/appsettings/admin/blades/switchingtemplate/journey/SwitchingTemplateSettings';
|
565
|
+
import wc97a0cc3e2c064517ba3c9db6e5e04f8b from '../../../../client/public/header/Header';
|
563
566
|
declare global {
|
564
567
|
namespace JSX {
|
565
568
|
interface Element {
|
@@ -798,6 +801,13 @@ declare global {
|
|
798
801
|
};
|
799
802
|
} : typeof wcfc2401c7c3384790ae7ce17d05b0855f;
|
800
803
|
};
|
804
|
+
"header": typeof wc97a0cc3e2c064517ba3c9db6e5e04f8b extends {
|
805
|
+
propsDefinition: infer TProp;
|
806
|
+
} ? {
|
807
|
+
new (...args: any[]): {
|
808
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
809
|
+
};
|
810
|
+
} : typeof wc97a0cc3e2c064517ba3c9db6e5e04f8b;
|
801
811
|
};
|
802
812
|
"dev": {
|
803
813
|
"socket": typeof wce6b88bd8d41949c8af6fed268ae64430 extends {
|
@@ -843,6 +853,15 @@ declare global {
|
|
843
853
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
844
854
|
};
|
845
855
|
} : typeof wc057bef6897bb4ba4a089d01c2da1322e;
|
856
|
+
"layout": {
|
857
|
+
"picker": typeof wc81ff82944f2542b3afec55c5dba22f36 extends {
|
858
|
+
propsDefinition: infer TProp;
|
859
|
+
} ? {
|
860
|
+
new (...args: any[]): {
|
861
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
862
|
+
};
|
863
|
+
} : typeof wc81ff82944f2542b3afec55c5dba22f36;
|
864
|
+
};
|
846
865
|
};
|
847
866
|
"command": {
|
848
867
|
"palette": typeof wc5dfa7b609aed43ffab03dad33c65b2da extends {
|
@@ -5256,7 +5275,16 @@ declare global {
|
|
5256
5275
|
} : typeof wc2ade92721b3c426fac97c63026f77351;
|
5257
5276
|
};
|
5258
5277
|
"slide": {
|
5259
|
-
"panel":
|
5278
|
+
"panel": {
|
5279
|
+
"settings": typeof wc2001e58f6a33442fb716d45a67eee24d extends {
|
5280
|
+
propsDefinition: infer TProp;
|
5281
|
+
} ? {
|
5282
|
+
new (...args: any[]): {
|
5283
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5284
|
+
};
|
5285
|
+
} : typeof wc2001e58f6a33442fb716d45a67eee24d;
|
5286
|
+
};
|
5287
|
+
"panel$": typeof wc8b0bddecd5d74fcba7aac87913137ca3 extends {
|
5260
5288
|
propsDefinition: infer TProp;
|
5261
5289
|
} ? {
|
5262
5290
|
new (...args: any[]): {
|
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.369-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.369-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
File without changes
|