@omnia/fx-models 8.0.376-dev → 8.0.378-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/Tenant.d.ts
CHANGED
@@ -42,7 +42,11 @@ export declare class TenantInfoSettings extends TenantProperty {
|
|
42
42
|
constructor();
|
43
43
|
}
|
44
44
|
export declare class TenantAuthenticationSettings extends TenantProperty {
|
45
|
+
static DefaultOmniaTokenExpiredHours: number;
|
46
|
+
static MinOmniaTokenExpiredHours: number;
|
47
|
+
static MaxOmniaTokenExpiredHours: number;
|
45
48
|
enableITPCompatibility: boolean;
|
49
|
+
omniaTokenExpiredHours: number;
|
46
50
|
constructor();
|
47
51
|
}
|
48
52
|
export declare class TenantTypographyFonts extends TenantProperty {
|
package/Tenant.js
CHANGED
@@ -48,8 +48,12 @@ class TenantInfoSettings extends TenantProperty {
|
|
48
48
|
}
|
49
49
|
exports.TenantInfoSettings = TenantInfoSettings;
|
50
50
|
class TenantAuthenticationSettings extends TenantProperty {
|
51
|
+
static { this.DefaultOmniaTokenExpiredHours = 24; }
|
52
|
+
static { this.MinOmniaTokenExpiredHours = 1; }
|
53
|
+
static { this.MaxOmniaTokenExpiredHours = 96; }
|
51
54
|
constructor() {
|
52
55
|
super(ManifestIds_1.OmniaService.Id, "tenantauthentication");
|
56
|
+
this.omniaTokenExpiredHours = TenantAuthenticationSettings.DefaultOmniaTokenExpiredHours;
|
53
57
|
}
|
54
58
|
}
|
55
59
|
exports.TenantAuthenticationSettings = TenantAuthenticationSettings;
|
@@ -131,7 +131,7 @@ export declare const ORatioTypeDefinitions: readonly ["default", "landscape"];
|
|
131
131
|
export type ORatioTypes = typeof ORatioTypeDefinitions[number];
|
132
132
|
export declare const ORatioTypesName = "ORatioTypes";
|
133
133
|
/** List */
|
134
|
-
export declare const OListItemVariantDefinitions: readonly ["default", "delete", "navigation", "content", "option", "remove"];
|
134
|
+
export declare const OListItemVariantDefinitions: readonly ["default", "delete", "navigation", "content", "option", "remove", "settings"];
|
135
135
|
export type OListItemVariants = typeof OListItemVariantDefinitions[number];
|
136
136
|
export declare const OListItemVariantsName = "OListItemVariants";
|
137
137
|
export declare const OListTypeDefinitions: readonly ["default", "navigation", "options"];
|
@@ -89,7 +89,7 @@ exports.OIconVariantsName = "OIconVariants";
|
|
89
89
|
exports.ORatioTypeDefinitions = ["default", "landscape"];
|
90
90
|
exports.ORatioTypesName = "ORatioTypes";
|
91
91
|
/** List */
|
92
|
-
exports.OListItemVariantDefinitions = ["default", "delete", "navigation", "content", "option", "remove"];
|
92
|
+
exports.OListItemVariantDefinitions = ["default", "delete", "navigation", "content", "option", "remove", "settings"];
|
93
93
|
exports.OListItemVariantsName = "OListItemVariants";
|
94
94
|
exports.OListTypeDefinitions = ["default", "navigation", "options"];
|
95
95
|
exports.OListTypesName = "OListTypes";
|
@@ -1,4 +1,3 @@
|
|
1
|
-
import { Spacing } from "../Exposes";
|
2
1
|
export interface SlidePanelSettings {
|
3
2
|
navigation?: boolean;
|
4
3
|
pagination?: boolean;
|
@@ -8,5 +7,6 @@ export interface SlidePanelSettings {
|
|
8
7
|
delay?: number;
|
9
8
|
speed?: number;
|
10
9
|
slidesPerView?: number;
|
11
|
-
slideSpacing?:
|
10
|
+
slideSpacing?: number;
|
11
|
+
scrollbar?: boolean;
|
12
12
|
}
|