@omnia/fx 8.0.340-dev → 8.0.341-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/README.md +2 -2
- package/events/package.json +3 -3
- package/internal-do-not-import-from-here/ux/TokenBasedRouter.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/actionhandler/ActionHandler.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/iconpicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/iconpicker/docs/SampleComponent.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/iconpicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediagallery/view/MediaDisplayRenderer.d.ts +3 -51
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +9 -2
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/models/ComponentDescriptors.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Card.d.ts +2 -28
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Chip.d.ts +2 -28
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Custom.d.ts +2 -28
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Flex.d.ts +2 -28
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Grid.d.ts +2 -28
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Link.d.ts +2 -28
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/ProgressCircle.d.ts +2 -28
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Scroll.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Slot.d.ts +2 -28
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/WebView.d.ts +2 -28
- package/messaging/package.json +3 -3
- package/models/package.json +3 -3
- package/package.json +6 -6
- package/services/package.json +3 -3
- package/sp/models/package.json +3 -3
- package/sp/package.json +3 -3
- package/spfx/package.json +3 -3
- package/spfx/tooling/package.json +3 -3
- package/stores/package.json +3 -3
- package/ux/admin/package.json +3 -3
- package/ux/app/package.json +3 -3
- package/ux/editor/package.json +3 -3
- package/ux/package.json +3 -3
- package/ux/richtexteditor/package.json +3 -3
- package/ux/vuetify/package.json +3 -3
package/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Omnia Fx Tooling
|
2
2
|
|
3
|
-
Omnia Fx Tooling is a product from
|
3
|
+
Omnia Fx Tooling is a product from Omnia Digital Workplace AB. In order to use Omnia Fx you need a product license for one of the following products:
|
4
4
|
|
5
5
|
### Documentation
|
6
|
-
https://github.com/
|
6
|
+
https://github.com/omniaintranet/OmniaDocs
|
package/events/package.json
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx events",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
@@ -35,6 +35,7 @@ export declare abstract class TokenBasedRouter<T1 extends TokenBasedRoute, T2 ex
|
|
35
35
|
private static resolveTokenBasedContext;
|
36
36
|
private static ensureNoSlashAtTheBeginningAndTheEnd;
|
37
37
|
private static init;
|
38
|
+
private static ensureLoadManifestForPrefixToken;
|
38
39
|
}
|
39
40
|
declare class InternalTokenRouter<T1 extends TokenBasedRoute, T2 extends TokenBasedRouteStateData> extends TokenBasedRouter<T1, T2> {
|
40
41
|
buildContextPath: (routeContext: T1) => string;
|
@@ -36,6 +36,8 @@ export declare abstract class ActionHandlerBase<TSettings extends IActionHandler
|
|
36
36
|
abstract onActivated(): void | Promise<void>;
|
37
37
|
abstract onTriggered(renderingCallback: (elementName: string, themeTargetId?: string, domProps?: Object) => void): any;
|
38
38
|
abstract onDisposing(): any;
|
39
|
+
customTextColor?(settings: IActionHandlerSettings): string;
|
40
|
+
customBackgroundColor?(settings: IActionHandlerSettings): string;
|
39
41
|
constructor();
|
40
42
|
id: guid;
|
41
43
|
typeId: ActionHandlerRegistrationId;
|
@@ -87,6 +89,8 @@ export declare class ActionHandlerInstance implements IActionHandlerInstance {
|
|
87
89
|
private _initialized;
|
88
90
|
initialized(): void | Promise<void>;
|
89
91
|
triggered(renderingCallback: (elementName: string, themeTargetId?: string, domProps?: Object) => void): void;
|
92
|
+
customTextColor(): string;
|
93
|
+
customBackgroundColor(): string;
|
90
94
|
dispose(): void;
|
91
95
|
onActivated(): MessageBusExposeOnlySubscription<void>;
|
92
96
|
onTriggered(): MessageBusExposeOnlySubscription<void>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -1,53 +1,5 @@
|
|
1
|
+
import { DefineProp } from "@omnia/fx/ux";
|
1
2
|
import { MediaPickerMedia } from "@omnia/fx-models";
|
2
|
-
|
3
|
-
|
4
|
-
imageRatioId?: number;
|
5
|
-
mediaStyle?: string | object | object[];
|
6
|
-
mediaClass?: string;
|
7
|
-
showCaption?: boolean;
|
8
|
-
thumbnailOnly?: boolean;
|
9
|
-
}
|
10
|
-
declare const _default: {
|
11
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
12
|
-
media: import("vue").Prop<MediaPickerMedia | MediaPickerMedia[], MediaPickerMedia | MediaPickerMedia[]>;
|
13
|
-
imageRatioId?: import("vue").Prop<number, number>;
|
14
|
-
mediaStyle?: import("vue").Prop<string | object | object[], string | object | object[]>;
|
15
|
-
mediaClass?: import("vue").Prop<string, string>;
|
16
|
-
showCaption?: import("vue").Prop<boolean, boolean>;
|
17
|
-
thumbnailOnly?: import("vue").Prop<boolean, boolean>;
|
18
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
19
|
-
P: {};
|
20
|
-
B: {};
|
21
|
-
D: {};
|
22
|
-
C: {};
|
23
|
-
M: {};
|
24
|
-
Defaults: {};
|
25
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
26
|
-
media: import("vue").Prop<MediaPickerMedia | MediaPickerMedia[], MediaPickerMedia | MediaPickerMedia[]>;
|
27
|
-
imageRatioId?: import("vue").Prop<number, number>;
|
28
|
-
mediaStyle?: import("vue").Prop<string | object | object[], string | object | object[]>;
|
29
|
-
mediaClass?: import("vue").Prop<string, string>;
|
30
|
-
showCaption?: import("vue").Prop<boolean, boolean>;
|
31
|
-
thumbnailOnly?: import("vue").Prop<boolean, boolean>;
|
32
|
-
}>>, {}, {}, {}, {}, {}>;
|
33
|
-
__isFragment?: never;
|
34
|
-
__isTeleport?: never;
|
35
|
-
__isSuspense?: never;
|
36
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
37
|
-
media: import("vue").Prop<MediaPickerMedia | MediaPickerMedia[], MediaPickerMedia | MediaPickerMedia[]>;
|
38
|
-
imageRatioId?: import("vue").Prop<number, number>;
|
39
|
-
mediaStyle?: import("vue").Prop<string | object | object[], string | object | object[]>;
|
40
|
-
mediaClass?: import("vue").Prop<string, string>;
|
41
|
-
showCaption?: import("vue").Prop<boolean, boolean>;
|
42
|
-
thumbnailOnly?: import("vue").Prop<boolean, boolean>;
|
43
|
-
}>>, {}, {}, {}, {}, 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 & {
|
44
|
-
propsDefinition: Omit<Readonly<{} & {
|
45
|
-
media?: MediaPickerMedia | MediaPickerMedia[];
|
46
|
-
showCaption?: boolean;
|
47
|
-
imageRatioId?: number;
|
48
|
-
thumbnailOnly?: boolean;
|
49
|
-
mediaStyle?: string | object | object[];
|
50
|
-
mediaClass?: string;
|
51
|
-
}>, never>;
|
52
|
-
};
|
3
|
+
type MediaDisplayProps = DefineProp<"media", MediaPickerMedia | MediaPickerMedia[], true> & DefineProp<"imageRatioId", number> & DefineProp<"mediaStyle", string | object | object[]> & DefineProp<"mediaClass", string> & DefineProp<"showCaption", boolean> & DefineProp<"thumbnailOnly", boolean>;
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<MediaDisplayProps>) => any;
|
53
5
|
export default _default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnPressEvent, VelcronSpacing, VelcronStyling, VelcronCustomComponentDefinition, VelcronAppDefinition, VelcronRendererResolverReference, EventHook, Future, TextBlueprint, VelcronBindableProp, VelcronEditor, ContainerFillBlueprint, BackgroundDefinition, BlueprintVariant, IconBlueprint, ButtonBlueprint } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
1
|
+
import { VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnPressEvent, VelcronSpacing, VelcronStyling, VelcronCustomComponentDefinition, VelcronAppDefinition, VelcronRendererResolverReference, EventHook, Future, TextBlueprint, VelcronBindableProp, VelcronEditor, ContainerFillBlueprint, BackgroundDefinition, BlueprintVariant, IconBlueprint, ButtonBlueprint, VelcronOnPressOutsideEvent, VelcronOnPointerEnterEvent, VelcronOnPointerLeaveEvent } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
2
2
|
import { VelcronComponentArrayType, VelcronPrimitiveType } from "./VelcronTypes";
|
3
3
|
import { AssignOperators, VelcronHorizontalAlignments, VelcronIconTypes, VelcronActionTypes, VelcronVerticalAlignments } from "./Enums";
|
4
4
|
import { DynamicState, VelcronDefinition, VelcronEffects, useVelcronThemingStore } from "..";
|
@@ -39,6 +39,7 @@ export interface BuiltInComponentRenderers {
|
|
39
39
|
"editor": unknown;
|
40
40
|
"link": unknown;
|
41
41
|
"motion": unknown;
|
42
|
+
"scroll": unknown;
|
42
43
|
}
|
43
44
|
export interface ColorSchemaReference {
|
44
45
|
name: string;
|
@@ -213,7 +214,7 @@ export interface VelcronGridDefinition extends VelcronDefinition {
|
|
213
214
|
}
|
214
215
|
export interface VelcronFlexRowDefinition extends VelcronDefinition, VelcronColorStyling, VelcronDefinitionHasEffects, VelcronDefinitionHasOverflow {
|
215
216
|
type: "row";
|
216
|
-
events?: VelcronOnPressEvent;
|
217
|
+
events?: VelcronOnPressEvent & VelcronOnPressOutsideEvent & VelcronOnPointerEnterEvent & VelcronOnPointerLeaveEvent;
|
217
218
|
direction?: VelcronBindableProp<"row" | "row-reverse">;
|
218
219
|
position?: VelcronBindableProp<VelcronPosition>;
|
219
220
|
zIndex?: VelcronBindableProp<number>;
|
@@ -378,6 +379,12 @@ export interface VelcronSlidePanelDefinition extends VelcronDefinition {
|
|
378
379
|
slides?: VelcronSlidePanelSlidesOptions;
|
379
380
|
styles?: VelcronSlidePanelStyles;
|
380
381
|
}
|
382
|
+
export interface VelcronScrollDefinition extends VelcronDefinition {
|
383
|
+
type: "scroll";
|
384
|
+
events?: VelcronOnPressEvent;
|
385
|
+
height?: number | string;
|
386
|
+
dynamicHeight?: boolean;
|
387
|
+
}
|
381
388
|
export interface VelcronEditorRendererDefinition extends VelcronDefinition {
|
382
389
|
type: "editor";
|
383
390
|
editor: VelcronEditor;
|
@@ -18,3 +18,4 @@ export declare const VelcronSliderComponentDescriptor: VelcronComponentDescripto
|
|
18
18
|
export declare const VelcronEditorComponentDescriptor: VelcronComponentDescriptor;
|
19
19
|
export declare const VelcronLinkComponentDescriptor: VelcronComponentDescriptor;
|
20
20
|
export declare const VelcronMotionComponentDescriptor: VelcronComponentDescriptor;
|
21
|
+
export declare const VelcronScrollComponentDescriptor: VelcronComponentDescriptor;
|
@@ -1,29 +1,3 @@
|
|
1
|
-
import { VelcronCardDefinition,
|
2
|
-
declare const _default:
|
3
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
definition: import("vue").Prop<VelcronCardDefinition, VelcronCardDefinition>;
|
5
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
7
|
-
P: {};
|
8
|
-
B: {};
|
9
|
-
D: {};
|
10
|
-
C: {};
|
11
|
-
M: {};
|
12
|
-
Defaults: {};
|
13
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
14
|
-
definition: import("vue").Prop<VelcronCardDefinition, VelcronCardDefinition>;
|
15
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
16
|
-
}>>, {}, {}, {}, {}, {}>;
|
17
|
-
__isFragment?: never;
|
18
|
-
__isTeleport?: never;
|
19
|
-
__isSuspense?: never;
|
20
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
21
|
-
definition: import("vue").Prop<VelcronCardDefinition, VelcronCardDefinition>;
|
22
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
23
|
-
}>>, {}, {}, {}, {}, 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 & {
|
24
|
-
propsDefinition: Omit<Readonly<{} & {
|
25
|
-
definition?: VelcronCardDefinition;
|
26
|
-
renderContext?: VelcronRenderContext;
|
27
|
-
}>, never>;
|
28
|
-
};
|
1
|
+
import { VelcronCardDefinition, VelcronRenderProps } from "../../core";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<VelcronRenderProps<VelcronCardDefinition>>) => any;
|
29
3
|
export default _default;
|
@@ -1,29 +1,3 @@
|
|
1
|
-
import {
|
2
|
-
declare const _default:
|
3
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
definition: import("vue").Prop<VelcronButtonDefinition, VelcronButtonDefinition>;
|
5
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
7
|
-
P: {};
|
8
|
-
B: {};
|
9
|
-
D: {};
|
10
|
-
C: {};
|
11
|
-
M: {};
|
12
|
-
Defaults: {};
|
13
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
14
|
-
definition: import("vue").Prop<VelcronButtonDefinition, VelcronButtonDefinition>;
|
15
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
16
|
-
}>>, {}, {}, {}, {}, {}>;
|
17
|
-
__isFragment?: never;
|
18
|
-
__isTeleport?: never;
|
19
|
-
__isSuspense?: never;
|
20
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
21
|
-
definition: import("vue").Prop<VelcronButtonDefinition, VelcronButtonDefinition>;
|
22
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
23
|
-
}>>, {}, {}, {}, {}, 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 & {
|
24
|
-
propsDefinition: Omit<Readonly<{} & {
|
25
|
-
definition?: VelcronButtonDefinition;
|
26
|
-
renderContext?: VelcronRenderContext;
|
27
|
-
}>, never>;
|
28
|
-
};
|
1
|
+
import { VelcronRenderProps, VelcronButtonDefinition } from "../../core";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<VelcronRenderProps<VelcronButtonDefinition>>) => any;
|
29
3
|
export default _default;
|
@@ -1,29 +1,3 @@
|
|
1
|
-
import {
|
2
|
-
declare const _default:
|
3
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
definition: import("vue").Prop<import("../../core").VelcronComponentDefinition, import("../../core").VelcronComponentDefinition>;
|
5
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
7
|
-
P: {};
|
8
|
-
B: {};
|
9
|
-
D: {};
|
10
|
-
C: {};
|
11
|
-
M: {};
|
12
|
-
Defaults: {};
|
13
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
14
|
-
definition: import("vue").Prop<import("../../core").VelcronComponentDefinition, import("../../core").VelcronComponentDefinition>;
|
15
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
16
|
-
}>>, {}, {}, {}, {}, {}>;
|
17
|
-
__isFragment?: never;
|
18
|
-
__isTeleport?: never;
|
19
|
-
__isSuspense?: never;
|
20
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
21
|
-
definition: import("vue").Prop<import("../../core").VelcronComponentDefinition, import("../../core").VelcronComponentDefinition>;
|
22
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
23
|
-
}>>, {}, {}, {}, {}, 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 & {
|
24
|
-
propsDefinition: Omit<Readonly<{} & {
|
25
|
-
definition?: import("../../core").VelcronComponentDefinition;
|
26
|
-
renderContext?: VelcronRenderContext;
|
27
|
-
}>, never>;
|
28
|
-
};
|
1
|
+
import { VelcronRenderProps } from "../../core";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<VelcronRenderProps<import("../../core").VelcronComponentDefinition>>) => any;
|
29
3
|
export default _default;
|
@@ -1,29 +1,3 @@
|
|
1
|
-
import {
|
2
|
-
declare const _default:
|
3
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
definition: import("vue").Prop<VelcronFlexDefinition, VelcronFlexDefinition>;
|
5
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
7
|
-
P: {};
|
8
|
-
B: {};
|
9
|
-
D: {};
|
10
|
-
C: {};
|
11
|
-
M: {};
|
12
|
-
Defaults: {};
|
13
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
14
|
-
definition: import("vue").Prop<VelcronFlexDefinition, VelcronFlexDefinition>;
|
15
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
16
|
-
}>>, {}, {}, {}, {}, {}>;
|
17
|
-
__isFragment?: never;
|
18
|
-
__isTeleport?: never;
|
19
|
-
__isSuspense?: never;
|
20
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
21
|
-
definition: import("vue").Prop<VelcronFlexDefinition, VelcronFlexDefinition>;
|
22
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
23
|
-
}>>, {}, {}, {}, {}, 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 & {
|
24
|
-
propsDefinition: Omit<Readonly<{} & {
|
25
|
-
definition?: VelcronFlexDefinition;
|
26
|
-
renderContext?: VelcronRenderContext;
|
27
|
-
}>, never>;
|
28
|
-
};
|
1
|
+
import { VelcronRenderProps, VelcronFlexDefinition } from "../../core";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<VelcronRenderProps<VelcronFlexDefinition>>) => any;
|
29
3
|
export default _default;
|
@@ -1,29 +1,3 @@
|
|
1
|
-
import { VelcronGridDefinition,
|
2
|
-
declare const _default:
|
3
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
definition: import("vue").Prop<VelcronGridDefinition, VelcronGridDefinition>;
|
5
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
7
|
-
P: {};
|
8
|
-
B: {};
|
9
|
-
D: {};
|
10
|
-
C: {};
|
11
|
-
M: {};
|
12
|
-
Defaults: {};
|
13
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
14
|
-
definition: import("vue").Prop<VelcronGridDefinition, VelcronGridDefinition>;
|
15
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
16
|
-
}>>, {}, {}, {}, {}, {}>;
|
17
|
-
__isFragment?: never;
|
18
|
-
__isTeleport?: never;
|
19
|
-
__isSuspense?: never;
|
20
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
21
|
-
definition: import("vue").Prop<VelcronGridDefinition, VelcronGridDefinition>;
|
22
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
23
|
-
}>>, {}, {}, {}, {}, 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 & {
|
24
|
-
propsDefinition: Omit<Readonly<{} & {
|
25
|
-
definition?: VelcronGridDefinition;
|
26
|
-
renderContext?: VelcronRenderContext;
|
27
|
-
}>, never>;
|
28
|
-
};
|
1
|
+
import { VelcronGridDefinition, VelcronRenderProps } from "../../core";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<VelcronRenderProps<VelcronGridDefinition>>) => any;
|
29
3
|
export default _default;
|
@@ -1,29 +1,3 @@
|
|
1
|
-
import { VelcronLinkDefinition,
|
2
|
-
declare const _default:
|
3
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
definition: import("vue").Prop<VelcronLinkDefinition, VelcronLinkDefinition>;
|
5
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
7
|
-
P: {};
|
8
|
-
B: {};
|
9
|
-
D: {};
|
10
|
-
C: {};
|
11
|
-
M: {};
|
12
|
-
Defaults: {};
|
13
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
14
|
-
definition: import("vue").Prop<VelcronLinkDefinition, VelcronLinkDefinition>;
|
15
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
16
|
-
}>>, {}, {}, {}, {}, {}>;
|
17
|
-
__isFragment?: never;
|
18
|
-
__isTeleport?: never;
|
19
|
-
__isSuspense?: never;
|
20
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
21
|
-
definition: import("vue").Prop<VelcronLinkDefinition, VelcronLinkDefinition>;
|
22
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
23
|
-
}>>, {}, {}, {}, {}, 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 & {
|
24
|
-
propsDefinition: Omit<Readonly<{} & {
|
25
|
-
definition?: VelcronLinkDefinition;
|
26
|
-
renderContext?: VelcronRenderContext;
|
27
|
-
}>, never>;
|
28
|
-
};
|
1
|
+
import { VelcronLinkDefinition, VelcronRenderProps } from "../../core";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<VelcronRenderProps<VelcronLinkDefinition>>) => any;
|
29
3
|
export default _default;
|
@@ -1,29 +1,3 @@
|
|
1
|
-
import { VelcronProgressCircleDefinition,
|
2
|
-
declare const _default:
|
3
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
definition: import("vue").Prop<VelcronProgressCircleDefinition, VelcronProgressCircleDefinition>;
|
5
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
7
|
-
P: {};
|
8
|
-
B: {};
|
9
|
-
D: {};
|
10
|
-
C: {};
|
11
|
-
M: {};
|
12
|
-
Defaults: {};
|
13
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
14
|
-
definition: import("vue").Prop<VelcronProgressCircleDefinition, VelcronProgressCircleDefinition>;
|
15
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
16
|
-
}>>, {}, {}, {}, {}, {}>;
|
17
|
-
__isFragment?: never;
|
18
|
-
__isTeleport?: never;
|
19
|
-
__isSuspense?: never;
|
20
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
21
|
-
definition: import("vue").Prop<VelcronProgressCircleDefinition, VelcronProgressCircleDefinition>;
|
22
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
23
|
-
}>>, {}, {}, {}, {}, 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 & {
|
24
|
-
propsDefinition: Omit<Readonly<{} & {
|
25
|
-
definition?: VelcronProgressCircleDefinition;
|
26
|
-
renderContext?: VelcronRenderContext;
|
27
|
-
}>, never>;
|
28
|
-
};
|
1
|
+
import { VelcronProgressCircleDefinition, VelcronRenderProps } from "../../core";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<VelcronRenderProps<VelcronProgressCircleDefinition>>) => any;
|
29
3
|
export default _default;
|
@@ -1,29 +1,3 @@
|
|
1
|
-
import { VelcronSlotDefinition } from "../../core";
|
2
|
-
declare const _default:
|
3
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
definition: import("vue").Prop<VelcronSlotDefinition, VelcronSlotDefinition>;
|
5
|
-
renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
|
6
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
7
|
-
P: {};
|
8
|
-
B: {};
|
9
|
-
D: {};
|
10
|
-
C: {};
|
11
|
-
M: {};
|
12
|
-
Defaults: {};
|
13
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
14
|
-
definition: import("vue").Prop<VelcronSlotDefinition, VelcronSlotDefinition>;
|
15
|
-
renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
|
16
|
-
}>>, {}, {}, {}, {}, {}>;
|
17
|
-
__isFragment?: never;
|
18
|
-
__isTeleport?: never;
|
19
|
-
__isSuspense?: never;
|
20
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
21
|
-
definition: import("vue").Prop<VelcronSlotDefinition, VelcronSlotDefinition>;
|
22
|
-
renderContext: import("vue").Prop<import("../../core").VelcronRenderContext, import("../../core").VelcronRenderContext>;
|
23
|
-
}>>, {}, {}, {}, {}, 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 & {
|
24
|
-
propsDefinition: Omit<Readonly<{} & {
|
25
|
-
definition?: VelcronSlotDefinition;
|
26
|
-
renderContext?: import("../../core").VelcronRenderContext;
|
27
|
-
}>, never>;
|
28
|
-
};
|
1
|
+
import { VelcronRenderProps, VelcronSlotDefinition } from "../../core";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<VelcronRenderProps<VelcronSlotDefinition>>) => any;
|
29
3
|
export default _default;
|
@@ -1,29 +1,3 @@
|
|
1
|
-
import {
|
2
|
-
declare const _default:
|
3
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
definition: import("vue").Prop<VelcronWebViewDefinition, VelcronWebViewDefinition>;
|
5
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
7
|
-
P: {};
|
8
|
-
B: {};
|
9
|
-
D: {};
|
10
|
-
C: {};
|
11
|
-
M: {};
|
12
|
-
Defaults: {};
|
13
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
14
|
-
definition: import("vue").Prop<VelcronWebViewDefinition, VelcronWebViewDefinition>;
|
15
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
16
|
-
}>>, {}, {}, {}, {}, {}>;
|
17
|
-
__isFragment?: never;
|
18
|
-
__isTeleport?: never;
|
19
|
-
__isSuspense?: never;
|
20
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
21
|
-
definition: import("vue").Prop<VelcronWebViewDefinition, VelcronWebViewDefinition>;
|
22
|
-
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
23
|
-
}>>, {}, {}, {}, {}, 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 & {
|
24
|
-
propsDefinition: Omit<Readonly<{} & {
|
25
|
-
definition?: VelcronWebViewDefinition;
|
26
|
-
renderContext?: VelcronRenderContext;
|
27
|
-
}>, never>;
|
28
|
-
};
|
1
|
+
import { VelcronRenderProps, VelcronWebViewDefinition } from "../../core";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<VelcronRenderProps<VelcronWebViewDefinition>>) => any;
|
29
3
|
export default _default;
|
package/messaging/package.json
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx messaging",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
package/models/package.json
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx models",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
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.341-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",
|
@@ -9,7 +9,7 @@
|
|
9
9
|
},
|
10
10
|
"repository": {
|
11
11
|
"type": "git",
|
12
|
-
"url": "git+https://github.com/
|
12
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx.git"
|
13
13
|
},
|
14
14
|
"keywords": [
|
15
15
|
"omnia",
|
@@ -18,9 +18,9 @@
|
|
18
18
|
"office365",
|
19
19
|
"sharepoint"
|
20
20
|
],
|
21
|
-
"author": "
|
21
|
+
"author": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.341-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
@@ -40,7 +40,7 @@
|
|
40
40
|
"devDependencies": {},
|
41
41
|
"typings": "./index.d.ts",
|
42
42
|
"bugs": {
|
43
|
-
"url": "https://github.com/
|
43
|
+
"url": "https://github.com/omniaintranet/OmniaFx/issues"
|
44
44
|
},
|
45
|
-
"homepage": "https://github.com/
|
45
|
+
"homepage": "https://github.com/omniaintranet/OmniaFx#readme"
|
46
46
|
}
|
package/services/package.json
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx services",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
package/sp/models/package.json
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx sp",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
package/sp/package.json
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx sp",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
package/spfx/package.json
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx spfx",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx spfx tooling",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
package/stores/package.json
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia Fx Stores",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx.git"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
package/ux/admin/package.json
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx ux admin",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
package/ux/app/package.json
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx ux app",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
package/ux/editor/package.json
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx ux app",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
package/ux/package.json
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx ux",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx ux admin",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|
package/ux/vuetify/package.json
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
"version": "1.0.0",
|
4
4
|
"description": "Omnia fx ux vuetify",
|
5
5
|
"typings": "./index.d.ts",
|
6
|
-
"author": "
|
6
|
+
"author": "Omnia Digital Workplace AB",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": {
|
9
9
|
"type": "git",
|
10
|
-
"url": "git+https://github.com/
|
10
|
+
"url": "git+https://github.com/omniaintranet/OmniaFx"
|
11
11
|
}
|
12
|
-
}
|
12
|
+
}
|