@omnia/fx 8.0.77-vnext → 8.0.79-vnext
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/microsoftteams/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/inputlanguagepicker/IInputLanguagePicker.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/inputlanguagepicker/InputLanguagePicker.d.ts +116 -43
- package/internal-do-not-import-from-here/ux/models/MultilingualInputStyles.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/multilingualinput/MultilingualInput.d.ts +30 -30
- package/internal-do-not-import-from-here/ux/oxide/tooltip/Tooltip.d.ts +14 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +249 -0
- package/package.json +2 -2
@@ -117,7 +117,7 @@ export interface IVueComponentBase<Props = VueComponentBaseProps, EventsWithOn =
|
|
117
117
|
};
|
118
118
|
createVueNode(element: string | models.GuidValue, props?: RawProps, children?: () => RawChildren, onComponentCreated?: (instance: any) => void): VNode;
|
119
119
|
}
|
120
|
-
export type VueComponentBaseProps = Pick<HTMLAttributes, "id" | "class" | "style" | "onClick"> & Pick<EventHandlers<Events>, "onKeydown" | "onKeyup" | "onKeypress"> & {
|
120
|
+
export type VueComponentBaseProps = Pick<HTMLAttributes, "id" | "class" | "style" | "onClick" | "tabindex"> & Pick<EventHandlers<Events>, "onKeydown" | "onKeyup" | "onKeypress"> & {
|
121
121
|
themeTargetId?: string | models.GuidValue;
|
122
122
|
themeDefinitionId?: string | models.GuidValue;
|
123
123
|
themeDefinition?: object;
|
@@ -1,5 +1,4 @@
|
|
1
1
|
import { MultilingualContext } from "../MultilingualContext";
|
2
|
-
import { TsxAllowUnknowProperties } from "../TsxAllowUnknowProperties";
|
3
2
|
export interface IInputLanguagePickerProperties {
|
4
3
|
/**Label */
|
5
4
|
dark?: boolean;
|
@@ -11,16 +10,3 @@ export interface IInputLanguagePicker extends IInputLanguagePickerProperties {
|
|
11
10
|
[name: string]: any;
|
12
11
|
multilingualContext?: MultilingualContext;
|
13
12
|
}
|
14
|
-
declare global {
|
15
|
-
namespace JSX {
|
16
|
-
interface Element {
|
17
|
-
}
|
18
|
-
interface ElementClass {
|
19
|
-
}
|
20
|
-
interface ElementAttributesProperty {
|
21
|
-
}
|
22
|
-
interface IntrinsicElements {
|
23
|
-
"omfx-input-language-picker": TsxAllowUnknowProperties<IInputLanguagePicker>;
|
24
|
-
}
|
25
|
-
}
|
26
|
-
}
|
@@ -1,46 +1,119 @@
|
|
1
1
|
import { MultilingualContext } from "..";
|
2
|
-
import { IWebComponentInstance, OmniaContext } from "../..";
|
3
|
-
import { Language } from "../../models";
|
4
|
-
import { MultilingualStore } from "../../stores";
|
5
|
-
import { VueComponentBase } from "../VueComponentBase";
|
6
|
-
import { IInputLanguagePicker } from "./IInputLanguagePicker";
|
7
|
-
import { InputLanguagePickerLocalization } from "./loc/localize";
|
8
|
-
import { InputLanguageStore } from "./stores";
|
9
2
|
import "./InputLanguagePicker.css";
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
3
|
+
declare const _default: {
|
4
|
+
new (...args: any[]): {
|
5
|
+
$: import("vue").ComponentInternalInstance;
|
6
|
+
$data: {};
|
7
|
+
$props: {
|
8
|
+
style?: unknown;
|
9
|
+
class?: unknown;
|
10
|
+
key?: string | number | symbol;
|
11
|
+
ref?: import("vue").VNodeRef;
|
12
|
+
ref_for?: boolean;
|
13
|
+
ref_key?: string;
|
14
|
+
onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
15
|
+
[key: string]: any;
|
16
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
17
|
+
[key: string]: any;
|
18
|
+
}>) => void)[];
|
19
|
+
onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
20
|
+
[key: string]: any;
|
21
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
22
|
+
[key: string]: any;
|
23
|
+
}>) => void)[];
|
24
|
+
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
25
|
+
[key: string]: any;
|
26
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
27
|
+
[key: string]: any;
|
28
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
29
|
+
[key: string]: any;
|
30
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
31
|
+
[key: string]: any;
|
32
|
+
}>) => void)[];
|
33
|
+
onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
34
|
+
[key: string]: any;
|
35
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
36
|
+
[key: string]: any;
|
37
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
38
|
+
[key: string]: any;
|
39
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
40
|
+
[key: string]: any;
|
41
|
+
}>) => void)[];
|
42
|
+
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
43
|
+
[key: string]: any;
|
44
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
45
|
+
[key: string]: any;
|
46
|
+
}>) => void)[];
|
47
|
+
onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
48
|
+
[key: string]: any;
|
49
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
50
|
+
[key: string]: any;
|
51
|
+
}>) => void)[];
|
52
|
+
readonly multilingualContext?: MultilingualContext;
|
53
|
+
readonly "multilingual-context"?: MultilingualContext;
|
54
|
+
};
|
55
|
+
$attrs: {
|
56
|
+
[x: string]: unknown;
|
57
|
+
};
|
58
|
+
$refs: {
|
59
|
+
[x: string]: unknown;
|
60
|
+
};
|
61
|
+
$slots: Readonly<{
|
62
|
+
[name: string]: import("vue").Slot<any>;
|
63
|
+
}>;
|
64
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
65
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
66
|
+
$emit: (event: string, ...args: any[]) => void;
|
67
|
+
$el: any;
|
68
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
69
|
+
"multilingual-context": {
|
70
|
+
type: import("vue").PropType<MultilingualContext>;
|
71
|
+
};
|
72
|
+
multilingualContext: {
|
73
|
+
type: import("vue").PropType<MultilingualContext>;
|
74
|
+
};
|
75
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
76
|
+
beforeCreate?: (() => void) | (() => void)[];
|
77
|
+
created?: (() => void) | (() => void)[];
|
78
|
+
beforeMount?: (() => void) | (() => void)[];
|
79
|
+
mounted?: (() => void) | (() => void)[];
|
80
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
81
|
+
updated?: (() => void) | (() => void)[];
|
82
|
+
activated?: (() => void) | (() => void)[];
|
83
|
+
deactivated?: (() => void) | (() => void)[];
|
84
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
85
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
86
|
+
destroyed?: (() => void) | (() => void)[];
|
87
|
+
unmounted?: (() => void) | (() => void)[];
|
88
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
89
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
90
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
91
|
+
};
|
92
|
+
$forceUpdate: () => void;
|
93
|
+
$nextTick: typeof import("vue").nextTick;
|
94
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
95
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
96
|
+
"multilingual-context": {
|
97
|
+
type: import("vue").PropType<MultilingualContext>;
|
98
|
+
};
|
99
|
+
multilingualContext: {
|
100
|
+
type: import("vue").PropType<MultilingualContext>;
|
101
|
+
};
|
102
|
+
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
103
|
+
__isFragment?: never;
|
104
|
+
__isTeleport?: never;
|
105
|
+
__isSuspense?: never;
|
106
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
107
|
+
"multilingual-context": {
|
108
|
+
type: import("vue").PropType<MultilingualContext>;
|
23
109
|
};
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
created(): void;
|
35
|
-
init(): void;
|
36
|
-
get selectedInputLanguage(): Language;
|
37
|
-
private loadNonSelectedLanguages;
|
38
|
-
changeLanguage(language: Language): void;
|
39
|
-
removeCountyFromDisplayName(displayName: string): string;
|
40
|
-
loadAllLanguages(): void;
|
41
|
-
loadGridMode(): void;
|
42
|
-
hideNonSystemLanguages(): void;
|
43
|
-
getFlagClass(language: Language): void;
|
44
|
-
renderLanguage(item: Language): JSX.Element;
|
45
|
-
render(): JSX.Element;
|
46
|
-
}
|
110
|
+
multilingualContext: {
|
111
|
+
type: import("vue").PropType<MultilingualContext>;
|
112
|
+
};
|
113
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
114
|
+
propsDefinition: Omit<Readonly<{} & {
|
115
|
+
multilingualContext?: MultilingualContext;
|
116
|
+
"multilingual-context"?: MultilingualContext;
|
117
|
+
}>, never>;
|
118
|
+
};
|
119
|
+
export default _default;
|
@@ -1,16 +1,16 @@
|
|
1
|
+
import { ColorDefinition } from "@omnia/fx-models";
|
1
2
|
import { types } from "typestyle";
|
2
|
-
import { ITheming } from "..";
|
3
3
|
export declare const MultilingualInputStyles: {
|
4
4
|
flag: types.NestedCSSProperties;
|
5
5
|
multilingualBodyWrapper: types.NestedCSSProperties;
|
6
6
|
listViewWrapper: types.NestedCSSProperties;
|
7
|
-
selectedFlag: (theming:
|
7
|
+
selectedFlag: (theming: ColorDefinition) => types.NestedCSSProperties;
|
8
8
|
multilingualWrapper: types.NestedCSSProperties;
|
9
9
|
listViewFlag: types.NestedCSSProperties;
|
10
10
|
fieldValidation: types.NestedCSSProperties;
|
11
11
|
inputPadding: types.NestedCSSProperties;
|
12
|
-
label: (theming:
|
13
|
-
disabledLabel: (theming:
|
14
|
-
focusedLabel: (theming:
|
15
|
-
icon: (theming:
|
12
|
+
label: (theming: ColorDefinition) => types.NestedCSSProperties;
|
13
|
+
disabledLabel: (theming: ColorDefinition) => types.NestedCSSProperties;
|
14
|
+
focusedLabel: (theming: ColorDefinition) => types.NestedCSSProperties;
|
15
|
+
icon: (theming: ColorDefinition) => types.NestedCSSProperties;
|
16
16
|
};
|
@@ -172,30 +172,30 @@ declare const _default: {
|
|
172
172
|
flag: import("typestyle/lib/types").NestedCSSProperties;
|
173
173
|
multilingualBodyWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
174
174
|
listViewWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
175
|
-
selectedFlag: (theming: import("@omnia/fx
|
175
|
+
selectedFlag: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
176
176
|
multilingualWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
177
177
|
listViewFlag: import("typestyle/lib/types").NestedCSSProperties;
|
178
178
|
fieldValidation: import("typestyle/lib/types").NestedCSSProperties;
|
179
179
|
inputPadding: import("typestyle/lib/types").NestedCSSProperties;
|
180
|
-
label: (theming: import("@omnia/fx
|
181
|
-
disabledLabel: (theming: import("@omnia/fx
|
182
|
-
focusedLabel: (theming: import("@omnia/fx
|
183
|
-
icon: (theming: import("@omnia/fx
|
180
|
+
label: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
181
|
+
disabledLabel: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
182
|
+
focusedLabel: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
183
|
+
icon: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
184
184
|
}>>;
|
185
185
|
} & {
|
186
186
|
type: import("vue").PropType<Partial<{
|
187
187
|
flag: import("typestyle/lib/types").NestedCSSProperties;
|
188
188
|
multilingualBodyWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
189
189
|
listViewWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
190
|
-
selectedFlag: (theming: import("@omnia/fx
|
190
|
+
selectedFlag: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
191
191
|
multilingualWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
192
192
|
listViewFlag: import("typestyle/lib/types").NestedCSSProperties;
|
193
193
|
fieldValidation: import("typestyle/lib/types").NestedCSSProperties;
|
194
194
|
inputPadding: import("typestyle/lib/types").NestedCSSProperties;
|
195
|
-
label: (theming: import("@omnia/fx
|
196
|
-
disabledLabel: (theming: import("@omnia/fx
|
197
|
-
focusedLabel: (theming: import("@omnia/fx
|
198
|
-
icon: (theming: import("@omnia/fx
|
195
|
+
label: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
196
|
+
disabledLabel: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
197
|
+
focusedLabel: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
198
|
+
icon: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
199
199
|
}>>;
|
200
200
|
};
|
201
201
|
"multilingual-context": {
|
@@ -331,30 +331,30 @@ declare const _default: {
|
|
331
331
|
flag: import("typestyle/lib/types").NestedCSSProperties;
|
332
332
|
multilingualBodyWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
333
333
|
listViewWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
334
|
-
selectedFlag: (theming: import("@omnia/fx
|
334
|
+
selectedFlag: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
335
335
|
multilingualWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
336
336
|
listViewFlag: import("typestyle/lib/types").NestedCSSProperties;
|
337
337
|
fieldValidation: import("typestyle/lib/types").NestedCSSProperties;
|
338
338
|
inputPadding: import("typestyle/lib/types").NestedCSSProperties;
|
339
|
-
label: (theming: import("@omnia/fx
|
340
|
-
disabledLabel: (theming: import("@omnia/fx
|
341
|
-
focusedLabel: (theming: import("@omnia/fx
|
342
|
-
icon: (theming: import("@omnia/fx
|
339
|
+
label: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
340
|
+
disabledLabel: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
341
|
+
focusedLabel: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
342
|
+
icon: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
343
343
|
}>>;
|
344
344
|
} & {
|
345
345
|
type: import("vue").PropType<Partial<{
|
346
346
|
flag: import("typestyle/lib/types").NestedCSSProperties;
|
347
347
|
multilingualBodyWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
348
348
|
listViewWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
349
|
-
selectedFlag: (theming: import("@omnia/fx
|
349
|
+
selectedFlag: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
350
350
|
multilingualWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
351
351
|
listViewFlag: import("typestyle/lib/types").NestedCSSProperties;
|
352
352
|
fieldValidation: import("typestyle/lib/types").NestedCSSProperties;
|
353
353
|
inputPadding: import("typestyle/lib/types").NestedCSSProperties;
|
354
|
-
label: (theming: import("@omnia/fx
|
355
|
-
disabledLabel: (theming: import("@omnia/fx
|
356
|
-
focusedLabel: (theming: import("@omnia/fx
|
357
|
-
icon: (theming: import("@omnia/fx
|
354
|
+
label: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
355
|
+
disabledLabel: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
356
|
+
focusedLabel: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
357
|
+
icon: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
358
358
|
}>>;
|
359
359
|
};
|
360
360
|
"multilingual-context": {
|
@@ -472,30 +472,30 @@ declare const _default: {
|
|
472
472
|
flag: import("typestyle/lib/types").NestedCSSProperties;
|
473
473
|
multilingualBodyWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
474
474
|
listViewWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
475
|
-
selectedFlag: (theming: import("@omnia/fx
|
475
|
+
selectedFlag: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
476
476
|
multilingualWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
477
477
|
listViewFlag: import("typestyle/lib/types").NestedCSSProperties;
|
478
478
|
fieldValidation: import("typestyle/lib/types").NestedCSSProperties;
|
479
479
|
inputPadding: import("typestyle/lib/types").NestedCSSProperties;
|
480
|
-
label: (theming: import("@omnia/fx
|
481
|
-
disabledLabel: (theming: import("@omnia/fx
|
482
|
-
focusedLabel: (theming: import("@omnia/fx
|
483
|
-
icon: (theming: import("@omnia/fx
|
480
|
+
label: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
481
|
+
disabledLabel: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
482
|
+
focusedLabel: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
483
|
+
icon: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
484
484
|
}>>;
|
485
485
|
} & {
|
486
486
|
type: import("vue").PropType<Partial<{
|
487
487
|
flag: import("typestyle/lib/types").NestedCSSProperties;
|
488
488
|
multilingualBodyWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
489
489
|
listViewWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
490
|
-
selectedFlag: (theming: import("@omnia/fx
|
490
|
+
selectedFlag: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
491
491
|
multilingualWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
492
492
|
listViewFlag: import("typestyle/lib/types").NestedCSSProperties;
|
493
493
|
fieldValidation: import("typestyle/lib/types").NestedCSSProperties;
|
494
494
|
inputPadding: import("typestyle/lib/types").NestedCSSProperties;
|
495
|
-
label: (theming: import("@omnia/fx
|
496
|
-
disabledLabel: (theming: import("@omnia/fx
|
497
|
-
focusedLabel: (theming: import("@omnia/fx
|
498
|
-
icon: (theming: import("@omnia/fx
|
495
|
+
label: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
496
|
+
disabledLabel: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
497
|
+
focusedLabel: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
498
|
+
icon: (theming: import("@omnia/fx-models").ColorDefinition) => import("typestyle/lib/types").NestedCSSProperties;
|
499
499
|
}>>;
|
500
500
|
};
|
501
501
|
"multilingual-context": {
|
@@ -56,6 +56,7 @@ declare const _default: {
|
|
56
56
|
activator?: () => VNodeChild;
|
57
57
|
};
|
58
58
|
readonly location?: Position;
|
59
|
+
readonly openOnClick?: boolean;
|
59
60
|
readonly openOnHover?: boolean;
|
60
61
|
readonly activateOnLength?: number;
|
61
62
|
};
|
@@ -82,11 +83,15 @@ declare const _default: {
|
|
82
83
|
type: import("vue").PropType<Position>;
|
83
84
|
required: false;
|
84
85
|
};
|
86
|
+
openOnClick: {
|
87
|
+
type: import("vue").PropType<boolean>;
|
88
|
+
};
|
85
89
|
openOnHover: {
|
86
90
|
type: import("vue").PropType<boolean>;
|
87
91
|
};
|
88
92
|
activateOnLength: {
|
89
93
|
type: import("vue").PropType<number>;
|
94
|
+
required: false;
|
90
95
|
};
|
91
96
|
text: {
|
92
97
|
type: import("vue").PropType<string>;
|
@@ -121,11 +126,15 @@ declare const _default: {
|
|
121
126
|
type: import("vue").PropType<Position>;
|
122
127
|
required: false;
|
123
128
|
};
|
129
|
+
openOnClick: {
|
130
|
+
type: import("vue").PropType<boolean>;
|
131
|
+
};
|
124
132
|
openOnHover: {
|
125
133
|
type: import("vue").PropType<boolean>;
|
126
134
|
};
|
127
135
|
activateOnLength: {
|
128
136
|
type: import("vue").PropType<number>;
|
137
|
+
required: false;
|
129
138
|
};
|
130
139
|
text: {
|
131
140
|
type: import("vue").PropType<string>;
|
@@ -144,11 +153,15 @@ declare const _default: {
|
|
144
153
|
type: import("vue").PropType<Position>;
|
145
154
|
required: false;
|
146
155
|
};
|
156
|
+
openOnClick: {
|
157
|
+
type: import("vue").PropType<boolean>;
|
158
|
+
};
|
147
159
|
openOnHover: {
|
148
160
|
type: import("vue").PropType<boolean>;
|
149
161
|
};
|
150
162
|
activateOnLength: {
|
151
163
|
type: import("vue").PropType<number>;
|
164
|
+
required: false;
|
152
165
|
};
|
153
166
|
text: {
|
154
167
|
type: import("vue").PropType<string>;
|
@@ -162,6 +175,7 @@ declare const _default: {
|
|
162
175
|
activator?: () => VNodeChild;
|
163
176
|
};
|
164
177
|
location?: Position;
|
178
|
+
openOnClick?: boolean;
|
165
179
|
openOnHover?: boolean;
|
166
180
|
activateOnLength?: number;
|
167
181
|
}>, never>;
|
@@ -37,6 +37,7 @@ import wc9cbe10e4fe1a48929727942cea5f7338 from './ux/identitypicker/IdentityPick
|
|
37
37
|
import wcec81357974804c539bff6c58a8785c22 from './ux/identitypicker/IdentityPicker';
|
38
38
|
import wc5d74b2de65164761a3dce6a534b64bd1 from './ux/identitypicker/IdentityPickerDialog';
|
39
39
|
import wc70593d481fa54e68be9f4fe41f0f5c92 from './ux/identitypicker/IdentityPickerButton';
|
40
|
+
import wc91919b3f54de42dab709575b8a9ca233 from './ux/inputlanguagepicker/InputLanguagePicker';
|
40
41
|
import wc6c2ac8bf4da44a2b8e544eaf5b42099f from './ux/limited-label/LimitedLabel';
|
41
42
|
import wcf365f5cb3a694c20be7b96423bbc3eca from './ux/magiclink/MagicLink';
|
42
43
|
import wc744b3f31e00c4815b63ecaf638ad7a7a from './ux/markdown/MarkdownEditor';
|
@@ -286,6 +287,7 @@ declare global {
|
|
286
287
|
"omfx-identity-picker": typeof wcec81357974804c539bff6c58a8785c22.propsDefinition & VueComponentBaseProps;
|
287
288
|
"omfx-identity-picker-dialog": typeof wc5d74b2de65164761a3dce6a534b64bd1.propsDefinition & VueComponentBaseProps;
|
288
289
|
"omfx-identity-picker-button": typeof wc70593d481fa54e68be9f4fe41f0f5c92.propsDefinition & VueComponentBaseProps;
|
290
|
+
"omfx-input-language-picker": typeof wc91919b3f54de42dab709575b8a9ca233.propsDefinition & VueComponentBaseProps;
|
289
291
|
"omfx-limited-label": typeof wc6c2ac8bf4da44a2b8e544eaf5b42099f.propsDefinition & VueComponentBaseProps;
|
290
292
|
"omfx-magiclink": typeof wcf365f5cb3a694c20be7b96423bbc3eca.propsDefinition & VueComponentBaseProps;
|
291
293
|
"omfx-markdown-editor": typeof wc744b3f31e00c4815b63ecaf638ad7a7a.propsDefinition & VueComponentBaseProps;
|
@@ -493,3 +495,250 @@ declare global {
|
|
493
495
|
}
|
494
496
|
}
|
495
497
|
}
|
498
|
+
declare global {
|
499
|
+
let omfx: {
|
500
|
+
"omniaConsole": typeof wcf3d75940db51447dbf6719251f5465b0 & VueComponentBaseProps;
|
501
|
+
"devSocket": typeof wce6b88bd8d41949c8af6fed268ae64430 & VueComponentBaseProps;
|
502
|
+
"alignmentPicker": typeof wc8e3534c9960c46b090f442e563d71265 & VueComponentBaseProps;
|
503
|
+
"authsetup": typeof wce4889269c6ad440da65f3acdf5bb6152 & VueComponentBaseProps;
|
504
|
+
"commandPalette": typeof wc5dfa7b609aed43ffab03dad33c65b2da & VueComponentBaseProps;
|
505
|
+
"optionsBlockCurrent": typeof wce57d5f3e25e942a08ed97f69d608ab92 & VueComponentBaseProps;
|
506
|
+
"dateTimeZonePicker": typeof wc90e26d3a6e3e4bf9bd1ce81c6735eda2 & VueComponentBaseProps;
|
507
|
+
"dateTimeZoneRenderer": typeof wcd3d05fa7bb114ecab1c16f714641b678 & VueComponentBaseProps;
|
508
|
+
"dialog": typeof wc3ff00f2d8a4c48a4ae0cff23fc0127ac & VueComponentBaseProps;
|
509
|
+
"featuresJourney": typeof wcfd300449c17f44fd80d83e709a10bf63 & VueComponentBaseProps;
|
510
|
+
"filterengineSettings": typeof wca91d4cd2b5744de3a672110cb1cdf7ba & VueComponentBaseProps;
|
511
|
+
"filterengineRenderer": typeof wc34e1cea969d744f1bbec4770b51d49f5 & VueComponentBaseProps;
|
512
|
+
"personFilterengineRenderer": typeof wc43fc70078d114ec3a70ebbd767ef4f95 & VueComponentBaseProps;
|
513
|
+
"tagsFilterengineRenderer": typeof wc425ef72815f04fed9a042d48a2ac7df8 & VueComponentBaseProps;
|
514
|
+
"filterengineSelectionsarea": typeof wce2f7f245f168446980aef1473d8742d1 & VueComponentBaseProps;
|
515
|
+
"filterengineSelectionsareaPersonproperty": typeof wccbef13c831cf4531a43fb63ef63ad39b & VueComponentBaseProps;
|
516
|
+
"filterengineSelectionsareaTagsproperty": typeof wc6e487078cbd14ee189af05260831ba5a & VueComponentBaseProps;
|
517
|
+
"textFilterengineRenderer": typeof wcc7b859fc2c5b46c09ff08ee4a9daa394 & VueComponentBaseProps;
|
518
|
+
"booleanFilterengineRenderer": typeof wcc311e369d2d241f38e609ad50f7dec2f & VueComponentBaseProps;
|
519
|
+
"dateFilterengineRenderer": typeof wc0debbe4a117f46ddb9ca37231010938c & VueComponentBaseProps;
|
520
|
+
"numberFilterengineRenderer": typeof wcaac689be588e4dd3ac8166ac631a37f1 & VueComponentBaseProps;
|
521
|
+
"filterengineSelectionsareaBooleanproperty": typeof wc7a0ad7d8477246c2b5f1de4b59bbc5f1 & VueComponentBaseProps;
|
522
|
+
"filterengineSelectionsareaTextproperty": typeof wcb11657e2b45247fc82c78a30ba131001 & VueComponentBaseProps;
|
523
|
+
"filterengineSelectionsareaDatetimeproperty": typeof wc63a474f600324efc9148ceeab9202778 & VueComponentBaseProps;
|
524
|
+
"filterengineSelectionsareaNumberproperty": typeof wc5a6940e10c51454aa5e0a4144ab01288 & VueComponentBaseProps;
|
525
|
+
"filterengineDialogContent": typeof wc937eab372066440fa95551ac8cba45d7 & VueComponentBaseProps;
|
526
|
+
"filterenginePropertyDropdown": typeof wc7813f37afbf34cb085a2ef74e71e20fa & VueComponentBaseProps;
|
527
|
+
"filterenginePropertyList": typeof wc373cd0c180af441ca9f973b1da4de7f9 & VueComponentBaseProps;
|
528
|
+
"filterPicker": typeof wc46a6c15c2a0e446fbef9770274409366 & VueComponentBaseProps;
|
529
|
+
"hubChat": typeof wcc587659a68194582be3c393240709785 & VueComponentBaseProps;
|
530
|
+
"identityRenderer": typeof wca7608d8c42184cbb994910dc06c464a1 & VueComponentBaseProps;
|
531
|
+
"identitySyncPropertyBindingSetup": typeof wc01c6a5e974334f06a390c9af5a7689d0 & VueComponentBaseProps;
|
532
|
+
"identitySyncRuleSetup": typeof wcc2a811dfd3774d15862abb2f6a435a5c & VueComponentBaseProps;
|
533
|
+
"identityPickerField": typeof wcba60557e3daf48208c919a1806502df5 & VueComponentBaseProps;
|
534
|
+
"identityPickerInlineField": typeof wc9cbe10e4fe1a48929727942cea5f7338 & VueComponentBaseProps;
|
535
|
+
"identityPicker": typeof wcec81357974804c539bff6c58a8785c22 & VueComponentBaseProps;
|
536
|
+
"identityPickerDialog": typeof wc5d74b2de65164761a3dce6a534b64bd1 & VueComponentBaseProps;
|
537
|
+
"identityPickerButton": typeof wc70593d481fa54e68be9f4fe41f0f5c92 & VueComponentBaseProps;
|
538
|
+
"inputLanguagePicker": typeof wc91919b3f54de42dab709575b8a9ca233 & VueComponentBaseProps;
|
539
|
+
"limitedLabel": typeof wc6c2ac8bf4da44a2b8e544eaf5b42099f & VueComponentBaseProps;
|
540
|
+
"magiclink": typeof wcf365f5cb3a694c20be7b96423bbc3eca & VueComponentBaseProps;
|
541
|
+
"markdownEditor": typeof wc744b3f31e00c4815b63ecaf638ad7a7a & VueComponentBaseProps;
|
542
|
+
"markdownRenderer": typeof wcc8b990d01ddc45ab930b4409fc406435 & VueComponentBaseProps;
|
543
|
+
"monacoEditor": typeof wc2e8004b49c8d44dd8edb56ce884c2b57 & VueComponentBaseProps;
|
544
|
+
"multilingualInput": typeof wce95c4611a45548a79e4c3984d8e5228d & VueComponentBaseProps;
|
545
|
+
"optionPicker": typeof wc7f06e68f94904b48b827b23acd148bec & VueComponentBaseProps;
|
546
|
+
"permissionInput": typeof wcfb67bd4d1cc24073ab123c822d78ea17 & VueComponentBaseProps;
|
547
|
+
"presetupWizard": typeof wc1a58948a606a42078da3fb919cc4f7e6 & VueComponentBaseProps;
|
548
|
+
"profilecardRenderer": typeof wc6d1d84cb210643c59ca8437fc36c75a1 & VueComponentBaseProps;
|
549
|
+
"datasourcePropertyPicker": typeof wc091ee9b103234b26a5e2bd5f992b2582 & VueComponentBaseProps;
|
550
|
+
"propertyRenderer": typeof wcf36a8a2b1c70423ebc4647aaddab8f4f & VueComponentBaseProps;
|
551
|
+
"propertyDefinitionRenderer": typeof wc48e897be803c4b5cb1db09dbadd04fe5 & VueComponentBaseProps;
|
552
|
+
"propertyConfiguration": typeof wce012f61b652b4ab8b7e9d436ef772f54 & VueComponentBaseProps;
|
553
|
+
"propertyLabelOptions": typeof wc54caefeaae1d4da7b236a3ff268b31c3 & VueComponentBaseProps;
|
554
|
+
"propertyLocking": typeof wc14f41bfbe00d46658959d3b2ebb7da69 & VueComponentBaseProps;
|
555
|
+
"propertyInput": typeof wcb174dcf2716344b0bb02c981ae68dd73 & VueComponentBaseProps;
|
556
|
+
"richTextEditor": typeof wc7474e75042e347b4821bbafdb1cb4ee0 & VueComponentBaseProps;
|
557
|
+
"rollupEmpty": typeof wc8c7794090eb647eb8510b39cbefa17a7 & VueComponentBaseProps;
|
558
|
+
"settingsPane": typeof wcc0de4753b9fe4004b0f4e6b6b91730ab & VueComponentBaseProps;
|
559
|
+
"sidePanel": typeof wc539d199f69934c10a963f142e4f3056d & VueComponentBaseProps;
|
560
|
+
"signinPage": typeof wcb5315b31203e4bd1beb3c33f2122cbfe & VueComponentBaseProps;
|
561
|
+
"signinBlock": typeof wce4b25c06803a417a9c4aa4b7280a599b & VueComponentBaseProps;
|
562
|
+
"signinOmnia": typeof wcbc3b9409639d45829a6e58a4295bc470 & VueComponentBaseProps;
|
563
|
+
"signout": typeof wcf297290b5ea4409a9738ca880f1ea612 & VueComponentBaseProps;
|
564
|
+
"spacingPicker": typeof wc564bced7081c496483e8df717f600ff3 & VueComponentBaseProps;
|
565
|
+
"statusMessageOverlay": typeof wccb83d46eaaed44d4920d4d5da21bc488 & VueComponentBaseProps;
|
566
|
+
"userPresence": typeof wc21a1f20b3d404602853049c1c8b8da2f & VueComponentBaseProps;
|
567
|
+
"usertypeLayoutRenderer": typeof wc30289e2b58ff48b0aabb3cb3732c3038 & VueComponentBaseProps;
|
568
|
+
"usertypeLayoutBladeBuilder": typeof wc5b26d2a399c041f3beae9c1115d6e8d8 & VueComponentBaseProps;
|
569
|
+
"fieldValidation": typeof wc90cfd68bb4e04f67bfd5677bdf4af59d & VueComponentBaseProps;
|
570
|
+
"versionedLayoutRenderer": typeof wcba03fc7e6921468289c0a0ffe0cf942e & VueComponentBaseProps;
|
571
|
+
"versionedLayoutEditor": typeof wc73154f51a92944acbe248779a3fa7ef5 & VueComponentBaseProps;
|
572
|
+
"taxonomyFilterengineRenderer": typeof wc28d15a1179a04eaa9f2e82abe15f7177 & VueComponentBaseProps;
|
573
|
+
"filterengineSelectionsareaTaxonomyproperty": typeof wcb1fca92af8524970b426823cf7ef65b5 & VueComponentBaseProps;
|
574
|
+
"omniaAdmin": typeof wcbc947f375ee34d2a98e2d431f2e45b62 & VueComponentBaseProps;
|
575
|
+
"omniaAdminRenderer": typeof wc253e469ef68e4cb5b526343736c2ff11 & VueComponentBaseProps;
|
576
|
+
"appInstanceRollup": typeof wca8f8d41d8ceb43e0b16398c209fd6b32 & VueComponentBaseProps;
|
577
|
+
"appManagement": typeof wc450488bd95a34f368241e9b4d8c71dee & VueComponentBaseProps;
|
578
|
+
"appManagementInstanceTab": typeof wcd26f1c7425484ce6adfc9165704877e5 & VueComponentBaseProps;
|
579
|
+
"appManagementTemplateTab": typeof wcdf7481b60b764c08865e658d9607387a & VueComponentBaseProps;
|
580
|
+
"appManagementLayoutTab": typeof wc6c400e11caad44bf8d174b145b6f122d & VueComponentBaseProps;
|
581
|
+
"appManagementNamingpolicyTab": typeof wc211ad37d3c1747c2a3fce889a433ebaa & VueComponentBaseProps;
|
582
|
+
"tabManagement": typeof wc20bd8ac81b314379a3676ca3b31c720e & VueComponentBaseProps;
|
583
|
+
"appShowInPublicListingsInput": typeof wc8e21d658d6f84d70870d29805b27df86 & VueComponentBaseProps;
|
584
|
+
"docs": typeof wc1f31fc580b854d19895c1879120a9891 & VueComponentBaseProps;
|
585
|
+
"mediaScalingSettings": typeof wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e & VueComponentBaseProps;
|
586
|
+
"journeyTestbench": typeof wc2252e1bd3ac44ef9b92c68e5b1e41a49 & VueComponentBaseProps;
|
587
|
+
"journey": typeof wcc0ba9c7ccef54093bcb0be49e7cf79df & VueComponentBaseProps;
|
588
|
+
"journeyBlade": typeof wcd308de8efcff4754826523a0f06df130 & VueComponentBaseProps;
|
589
|
+
"journeyMenu": typeof wc828a4c20542945858e792ec584148a5c & VueComponentBaseProps;
|
590
|
+
"layoutEditorCanvas": typeof wc8e03e2f7fb024945bc51138b77d06088 & VueComponentBaseProps;
|
591
|
+
"layoutBlockRendererHelper": typeof wc0b2ee63495854227a082987161a9e641 & VueComponentBaseProps;
|
592
|
+
"layoutRendererCanvas": typeof wcf346db89a53b404690b1795429fb0162 & VueComponentBaseProps;
|
593
|
+
"mediaPickerDallePollingImage": typeof wc8f6c9579f26646dfb316c087e04455cc & VueComponentBaseProps;
|
594
|
+
"oAppBar": typeof wc7fbf605e1ae24b21b0a9e35141aca17b & VueComponentBaseProps;
|
595
|
+
"oAvatar": typeof wc99abf48aa0214a7995d0579883a1612c & VueComponentBaseProps;
|
596
|
+
"oBadge": typeof wc9ddacaaacc3a4d7394079013da30fb0d & VueComponentBaseProps;
|
597
|
+
"oBtn": typeof wc678a52a5101d41498d47754aeae5f9f6 & VueComponentBaseProps;
|
598
|
+
"oBtnGroup": typeof wc07d25314740f40058782f3123ea1c388 & VueComponentBaseProps;
|
599
|
+
"oCard": typeof wcffc99f8d26ae4caf84ece7c13463b6c5 & VueComponentBaseProps;
|
600
|
+
"oCheckbox": typeof wccd6b8d55c18546d4b1d8c4d9e1d89106 & VueComponentBaseProps;
|
601
|
+
"oChip": typeof wc374573e0a03f4e0f9838ece30507926e & VueComponentBaseProps;
|
602
|
+
"oCol": typeof wccdd8102dec85424da156ca516659956e & VueComponentBaseProps;
|
603
|
+
"oDataTable": typeof wc86e7df28b98d4594be5ab9a3f64dd0cc & VueComponentBaseProps;
|
604
|
+
"oDialog": typeof wc2ae3cf98c95443a199d44705ad87d994 & VueComponentBaseProps;
|
605
|
+
"oDivider": typeof wcd1a4678669114d9293f42409a1080756 & VueComponentBaseProps;
|
606
|
+
"oDraggable": typeof wc010e7f719bf647829ef6c999e22f86ca & VueComponentBaseProps;
|
607
|
+
"oExpansionPanels": typeof wc1f535ab2cf154914a9bb104aa46d1e2a & VueComponentBaseProps;
|
608
|
+
"oExpansionPanel": typeof wc170e8b8212bd45f5b8009e0efb29d7a3 & VueComponentBaseProps;
|
609
|
+
"oHostProvider": typeof wc108c5357146f4af2bff4b79af299eb2f & VueComponentBaseProps;
|
610
|
+
"oIcon": typeof wcde8b25f7e81a437d9ee6b104c28b1c25 & VueComponentBaseProps;
|
611
|
+
"oImg": typeof wc857e4f14f822494181c3c22fa95c88b7 & VueComponentBaseProps;
|
612
|
+
"oLayout": typeof wc25d0a8d8f8ac4ff08c468027b5273882 & VueComponentBaseProps;
|
613
|
+
"oList": typeof wc49934d3df84d47c39314cce5bb4340b1 & VueComponentBaseProps;
|
614
|
+
"oListItem": typeof wc606fb8e73c2a4de59c5a7b96b9b8997b & VueComponentBaseProps;
|
615
|
+
"oMain": typeof wc994b0ed2b0794f928849a3fb5c52c70a & VueComponentBaseProps;
|
616
|
+
"oMenu": typeof wce688539435a64ccf8569a6e05020ca94 & VueComponentBaseProps;
|
617
|
+
"oNavigationDrawer": typeof wcd17d504fd4874d8bb50ab6a946859546 & VueComponentBaseProps;
|
618
|
+
"oPanel": typeof wcc51213da3caa4607b2fa435ae0c7acbf & VueComponentBaseProps;
|
619
|
+
"oProgress": typeof wc61e392c374cf4be6b9a1457b79a715ed & VueComponentBaseProps;
|
620
|
+
"oRadioGroup": typeof wc6c9f088f52de491bbe36933530a1880a & VueComponentBaseProps;
|
621
|
+
"oRadio": typeof wca156e0af12b3464082a7e9fd2cdab84a & VueComponentBaseProps;
|
622
|
+
"oSelect": typeof wc87b50e67ce504ec292925641cfb29016 & VueComponentBaseProps;
|
623
|
+
"oSlider": typeof wc807ae5df89a446fbabaf07dd09dda3c1 & VueComponentBaseProps;
|
624
|
+
"oSnackbar": typeof wcbbb9a63991224c219b7ebc02bbe9cc34 & VueComponentBaseProps;
|
625
|
+
"oSpacer": typeof wc3241a7ddf0d04b68bf4aab335e2405fb & VueComponentBaseProps;
|
626
|
+
"oStepper": typeof wc889905a9b0ad4de5b9538c6d920bac0a & VueComponentBaseProps;
|
627
|
+
"oStepperStep": typeof wce11c4b8d09284dd18fc4d80bc66c3588 & VueComponentBaseProps;
|
628
|
+
"oSwitch": typeof wcccd3f88ddd6541fc9865ebdf93fadef9 & VueComponentBaseProps;
|
629
|
+
"oTabs": typeof wc3ae18994ae5546dc945347d58432108d & VueComponentBaseProps;
|
630
|
+
"oTab": typeof wc07776976fab941de8e169e6e903fb4fe & VueComponentBaseProps;
|
631
|
+
"oTable": typeof wc08f1880bd39f43f6aa2734a85ebdf721 & VueComponentBaseProps;
|
632
|
+
"oText": typeof wc7b543325ab85489eb1401d7bfdf6f5fc & VueComponentBaseProps;
|
633
|
+
"oTextarea": typeof wcab9101708fac46968e7d1ce1ea71c3cf & VueComponentBaseProps;
|
634
|
+
"oTextField": typeof wc9a7ad06b091e4633a0fc3d380210f9cb & VueComponentBaseProps;
|
635
|
+
"oToolbar": typeof wc53c3a240c5bf4d39ac29ac7f1f7415ae & VueComponentBaseProps;
|
636
|
+
"oTooltip": typeof wca734925baa664530a42731d3b9719681 & VueComponentBaseProps;
|
637
|
+
"oTreeview": typeof wce1b9681a96a94f65a08577ef52b83752 & VueComponentBaseProps;
|
638
|
+
"oValidation": typeof wc9c86a47101cd489e852f210d1e815d1c & VueComponentBaseProps;
|
639
|
+
"emoticon": typeof wc58330f37503947799af05363e58bda3c & VueComponentBaseProps;
|
640
|
+
"textcompletionPanel": typeof wc327ec741777b4e1ea8017f1d0a3b8d9d & VueComponentBaseProps;
|
641
|
+
"themedefinitionEditor": typeof wc4ff736bf8c544324883ed49f2a38f846 & VueComponentBaseProps;
|
642
|
+
"blueprintPicker": typeof wc44e2dd896269442f800da69000d4c2f1 & VueComponentBaseProps;
|
643
|
+
"colorSchemaDefinitionPicker": typeof wc829fbdec1d3b44059578b89b6d04c52b & VueComponentBaseProps;
|
644
|
+
"colorSchemaPicker": typeof wc1266389c28034034921b897f788f302d & VueComponentBaseProps;
|
645
|
+
"themeDefinitionPicker": typeof wc252ece0016594978b3ddfafdd59adda4 & VueComponentBaseProps;
|
646
|
+
"themeEditorV2": typeof wc5abbb7170e454f0d8cb537bcad180cd7 & VueComponentBaseProps;
|
647
|
+
"themeProvider": typeof wc008c41f92c8847eea45f09ebc0535fc1 & VueComponentBaseProps;
|
648
|
+
"velcronEditor": typeof wcc75ffd4cf2f14b6685c5c2d894fdf00f & VueComponentBaseProps;
|
649
|
+
"velcronRenderer": typeof wc3dd4d94bcc254f9fac2100a3ff84dc7e & VueComponentBaseProps;
|
650
|
+
"propertiesTermSetDisplay": typeof wc7332138e1e7845d1a5e62597a27e44a4 & VueComponentBaseProps;
|
651
|
+
"propertiesTermSetEditor": typeof wc83dee8a1eea84537ad9544e8b9fc4cb1 & VueComponentBaseProps;
|
652
|
+
"propertiesTermSetConfiguration": typeof wca9cc1e1ff5894f4db7005bc49c6c47c5 & VueComponentBaseProps;
|
653
|
+
"enterprisepropertiesExtendedPropertySettings": typeof wc4ecc566131194348b7ec8495a06d4fd6 & VueComponentBaseProps;
|
654
|
+
"filterenginePersonPropertysettings": typeof wceed905b1712c498ebd5bb24f12ed10d7 & VueComponentBaseProps;
|
655
|
+
"filterenginePersonDefaultvalueInput": typeof wcad26e9b3bf774d949d153b9f9d1d4b02 & VueComponentBaseProps;
|
656
|
+
"filterengineTextPropertysettings": typeof wc7b2e1b93599a4e5fb878fb68b6abd74c & VueComponentBaseProps;
|
657
|
+
"filterengineTextDefaultvalueInput": typeof wc47fde3016cac4cfea002b318651b2946 & VueComponentBaseProps;
|
658
|
+
"filterengineBooleanPropertysettings": typeof wc031ba18d4af243d2b9f1724a56077890 & VueComponentBaseProps;
|
659
|
+
"filterengineBooleanDefaultvalueInput": typeof wc6003c34b7d2d49cc8a9c7440371dca4b & VueComponentBaseProps;
|
660
|
+
"filterengineDatetimePropertysettings": typeof wca1d7711329c24045bf72254e8d2767c8 & VueComponentBaseProps;
|
661
|
+
"filterengineDatetimeDefaultvalueInput": typeof wcba1fad28be954b8fadb7290ccb8f8c86 & VueComponentBaseProps;
|
662
|
+
"filterengineNumberPropertysettings": typeof wcee09ecc9d4fb46de8f1a408e38858030 & VueComponentBaseProps;
|
663
|
+
"filterengineNumberDefaultvalueInput": typeof wcea2ad78acabc4ec0bc3609301b3713c3 & VueComponentBaseProps;
|
664
|
+
"filterengineTagsPropertysettings": typeof wc024952d88730404da854cfed0d045284 & VueComponentBaseProps;
|
665
|
+
"filterengineTagsDefaultvalueInput": typeof wcdc589fd533c8400a8dde3dad35f47248 & VueComponentBaseProps;
|
666
|
+
"layoutBlockPlaceholder": typeof wc4834285963564938a31a1ac1dfb1b5d8 & VueComponentBaseProps;
|
667
|
+
"canvasToolbar": typeof wc4512676606d342adbd011def4b615151 & VueComponentBaseProps;
|
668
|
+
"omniaLayoutDevelopertools": typeof wc41f1eb15438a488b8b227b1ff31ca66f & VueComponentBaseProps;
|
669
|
+
"devicePreviewer": typeof wcd89913a1055942b38285fcab85751865 & VueComponentBaseProps;
|
670
|
+
"propertiesBirthdayDisplay": typeof wc916c23c53dbf4d5a8e421e9449c6b203 & VueComponentBaseProps;
|
671
|
+
"propertiesBirthdayEditor": typeof wc644e39fe6d4f4e23b1777aefd9c23939 & VueComponentBaseProps;
|
672
|
+
"propertiesBooleanDisplay": typeof wcf61d06a945754742a1896847765fbea5 & VueComponentBaseProps;
|
673
|
+
"propertiesBooleanEditor": typeof wca16c703117f44a68982a1898d6c3c31b & VueComponentBaseProps;
|
674
|
+
"propertiesDateDisplay": typeof wc627dc53f51a442019a52bba09ac665cc & VueComponentBaseProps;
|
675
|
+
"propertiesDateEditor": typeof wcae6a9ccc0bf24b0fb983460b7aba7fe6 & VueComponentBaseProps;
|
676
|
+
"propertiesDateTimeDisplay": typeof wc5666ffa15ff14a64bac8854da534ff16 & VueComponentBaseProps;
|
677
|
+
"propertiesDateTimeEditor": typeof wc0f52758b4d0c4e02abfeea1c5c935571 & VueComponentBaseProps;
|
678
|
+
"propertiesEmailDisplay": typeof wc2b51f4d3ea464d7aa3f5b6ab4b9f9ccc & VueComponentBaseProps;
|
679
|
+
"propertiesEmailEditor": typeof wc056a7f0a4fa444368b5c7d09c60dbcde & VueComponentBaseProps;
|
680
|
+
"propertiesHtmlDisplay": typeof wc5f8ca1cb4e2847d4935f0ac659a3a1f8 & VueComponentBaseProps;
|
681
|
+
"propertiesHtmlEditor": typeof wc2d5cfa916f2946ea9ed6b9ed2c15dadf & VueComponentBaseProps;
|
682
|
+
"propertiesHtmlConfiguration": typeof wcae36a741825f4f209bc10b68fb677bf7 & VueComponentBaseProps;
|
683
|
+
"propertiesIdentityDisplay": typeof wc24adf7dd588e4121b7f2b88f06d19ff0 & VueComponentBaseProps;
|
684
|
+
"propertiesIdentityEditor": typeof wc512d83f1692c4d7ea3dee2653ccf15e6 & VueComponentBaseProps;
|
685
|
+
"propertiesIdentityConfiguration": typeof wc77d632a8bca5461fb6c429a0ff65dc83 & VueComponentBaseProps;
|
686
|
+
"propertiesImageDisplay": typeof wcbf51f51ebb83415085c1ac7647a65152 & VueComponentBaseProps;
|
687
|
+
"propertiesImageConfiguration": typeof wc5395d36d407d46f1bf8b16a8a01ace5a & VueComponentBaseProps;
|
688
|
+
"propertiesImageEditor": typeof wc188dea2e3ae74c54a34a3e6567e1399e & VueComponentBaseProps;
|
689
|
+
"propertiesIntegerDisplay": typeof wc5f9cd004b39f4340a86911e1fc225a20 & VueComponentBaseProps;
|
690
|
+
"propertiesIntegerEditor": typeof wc49e771f49e06477fbe72da709d82dc29 & VueComponentBaseProps;
|
691
|
+
"propertiesLanguageDisplay": typeof wc41b1957c2c2b456d8f14bc39f6761c77 & VueComponentBaseProps;
|
692
|
+
"propertiesLanguageEditor": typeof wc84265bdaa0054a8092a740c818daf04e & VueComponentBaseProps;
|
693
|
+
"propertiesLinkDisplay": typeof wc93d3ac3a514149ebbd387d1e87008ec6 & VueComponentBaseProps;
|
694
|
+
"propertiesLinkEditor": typeof wc9911a5588ea34e9cad8a5129c82e1f0c & VueComponentBaseProps;
|
695
|
+
"propertiesLinkConfiguration": typeof wcbdcc5c7cc8b04e9c8cba9787284281ca & VueComponentBaseProps;
|
696
|
+
"propertiesMediaDisplay": typeof wc82ed0f43e304436ba399aacf37dc10fb & VueComponentBaseProps;
|
697
|
+
"propertiesMediaEditor": typeof wc01ad88e84cd443e28c158b2fa4147924 & VueComponentBaseProps;
|
698
|
+
"propertiesMultilinetextDisplay": typeof wc90552b5ea3484174bf69463a6a74f83a & VueComponentBaseProps;
|
699
|
+
"propertiesMultilinetextEditor": typeof wcc24137f2406f4ebeb414b8d11492d0d3 & VueComponentBaseProps;
|
700
|
+
"propertiesMultilingualtextDisplay": typeof wc784d162feec24424a993d8ba812b9c94 & VueComponentBaseProps;
|
701
|
+
"propertiesMultilingualtextEditor": typeof wc4abd8ef8e96f4beca6d375984132b6ec & VueComponentBaseProps;
|
702
|
+
"propertiesPhoneNumberDisplay": typeof wcae83e3f39ff443b8abb93e483c14f48f & VueComponentBaseProps;
|
703
|
+
"propertiesPhoneNumberEditor": typeof wcaad7c8da16f04a46b9503564b10a8f34 & VueComponentBaseProps;
|
704
|
+
"propertiesTextDisplay": typeof wcdf429c59a8ec42cf8ec34907705793a9 & VueComponentBaseProps;
|
705
|
+
"propertiesTextEditor": typeof wcb8cc745685f2417cacf578d9bed620b5 & VueComponentBaseProps;
|
706
|
+
"propertiesTimeDisplay": typeof wceb1460af73a8467597c5d0987d38cae5 & VueComponentBaseProps;
|
707
|
+
"propertiesTimeEditor": typeof wcf6b07b9fb080465498768f4fc8c58415 & VueComponentBaseProps;
|
708
|
+
"contentBlock": typeof wccf8f32c9a70e408489a451caa80cd327 & VueComponentBaseProps;
|
709
|
+
"contentBlockSettings": typeof wcce1c0a7d513e45ee86564ec4235e712d & VueComponentBaseProps;
|
710
|
+
"velcronBlock": typeof wc80bd5b0978ea40439001d3d409236382 & VueComponentBaseProps;
|
711
|
+
"velcronBlockSettings": typeof wce8526e8ed3f74e848e0dd747fd4d376d & VueComponentBaseProps;
|
712
|
+
"velcronDefinitionPicker": typeof wcb197c5e805cc4d6bb3d012e258560b31 & VueComponentBaseProps;
|
713
|
+
"velcronPropertiesEditor": typeof wcdabd67ab338243858fe7d1ca24399995 & VueComponentBaseProps;
|
714
|
+
"filterengineTaxonomyPropertysettings": typeof wcdb625bea89b04f32a946efe7a887c7f2 & VueComponentBaseProps;
|
715
|
+
"filterengineTaxonomyDefaultvalueInput": typeof wcded30c240e6c4688955867472a8d0a02 & VueComponentBaseProps;
|
716
|
+
"layoutBackgroundSettings": typeof wcf5cf0b4975644d688124880ae533869e & VueComponentBaseProps;
|
717
|
+
"layoutBlockSettingsHeader": typeof wc2e52c0d860ec498fa3abf6b76eacc45d & VueComponentBaseProps;
|
718
|
+
"layoutBlockSettingsSpacing": typeof wc9666ee9da0af46ac8354f0577050cb60 & VueComponentBaseProps;
|
719
|
+
"layoutBlockSettingsStyle": typeof wc103ae93f7a7c4754872e2573a9a689d7 & VueComponentBaseProps;
|
720
|
+
"layoutBlockSettingsCss": typeof wc06eff92039dd49339e522ac2d7a648af & VueComponentBaseProps;
|
721
|
+
"layoutBlockSettingsTargeting": typeof wc53cbd5702e9e41ffa95093586c0e001d & VueComponentBaseProps;
|
722
|
+
"layoutBlockTitle": typeof wc1b1dd31ac8644b498ddf378a431dfb19 & VueComponentBaseProps;
|
723
|
+
"layoutBlockTitleSettings": typeof wcbeda6edf4c614323955fc06c6326f7e9 & VueComponentBaseProps;
|
724
|
+
"layoutImageBackgroundSettings": typeof wc0f7be5adc6ff4d81b920e5cf086128ae & VueComponentBaseProps;
|
725
|
+
"layoutLayoutSettingsGlobalheader": typeof wc673c5382ae8e4663ac07110302d7e386 & VueComponentBaseProps;
|
726
|
+
"layoutLayoutSettingsBlockheader": typeof wc221ed456340d4c1fa7522b7bee6d7a64 & VueComponentBaseProps;
|
727
|
+
"layoutLayoutSettingsStyle": typeof wc9e404f90ca6640f19c3fece23b073993 & VueComponentBaseProps;
|
728
|
+
"layoutClipboard": typeof wc4a31764ba9f6414a96192d0d02456086 & VueComponentBaseProps;
|
729
|
+
"layoutLockSettings": typeof wc160a5d56895f4a66a9dae49cffdae312 & VueComponentBaseProps;
|
730
|
+
"layoutSectionSettingsGeneral": typeof wc51c48c7bbe4245888bbf2f98884d6028 & VueComponentBaseProps;
|
731
|
+
"layoutSectionSettingsSpacing": typeof wc68724008d5d046b8a2f969ee90eece2c & VueComponentBaseProps;
|
732
|
+
"layoutSectionSettingsStyle": typeof wc08384c0236f840719ee3d8e018718e68 & VueComponentBaseProps;
|
733
|
+
"layoutSectionSettingsCss": typeof wc245a49e2d21a4b4ca849825b903103fe & VueComponentBaseProps;
|
734
|
+
"layoutSectionSettingsTargeting": typeof wc68628381bcdb41f6b0beb64d7ce94052 & VueComponentBaseProps;
|
735
|
+
"layoutSectionSettingsHeader": typeof wc48ff129f9a254eec9276b47f0c0f8b3e & VueComponentBaseProps;
|
736
|
+
"layoutTabLayoutSettings": typeof wc2a460a78bf504a2b9d00b1f86a347d46 & VueComponentBaseProps;
|
737
|
+
"layoutTabBlockSettings": typeof wc5b6b6242356046c29e05c24fb2135bf0 & VueComponentBaseProps;
|
738
|
+
"addButton": typeof wc1476702e8f24468d9185322be5931c54 & VueComponentBaseProps;
|
739
|
+
"colorPickerSchema": typeof wc327aebb7d6ce4565bf119cf67e121d1a & VueComponentBaseProps;
|
740
|
+
"colorSchemaMapper": typeof wc511447a5fd2646af910064ed9970d82e & VueComponentBaseProps;
|
741
|
+
"ratioPicker": typeof wc3cd2da446d21461e8149e6c8334a36f4 & VueComponentBaseProps;
|
742
|
+
"typographyPickerSchema": typeof wc8420a0b507e14a288c2d895471739f1d & VueComponentBaseProps;
|
743
|
+
};
|
744
|
+
}
|
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.79-vnext",
|
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.79-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|