@omnia/fx 7.7.86-preview → 7.7.88-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.
@@ -5,4 +5,5 @@ export declare class DisplayRules {
5
5
  static IsPreviewMode(): boolean;
6
6
  static IsFeaturePreviewMode(): boolean;
7
7
  static isAdvancedModeActivated(): boolean;
8
+ static IsNotFoundMode(path: string): boolean;
8
9
  }
@@ -1,4 +1,4 @@
1
- import { ResolvedUserIdentity, UserIdentity, UserIdentityAddRequest, PropertyValueBinding, PropertyDefinition, Guid, UserManagementQuery, ArchiveIdentityManagementQuery, TemplateFileSettings, TemplateFileData, BulkImportFileValidation, BulkImportUsersTasks, GuidValue, UserAuthenticationInformation, UserAddWithAuthInfoReponse, ScopeTypes, Identity } from "../../models";
1
+ import { ResolvedUserIdentity, UserIdentity, UserIdentityAddRequest, PropertyValueBinding, PropertyDefinition, Guid, UserManagementQuery, ArchiveIdentityManagementQuery, TemplateFileSettings, TemplateFileData, BulkImportFileValidation, BulkImportUsersTasks, GuidValue, UserAuthenticationInformation, UserAddWithAuthInfoReponse, ScopeTypes, Identity, ImagePropertyDefinition } from "../../models";
2
2
  export declare class UserService {
3
3
  private httpClient;
4
4
  getAll: (query: UserManagementQuery) => Promise<{
@@ -23,4 +23,5 @@ export declare class UserService {
23
23
  getUserImportTaskDetails: (id: GuidValue) => Promise<BulkImportUsersTasks>;
24
24
  ensureAzureAdUserByUsername(username: string): Promise<UserIdentity>;
25
25
  changeScope: (users: Array<Identity>, scopeType: ScopeTypes, scope: string) => Promise<void>;
26
+ resyncImage: (identity: UserIdentity) => Promise<PropertyValueBinding<ImagePropertyDefinition>>;
26
27
  }
@@ -1162,6 +1162,7 @@ export interface OmniaUxLocalization {
1162
1162
  RemoveStep: string;
1163
1163
  RemoveStepConfirmation: string;
1164
1164
  MoveStep: string;
1165
+ Paging: string;
1165
1166
  };
1166
1167
  LayoutSettings: {
1167
1168
  Title: string;
@@ -1,3 +1,5 @@
1
1
  export declare const StepperSectionDesignerStyles: {
2
2
  labelLink: string;
3
+ horizontalStep: string;
4
+ separator: string;
3
5
  };
@@ -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
  }
@@ -18,4 +18,5 @@ export interface IPropertyPicker {
18
18
  selectablePropertyConverters?: Array<GuidValue>;
19
19
  hideLabelIfSingleSource?: boolean;
20
20
  hideConverter?: boolean;
21
+ keepSelectionAfterAdd?: boolean;
21
22
  }
@@ -40,7 +40,7 @@ export declare module SignInLocalization {
40
40
  Email: string;
41
41
  Send: string;
42
42
  Retry: string;
43
- SendResetPasswordMessage: string;
43
+ SendResetPasswordMessageTooltip: string;
44
44
  SentResetPasswordMessage: string;
45
45
  SendResetPasswordError: string;
46
46
  RetryResetPasswordWarning: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "7.7.86-preview",
4
+ "version": "7.7.88-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.7.86-preview",
23
+ "@omnia/fx-models": "7.7.88-preview",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",