@omnia/fx-models 8.0.185-dev → 8.0.186-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/Contexts.d.ts +3 -2
- package/oxide/OxideTypeDefinitions.d.ts +1 -1
- package/package.json +1 -1
package/Contexts.d.ts
CHANGED
@@ -83,9 +83,10 @@ export interface ITokenBasedRouteContext<T1 extends TokenBasedRoute, T2 extends
|
|
83
83
|
readonly route: T1;
|
84
84
|
readonly stateData: T2;
|
85
85
|
}
|
86
|
-
export interface
|
86
|
+
export interface JourneyBladeRoute {
|
87
87
|
[name: string]: string | number | boolean | GuidValue;
|
88
|
-
}
|
88
|
+
}
|
89
|
+
export interface JourneyBladeRouter<T extends JourneyBladeRoute = {}> {
|
89
90
|
id: GuidValue;
|
90
91
|
route: T;
|
91
92
|
}
|
@@ -165,7 +165,7 @@ export declare const OSkeletonLoaderName = "OSkeletonLoaderTypes";
|
|
165
165
|
export type OSkeletonLoaderTypesCombination = `${OSkeletonLoaderTypes}` | `${OSkeletonLoaderTypes}, ${OSkeletonLoaderTypes}` | `${OSkeletonLoaderTypes}, ${OSkeletonLoaderTypes}, ${OSkeletonLoaderTypes}`;
|
166
166
|
/** Tabs */
|
167
167
|
export declare const OScrollOffsetTypeDefinitions: readonly ["dialog", "drawer"];
|
168
|
-
export type OScrollOffsetTypes = "dialog" | "drawer" | string;
|
168
|
+
export type OScrollOffsetTypes = "dialog" | "drawer" | "settings" | string;
|
169
169
|
export declare const OScrollOffsetTypesName = "OScrollOffsetTypes";
|
170
170
|
export declare const OTabVariantDefinitions: readonly ["default", "navigation", "settings", "header", "toolbar"];
|
171
171
|
export type OTabVariants = typeof OTabVariantDefinitions[number];
|