@omnia/fx 7.8.46-preview → 7.8.48-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/services/SecurityRoles.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsdesigner/StepperSectionDesigner.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsdesigner/StepperSectionDesigner.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/permissioninput/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/signin/identitycreationrequest/ConfirmEmailView.d.ts +8 -4
- package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +1 -1
- package/package.json +2 -2
|
@@ -25,6 +25,7 @@ export declare class StepperSectionDesigner extends VueComponentBase<StepperSect
|
|
|
25
25
|
private editorDesignModeStepperKey;
|
|
26
26
|
private initialAnchorLinkResolved;
|
|
27
27
|
private internalValidator;
|
|
28
|
+
private activeIndex;
|
|
28
29
|
created(): void;
|
|
29
30
|
beforeDestroy(): void;
|
|
30
31
|
private hasValidAnchorLinkSettings;
|
|
@@ -50,5 +51,9 @@ export declare class StepperSectionDesigner extends VueComponentBase<StepperSect
|
|
|
50
51
|
private renderStepperContent;
|
|
51
52
|
private renderAddStepButton;
|
|
52
53
|
private renderAnchorElements;
|
|
54
|
+
renderPagingItem(): VueTsxSupport.JSX.Element[][];
|
|
55
|
+
renderStepperItem(index: number, item: SectionItem<SteppedSectionItemSettings>): JSX.Element[];
|
|
56
|
+
renderHorizontalPaginationMode(): VueTsxSupport.JSX.Element;
|
|
57
|
+
renderHorizontalMultilineMode(index: number, item: SectionItem<SteppedSectionItemSettings>): (VueTsxSupport.JSX.Element | VueTsxSupport.JSX.Element[])[];
|
|
53
58
|
render(): VueTsxSupport.JSX.Element;
|
|
54
59
|
}
|
package/internal-do-not-import-from-here/ux/signin/identitycreationrequest/ConfirmEmailView.d.ts
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
import { IdentityCreationRequestCreatedResponse } from "@omnia/fx-models";
|
|
2
2
|
declare const IdentityCreationRequestConfirmEmailView: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<{
|
|
3
3
|
identityCreationRequestCreatedResponse: IdentityCreationRequestCreatedResponse;
|
|
4
|
-
|
|
4
|
+
magicLinkExpiration: number;
|
|
5
|
+
}, "identityCreationRequestCreatedResponse" | "magicLinkExpiration">, any, any, any>> & {
|
|
5
6
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
6
7
|
identityCreationRequestCreatedResponse: IdentityCreationRequestCreatedResponse;
|
|
7
|
-
|
|
8
|
+
magicLinkExpiration: number;
|
|
9
|
+
}, "identityCreationRequestCreatedResponse" | "magicLinkExpiration">;
|
|
8
10
|
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<() => VueTsxSupport.JSX.Element>, {}, import("vue-tsx-support").PropsForOutside<{
|
|
9
11
|
identityCreationRequestCreatedResponse: IdentityCreationRequestCreatedResponse;
|
|
10
|
-
|
|
12
|
+
magicLinkExpiration: number;
|
|
13
|
+
}, "identityCreationRequestCreatedResponse" | "magicLinkExpiration">, any, any, any>> & {
|
|
11
14
|
propsDefinition: import("vue-tsx-support").PropsForOutside<{
|
|
12
15
|
identityCreationRequestCreatedResponse: IdentityCreationRequestCreatedResponse;
|
|
13
|
-
|
|
16
|
+
magicLinkExpiration: number;
|
|
17
|
+
}, "identityCreationRequestCreatedResponse" | "magicLinkExpiration">;
|
|
14
18
|
});
|
|
15
19
|
export default IdentityCreationRequestConfirmEmailView;
|
|
@@ -8,7 +8,7 @@ export declare module SignInLocalization {
|
|
|
8
8
|
Login: string;
|
|
9
9
|
SendMagicLink: string;
|
|
10
10
|
MagicLinkIsValidMessage: string;
|
|
11
|
-
|
|
11
|
+
MagicLinkValidTimeInMinutesMessage: string;
|
|
12
12
|
MagicLinkValidPeriodMessage: string;
|
|
13
13
|
MagicLinkValidUnit: string;
|
|
14
14
|
Password: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "7.8.
|
|
4
|
+
"version": "7.8.48-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.8.
|
|
23
|
+
"@omnia/fx-models": "7.8.48-preview",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|