@omnia/fx 7.6.32-preview → 7.6.34-preview
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 +1 -0
- package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/signin/AuthenticationBlockSettings.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/signin/Shared.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/signin/omnia/Login.d.ts +13 -4
- package/internal-do-not-import-from-here/ux/signin/omnia/Renderer.d.ts +9 -4
- package/internal-do-not-import-from-here/wctypings.d.ts +2 -0
- package/package.json +2 -2
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
import { VueComponentBase } from "..";
|
|
1
2
|
import { IWebComponentInstance } from "../../index";
|
|
3
|
+
import { TimeFormats } from "../../models";
|
|
2
4
|
import "./DateTimePicker.css";
|
|
3
5
|
import { IDateTimePicker, IDatetimePickerFormatter } from "./IDateTimePicker";
|
|
4
6
|
import { DateTimePickerLocalization } from "./loc/localize";
|
|
5
|
-
import { VueComponentBase } from "..";
|
|
6
|
-
import { TimeFormats } from "../../models";
|
|
7
7
|
export declare class DateTimePicker extends VueComponentBase implements IWebComponentInstance, IDateTimePicker {
|
|
8
8
|
valueBind: string;
|
|
9
9
|
formatter?: IDatetimePickerFormatter;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<unknown, never>, any, any, any>> & {
|
|
2
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<unknown, never>;
|
|
3
|
+
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<unknown, never>, any, any, any>> & {
|
|
4
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<unknown, never>;
|
|
5
|
+
});
|
|
6
|
+
export default _default;
|
|
@@ -9,9 +9,16 @@ export interface OmniaAuthProviderContext {
|
|
|
9
9
|
uniqueName: string;
|
|
10
10
|
redirectUrl: string;
|
|
11
11
|
hasOtherWaysToLogin: boolean;
|
|
12
|
+
hideForgotPassword: boolean;
|
|
12
13
|
showError: (authenticationResult: AuthenticationResult) => void;
|
|
13
14
|
openSelections: () => void;
|
|
14
15
|
}
|
|
15
16
|
export interface OmniaAuthProviderChainAction {
|
|
16
17
|
(result: AuthenticationSessionResult): void;
|
|
17
18
|
}
|
|
19
|
+
export interface AuthenticationBlockSettings {
|
|
20
|
+
hideForgotPassword: boolean;
|
|
21
|
+
}
|
|
22
|
+
export declare const AuthenticationBlockSettingsFactory: {
|
|
23
|
+
defaultSettings(): AuthenticationBlockSettings;
|
|
24
|
+
};
|
|
@@ -1,6 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { AuthenticationBlockSettings } from "../Shared";
|
|
2
|
+
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<{
|
|
3
|
+
settings: AuthenticationBlockSettings;
|
|
4
|
+
}, "settings">, any, any, any>> & {
|
|
5
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
6
|
+
settings: AuthenticationBlockSettings;
|
|
7
|
+
}, "settings">;
|
|
8
|
+
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
9
|
+
settings: AuthenticationBlockSettings;
|
|
10
|
+
}, "settings">, any, any, any>> & {
|
|
11
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
12
|
+
settings: AuthenticationBlockSettings;
|
|
13
|
+
}, "settings">;
|
|
5
14
|
});
|
|
6
15
|
export default _default;
|
|
@@ -1,31 +1,36 @@
|
|
|
1
|
+
import { AuthenticationBlockSettings } from "../Shared";
|
|
1
2
|
import { AuthenticationOption, AuthenticationMetaData } from "@omnia/fx-models";
|
|
2
3
|
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<{
|
|
3
4
|
authFlows: AuthenticationOption[][];
|
|
4
5
|
uniqueName: string;
|
|
5
6
|
back: () => void;
|
|
6
7
|
onProviderSelected: (authOption: AuthenticationMetaData) => void;
|
|
8
|
+
settings: AuthenticationBlockSettings;
|
|
7
9
|
memorizedProvider: AuthenticationMetaData;
|
|
8
|
-
}, "authFlows" | "uniqueName" | "back" | "onProviderSelected">, any, any, any>> & {
|
|
10
|
+
}, "settings" | "authFlows" | "uniqueName" | "back" | "onProviderSelected">, any, any, any>> & {
|
|
9
11
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
10
12
|
authFlows: AuthenticationOption[][];
|
|
11
13
|
uniqueName: string;
|
|
12
14
|
back: () => void;
|
|
13
15
|
onProviderSelected: (authOption: AuthenticationMetaData) => void;
|
|
16
|
+
settings: AuthenticationBlockSettings;
|
|
14
17
|
memorizedProvider: AuthenticationMetaData;
|
|
15
|
-
}, "authFlows" | "uniqueName" | "back" | "onProviderSelected">;
|
|
18
|
+
}, "settings" | "authFlows" | "uniqueName" | "back" | "onProviderSelected">;
|
|
16
19
|
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
17
20
|
authFlows: AuthenticationOption[][];
|
|
18
21
|
uniqueName: string;
|
|
19
22
|
back: () => void;
|
|
20
23
|
onProviderSelected: (authOption: AuthenticationMetaData) => void;
|
|
24
|
+
settings: AuthenticationBlockSettings;
|
|
21
25
|
memorizedProvider: AuthenticationMetaData;
|
|
22
|
-
}, "authFlows" | "uniqueName" | "back" | "onProviderSelected">, any, any, any>> & {
|
|
26
|
+
}, "settings" | "authFlows" | "uniqueName" | "back" | "onProviderSelected">, any, any, any>> & {
|
|
23
27
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
24
28
|
authFlows: AuthenticationOption[][];
|
|
25
29
|
uniqueName: string;
|
|
26
30
|
back: () => void;
|
|
27
31
|
onProviderSelected: (authOption: AuthenticationMetaData) => void;
|
|
32
|
+
settings: AuthenticationBlockSettings;
|
|
28
33
|
memorizedProvider: AuthenticationMetaData;
|
|
29
|
-
}, "authFlows" | "uniqueName" | "back" | "onProviderSelected">;
|
|
34
|
+
}, "settings" | "authFlows" | "uniqueName" | "back" | "onProviderSelected">;
|
|
30
35
|
});
|
|
31
36
|
export default _default;
|
|
@@ -140,6 +140,7 @@ import wc327ec741777b4e1ea8017f1d0a3b8d9d from './ux/richtexteditor/TextCompleti
|
|
|
140
140
|
import wc539d199f69934c10a963f142e4f3056d from './ux/sidepanel/SidePanelRenderer';
|
|
141
141
|
import wcb5315b31203e4bd1beb3c33f2122cbfe from './ux/signin/AuthenticationPage';
|
|
142
142
|
import wcb273791ea562403397cdc0a1c0f907cb from './ux/signin/AuthenticationBlock';
|
|
143
|
+
import wcfe3e57c4b1314b2ba725ec558ac00fe7 from './ux/signin/AuthenticationBlockSettings';
|
|
143
144
|
import wcbc3b9409639d45829a6e58a4295bc470 from './ux/signin/omnia/Renderer';
|
|
144
145
|
import wc535ac075284646eca569a78457213e6f from './ux/signin/omnia/Login';
|
|
145
146
|
import wc2b741f0203a54cb5a7be72e204ebecc8 from './ux/signin/identitycreationrequest/IdentityCreationRequestView';
|
|
@@ -309,6 +310,7 @@ declare global {
|
|
|
309
310
|
"omfx-side-panel": base.CombinedTsxComponentAttrs<typeof wc539d199f69934c10a963f142e4f3056d.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
310
311
|
"omfx-authentication-page": base.CombinedTsxComponentAttrs<typeof wcb5315b31203e4bd1beb3c33f2122cbfe.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
311
312
|
"omfx-authentication-block": base.CombinedTsxComponentAttrs<typeof wcb273791ea562403397cdc0a1c0f907cb.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
313
|
+
"omfx-authentication-block-settings": base.CombinedTsxComponentAttrs<typeof wcfe3e57c4b1314b2ba725ec558ac00fe7.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
312
314
|
"omfx-login-omnia": base.CombinedTsxComponentAttrs<typeof wcbc3b9409639d45829a6e58a4295bc470.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
313
315
|
"omfx-login-view": base.CombinedTsxComponentAttrs<typeof wc535ac075284646eca569a78457213e6f.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
314
316
|
"omfx-identity-creation-request-omnia": base.CombinedTsxComponentAttrs<typeof wc2b741f0203a54cb5a7be72e204ebecc8.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "7.6.
|
|
4
|
+
"version": "7.6.34-preview",
|
|
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": "7.6.
|
|
23
|
+
"@omnia/fx-models": "7.6.34-preview",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|