@omnia/fx 8.0.327-dev → 8.0.328-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/contextlanguagepicker/ContextLanguagePicker.d.ts
CHANGED
@@ -1,28 +1,4 @@
|
|
1
|
-
import {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
import { ScopedSlots } from "..";
|
6
|
-
import { IVSelectScopedSlots } from "../vuetify";
|
7
|
-
export declare class ContextLanguagePicker extends VueComponentBase implements IWebComponentInstance, IContextLanguagePicker {
|
8
|
-
valueBind: string;
|
9
|
-
disabled?: boolean;
|
10
|
-
label?: string;
|
11
|
-
onValueChanged?: (language: string) => void;
|
12
|
-
box?: boolean;
|
13
|
-
dark?: boolean;
|
14
|
-
flat?: boolean;
|
15
|
-
hideDisplayFlag?: boolean;
|
16
|
-
hideDisplayName?: boolean;
|
17
|
-
scopedSlots?: ScopedSlots<IVSelectScopedSlots>;
|
18
|
-
private omniaContext;
|
19
|
-
private omniaUxLoc;
|
20
|
-
languages: Language[];
|
21
|
-
private get slots();
|
22
|
-
created(): void;
|
23
|
-
private getLanguages;
|
24
|
-
mounted(): void;
|
25
|
-
beforeDestroy(): void;
|
26
|
-
private updateSelectedContextLanguage;
|
27
|
-
render(): JSX.Element;
|
28
|
-
}
|
1
|
+
import { DefineProp, DefineVModel } from "@omnia/fx/ux";
|
2
|
+
type ContextLanguagePickerProps = DefineVModel<"", string> & DefineProp<"disabled", boolean> & DefineProp<"label", string> & DefineProp<"hideDisplayFlag", boolean> & DefineProp<"hideDisplayName", boolean>;
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<ContextLanguagePickerProps>) => any;
|
4
|
+
export default _default;
|
@@ -1,10 +1,10 @@
|
|
1
1
|
import { ColorDefinition } from "../../velcron/core";
|
2
|
-
import {
|
2
|
+
import { useColorSchemaStore } from "../..";
|
3
3
|
import { OAppBarTypes } from "@omnia/fx-models";
|
4
4
|
export declare const AppbarStyles: {
|
5
5
|
templateTitle: Readonly<import("../..").StylexValue>;
|
6
6
|
content: Readonly<import("../..").StylexValue>;
|
7
|
-
wrapper: (variant: OAppBarTypes, colors: ReturnType<typeof
|
7
|
+
wrapper: (variant: OAppBarTypes, colors: ReturnType<typeof useColorSchemaStore>) => import("../..").StylexValue;
|
8
8
|
navigation: (color: ColorDefinition) => Readonly<import("../..").StylexValue>;
|
9
9
|
navigationIcon: {
|
10
10
|
buttonHeader: Readonly<import("../..").StylexValue>;
|
@@ -9,6 +9,7 @@ import wce4889269c6ad440da65f3acdf5bb6152 from './ux/authsetup/AuthSetup';
|
|
9
9
|
import wc057bef6897bb4ba4a089d01c2da1322e from './ux/chrome/ChromeRenderer';
|
10
10
|
import wc5dfa7b609aed43ffab03dad33c65b2da from './ux/commandpalette/CommandPalette';
|
11
11
|
import wcb11276a5e84a4709a55abd185b4c7a1d from './ux/confirmdialog/ConfirmDialog';
|
12
|
+
import wcf2070c844f55482099c398dd2ddb013c from './ux/contextlanguagepicker/ContextLanguagePicker';
|
12
13
|
import wc0fb46d84e95e4e04801878bec4b370cb from './ux/datetimefilterquery/DateTimeFilterQuery';
|
13
14
|
import wcdedf711a4e0f4c5c850b51c01ea367a7 from './ux/datetimepicker/DateTimePicker';
|
14
15
|
import wc90e26d3a6e3e4bf9bd1ce81c6735eda2 from './ux/datetimezonepicker/DateTimeZonePicker';
|
@@ -841,6 +842,17 @@ declare global {
|
|
841
842
|
};
|
842
843
|
} : typeof wcb11276a5e84a4709a55abd185b4c7a1d;
|
843
844
|
};
|
845
|
+
"context": {
|
846
|
+
"language": {
|
847
|
+
"picker": typeof wcf2070c844f55482099c398dd2ddb013c extends {
|
848
|
+
propsDefinition: infer TProp;
|
849
|
+
} ? {
|
850
|
+
new (...args: any[]): {
|
851
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
852
|
+
};
|
853
|
+
} : typeof wcf2070c844f55482099c398dd2ddb013c;
|
854
|
+
};
|
855
|
+
};
|
844
856
|
"date": {
|
845
857
|
"time": {
|
846
858
|
"filter": {
|
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.328-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.328-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|