@omnia/fx-models 7.7.85-preview → 7.7.86-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/Enums.d.ts
CHANGED
|
@@ -528,8 +528,7 @@ export declare enum StaticEndpoint {
|
|
|
528
528
|
MagicLinkSuccess = "/api/magiclink/success",
|
|
529
529
|
MagicLinkFailure = "/api/magiclink/failure",
|
|
530
530
|
MagicLink = "/api/magiclink",
|
|
531
|
-
SharepointServerLogin = "/spsignin"
|
|
532
|
-
NotFound = "/_system/404"
|
|
531
|
+
SharepointServerLogin = "/spsignin"
|
|
533
532
|
}
|
|
534
533
|
export declare enum QueueMessageStatus {
|
|
535
534
|
Unassigned = 0,
|
package/Enums.js
CHANGED
|
@@ -440,7 +440,6 @@ var StaticEndpoint;
|
|
|
440
440
|
StaticEndpoint["MagicLink"] = "/api/magiclink";
|
|
441
441
|
// onprem only
|
|
442
442
|
StaticEndpoint["SharepointServerLogin"] = "/spsignin";
|
|
443
|
-
StaticEndpoint["NotFound"] = "/_system/404";
|
|
444
443
|
})(StaticEndpoint = exports.StaticEndpoint || (exports.StaticEndpoint = {}));
|
|
445
444
|
var QueueMessageStatus;
|
|
446
445
|
(function (QueueMessageStatus) {
|
package/Layout.d.ts
CHANGED
|
@@ -187,7 +187,6 @@ export interface StepperSectionSettings extends SectionSettings {
|
|
|
187
187
|
nonLinear: boolean;
|
|
188
188
|
labelSettings: StepperLabelSettings;
|
|
189
189
|
scrollToTopOnSelectedStep: boolean;
|
|
190
|
-
paging?: boolean;
|
|
191
190
|
}
|
|
192
191
|
export interface StepperLabelSettings {
|
|
193
192
|
none: boolean;
|
|
@@ -16,6 +16,7 @@ export interface UserRequestFormDisplaySetting {
|
|
|
16
16
|
userTypeId: GuidValue;
|
|
17
17
|
userTypeDisplayName: MultilingualString;
|
|
18
18
|
propertyBindings: Array<PropertyBindingDisplay>;
|
|
19
|
+
magicLinkExpiration: number;
|
|
19
20
|
}
|
|
20
21
|
export declare enum ConfirmEmailStatus {
|
|
21
22
|
Incomplete = 0,
|
package/package.json
CHANGED
|
@@ -19,12 +19,10 @@ class SharePointTermSetPropertyValue extends PropertyValue_1.PropertyValue {
|
|
|
19
19
|
return false;
|
|
20
20
|
}
|
|
21
21
|
appendValue(other) {
|
|
22
|
-
|
|
23
|
-
other?.termIds?.forEach(termId =>
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
termIds.push(termId);
|
|
27
|
-
}
|
|
22
|
+
let termIds = this?.termIds || [];
|
|
23
|
+
other?.termIds?.forEach(termId => termIds.push(termId));
|
|
24
|
+
termIds = termIds.filter((item, index, self) => {
|
|
25
|
+
return self.indexOf(item) === index;
|
|
28
26
|
});
|
|
29
27
|
return new SharePointTermSetPropertyValue(termIds);
|
|
30
28
|
}
|