@omnia/fx 8.0.78-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/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/wctypings.d.ts +3 -0
- package/package.json +2 -2
@@ -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": {
|
@@ -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;
|
@@ -533,6 +535,7 @@ declare global {
|
|
533
535
|
"identityPicker": typeof wcec81357974804c539bff6c58a8785c22 & VueComponentBaseProps;
|
534
536
|
"identityPickerDialog": typeof wc5d74b2de65164761a3dce6a534b64bd1 & VueComponentBaseProps;
|
535
537
|
"identityPickerButton": typeof wc70593d481fa54e68be9f4fe41f0f5c92 & VueComponentBaseProps;
|
538
|
+
"inputLanguagePicker": typeof wc91919b3f54de42dab709575b8a9ca233 & VueComponentBaseProps;
|
536
539
|
"limitedLabel": typeof wc6c2ac8bf4da44a2b8e544eaf5b42099f & VueComponentBaseProps;
|
537
540
|
"magiclink": typeof wcf365f5cb3a694c20be7b96423bbc3eca & VueComponentBaseProps;
|
538
541
|
"markdownEditor": typeof wc744b3f31e00c4815b63ecaf638ad7a7a & VueComponentBaseProps;
|
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",
|