@omnia/fx 8.0.282-dev → 8.0.285-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 +2 -0
- package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.d.ts +26 -0
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +110 -0
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +110 -0
- package/internal-do-not-import-from-here/ux/datetimezonerenderer/DateTimeZoneRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/editorchrome/stores/EditorSettingsStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/rules/EditorRules.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/apis/LayoutProviderApis.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutStepRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/markdown/MarkdownRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/models/Velcron.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/permissioninput/loc/localize.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyResolverEditor.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/velcron/stores/VelcronDefinitionStore.d.ts +6 -2
- package/package.json +2 -2
@@ -2,7 +2,7 @@ import { DateTimeZone } from "@omnia/fx/models";
|
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
size: {
|
5
|
-
type: import("vue").PropType<"
|
5
|
+
type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl">;
|
6
6
|
};
|
7
7
|
showTimeZone: {
|
8
8
|
type: import("vue").PropType<boolean>;
|
@@ -26,7 +26,7 @@ declare const _default: {
|
|
26
26
|
};
|
27
27
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
28
28
|
size: {
|
29
|
-
type: import("vue").PropType<"
|
29
|
+
type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl">;
|
30
30
|
};
|
31
31
|
showTimeZone: {
|
32
32
|
type: import("vue").PropType<boolean>;
|
@@ -57,7 +57,7 @@ declare const _default: {
|
|
57
57
|
Defaults: {};
|
58
58
|
}, Readonly<import("vue").ExtractPropTypes<{
|
59
59
|
size: {
|
60
|
-
type: import("vue").PropType<"
|
60
|
+
type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl">;
|
61
61
|
};
|
62
62
|
showTimeZone: {
|
63
63
|
type: import("vue").PropType<boolean>;
|
@@ -85,7 +85,7 @@ declare const _default: {
|
|
85
85
|
__isSuspense?: never;
|
86
86
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
87
87
|
size: {
|
88
|
-
type: import("vue").PropType<"
|
88
|
+
type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl">;
|
89
89
|
};
|
90
90
|
showTimeZone: {
|
91
91
|
type: import("vue").PropType<boolean>;
|
@@ -111,7 +111,7 @@ declare const _default: {
|
|
111
111
|
propsDefinition: Omit<Readonly<{} & {
|
112
112
|
value?: DateTimeZone<string>;
|
113
113
|
label?: string;
|
114
|
-
size?: "
|
114
|
+
size?: "l" | "s" | "xs" | "m" | "xl";
|
115
115
|
variant?: "time" | "date" | "date-time";
|
116
116
|
dateFormat?: string;
|
117
117
|
showTimeZone?: boolean;
|
@@ -13,7 +13,7 @@ export declare class EditorSettingsStore extends Store {
|
|
13
13
|
level: number;
|
14
14
|
}>;
|
15
15
|
previewMode: import("@omnia/fx/stores").StoreState<boolean>;
|
16
|
-
activeDisplaySize: import("@omnia/fx/stores").StoreState<"
|
16
|
+
activeDisplaySize: import("@omnia/fx/stores").StoreState<"l" | "s" | "m">;
|
17
17
|
onActivated(): void;
|
18
18
|
onDisposing(): void;
|
19
19
|
/**
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import { InternalAppScopedLayoutProvider, VersionedLayout } from "@omnia/fx/models";
|
2
|
+
export declare class LayoutProvider implements InternalAppScopedLayoutProvider {
|
3
|
+
private layouts;
|
4
|
+
registerLayouts(...registerLayouts: VersionedLayout[]): void;
|
5
|
+
getAllLayouts(): VersionedLayout[];
|
6
|
+
}
|
@@ -92,9 +92,9 @@ declare const _default: {
|
|
92
92
|
settings?: SectionSettings;
|
93
93
|
themeTargetId?: string;
|
94
94
|
step?: SectionItem<SteppedSectionItemSettings>;
|
95
|
+
designRender?: boolean;
|
95
96
|
layoutId?: string;
|
96
97
|
useScrollMargingFix?: boolean;
|
97
|
-
designRender?: boolean;
|
98
98
|
}>, never>;
|
99
99
|
};
|
100
100
|
export default _default;
|
@@ -12,7 +12,7 @@ declare const _default: {
|
|
12
12
|
type: import("vue").PropType<TextBlueprint>;
|
13
13
|
};
|
14
14
|
size: {
|
15
|
-
type: import("vue").PropType<"
|
15
|
+
type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
|
16
16
|
};
|
17
17
|
typography: {
|
18
18
|
type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
|
@@ -121,7 +121,7 @@ declare const _default: {
|
|
121
121
|
type: import("vue").PropType<TextBlueprint>;
|
122
122
|
};
|
123
123
|
size: {
|
124
|
-
type: import("vue").PropType<"
|
124
|
+
type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
|
125
125
|
};
|
126
126
|
typography: {
|
127
127
|
type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
|
@@ -239,7 +239,7 @@ declare const _default: {
|
|
239
239
|
type: import("vue").PropType<TextBlueprint>;
|
240
240
|
};
|
241
241
|
size: {
|
242
|
-
type: import("vue").PropType<"
|
242
|
+
type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
|
243
243
|
};
|
244
244
|
typography: {
|
245
245
|
type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
|
@@ -354,7 +354,7 @@ declare const _default: {
|
|
354
354
|
type: import("vue").PropType<TextBlueprint>;
|
355
355
|
};
|
356
356
|
size: {
|
357
|
-
type: import("vue").PropType<"
|
357
|
+
type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
|
358
358
|
};
|
359
359
|
typography: {
|
360
360
|
type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
|
@@ -520,7 +520,7 @@ declare const _default: {
|
|
520
520
|
typography?: "text" | "title" | "navigation" | TypographyTypes;
|
521
521
|
blueprint?: TextBlueprint;
|
522
522
|
container?: boolean;
|
523
|
-
size?: "
|
523
|
+
size?: "l" | "s" | "xs" | "m" | "xl" | TypographySizes;
|
524
524
|
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
525
525
|
toned?: boolean;
|
526
526
|
placeholder?: string;
|
@@ -5,7 +5,7 @@ declare const _default: {
|
|
5
5
|
type: import("vue").PropType<TextBlueprint>;
|
6
6
|
};
|
7
7
|
size: {
|
8
|
-
type: import("vue").PropType<"
|
8
|
+
type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
|
9
9
|
};
|
10
10
|
typography: {
|
11
11
|
type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
|
@@ -22,7 +22,7 @@ declare const _default: {
|
|
22
22
|
type: import("vue").PropType<TextBlueprint>;
|
23
23
|
};
|
24
24
|
size: {
|
25
|
-
type: import("vue").PropType<"
|
25
|
+
type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
|
26
26
|
};
|
27
27
|
typography: {
|
28
28
|
type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
|
@@ -46,7 +46,7 @@ declare const _default: {
|
|
46
46
|
type: import("vue").PropType<TextBlueprint>;
|
47
47
|
};
|
48
48
|
size: {
|
49
|
-
type: import("vue").PropType<"
|
49
|
+
type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
|
50
50
|
};
|
51
51
|
typography: {
|
52
52
|
type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
|
@@ -67,7 +67,7 @@ declare const _default: {
|
|
67
67
|
type: import("vue").PropType<TextBlueprint>;
|
68
68
|
};
|
69
69
|
size: {
|
70
|
-
type: import("vue").PropType<"
|
70
|
+
type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
|
71
71
|
};
|
72
72
|
typography: {
|
73
73
|
type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
|
@@ -85,7 +85,7 @@ declare const _default: {
|
|
85
85
|
} & {
|
86
86
|
typography?: "text" | "title" | "navigation" | TypographyTypes;
|
87
87
|
blueprint?: TextBlueprint;
|
88
|
-
size?: "
|
88
|
+
size?: "l" | "s" | "xs" | "m" | "xl" | TypographySizes;
|
89
89
|
toned?: boolean;
|
90
90
|
}>, never>;
|
91
91
|
};
|
@@ -1,7 +1,8 @@
|
|
1
|
+
import { VelcronPropertyDefinitionValue } from "@omnia/fx-models";
|
1
2
|
import { IDataSourcePropertySelection } from "../properties/models/PropertyPicker";
|
2
3
|
export interface VelcronPropertyDefinitionValueResolver {
|
3
4
|
source?: IDataSourcePropertySelection;
|
4
5
|
}
|
5
|
-
export interface VelcronPropertyEditorValue {
|
6
|
-
[key: string]:
|
6
|
+
export interface VelcronPropertyEditorValue<T extends VelcronPropertyDefinitionValueResolver | VelcronPropertyDefinitionValue> {
|
7
|
+
[key: string]: T;
|
7
8
|
}
|
package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyResolverEditor.d.ts
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
import { EditorLocation, VelcronPropertyResolverEditorSettings } from "@omnia/fx-models";
|
2
|
-
import { VelcronPropertyEditorValue } from "@omnia/fx/ux";
|
2
|
+
import { VelcronPropertyDefinitionValueResolver, VelcronPropertyEditorValue } from "@omnia/fx/ux";
|
3
3
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
4
4
|
location?: EditorLocation;
|
5
5
|
} & {
|
6
6
|
settings?: VelcronPropertyResolverEditorSettings;
|
7
7
|
} & {
|
8
|
-
"emit:update:modelValue": (value: VelcronPropertyEditorValue) => void;
|
8
|
+
"emit:update:modelValue": (value: VelcronPropertyEditorValue<VelcronPropertyDefinitionValueResolver>) => void;
|
9
9
|
} & {
|
10
|
-
"v-model"?: VelcronPropertyEditorValue
|
10
|
+
"v-model"?: VelcronPropertyEditorValue<VelcronPropertyDefinitionValueResolver>;
|
11
11
|
} & {
|
12
|
-
modelValue?: VelcronPropertyEditorValue
|
12
|
+
modelValue?: VelcronPropertyEditorValue<VelcronPropertyDefinitionValueResolver>;
|
13
13
|
}>) => any;
|
14
14
|
export default _default;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { DynamicState, VelcronAppDefinition, VelcronDefinitionCategoryRegistration, VelcronDefinitionRegistration, VelcronDefinitionRegistrationWithoutApp, VelcronDefinitionRendererTypeRegistration, VelcronRendererResolverReference, guid } from "@omnia/fx-models";
|
2
|
-
import { VelcronPropertyEditorValue } from "../../models";
|
2
|
+
import { VelcronPropertyDefinitionValueResolver, VelcronPropertyEditorValue } from "../../models";
|
3
3
|
export declare const useVelcronDefinitionStore: () => {
|
4
4
|
state: {
|
5
5
|
definitions: VelcronDefinitionRegistration<object>[];
|
@@ -27,7 +27,11 @@ export declare const useVelcronDefinitionStore: () => {
|
|
27
27
|
filteredRendererTypes(filters: Array<guid>): any[];
|
28
28
|
readonly rendererTypes: VelcronDefinitionRendererTypeRegistration[];
|
29
29
|
stateByDefinition(def: VelcronAppDefinition): {
|
30
|
-
|
30
|
+
propertyResolver<T = VelcronPropertyDefinitionValueResolver>(): {
|
31
|
+
match: boolean;
|
32
|
+
state: VelcronPropertyEditorValue<T>;
|
33
|
+
setState(value: VelcronPropertyEditorValue<T>): void;
|
34
|
+
};
|
31
35
|
};
|
32
36
|
};
|
33
37
|
actions: {
|
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.285-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": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.285-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|