@omnia/fx-models 8.0.383-dev → 8.0.384-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/AzureAdEnvironment.d.ts +9 -0
- package/AzureAdEnvironment.js +2 -0
- package/Exposes.d.ts +1 -0
- package/Exposes.js +1 -0
- package/Layout.d.ts +3 -1
- package/internal-do-not-import-from-here/shared/models/theme/Blueprints.d.ts +3 -2
- package/internal-do-not-import-from-here/shared/models/theme/Blueprints.js +4 -1
- package/package.json +1 -1
@@ -0,0 +1,9 @@
|
|
1
|
+
import { guid } from "../shared";
|
2
|
+
import { AzurePermissionResource } from "./AzurePermissionResource";
|
3
|
+
export interface AzureAdEnvironment {
|
4
|
+
tenantId: guid;
|
5
|
+
appId: guid;
|
6
|
+
requiredPermissions: AzurePermissionResource[];
|
7
|
+
adminConsentUrl: string;
|
8
|
+
appClientSecretExpires: Date;
|
9
|
+
}
|
package/Exposes.d.ts
CHANGED
@@ -107,6 +107,7 @@ export * from "./user-profile";
|
|
107
107
|
export * from "./Refiner";
|
108
108
|
export * from "./IUserManagementApi";
|
109
109
|
export * from "./StringWithOptions";
|
110
|
+
export * from "./AzureAdEnvironment";
|
110
111
|
export * from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
111
112
|
export * from "@omnia/fx-models/internal-do-not-import-from-here/velcron/core/models";
|
112
113
|
export * from "./Shared";
|
package/Exposes.js
CHANGED
@@ -113,6 +113,7 @@ tslib_1.__exportStar(require("./user-profile"), exports);
|
|
113
113
|
tslib_1.__exportStar(require("./Refiner"), exports);
|
114
114
|
tslib_1.__exportStar(require("./IUserManagementApi"), exports);
|
115
115
|
tslib_1.__exportStar(require("./StringWithOptions"), exports);
|
116
|
+
tslib_1.__exportStar(require("./AzureAdEnvironment"), exports);
|
116
117
|
//************************************************************************************ */
|
117
118
|
// End of file exports
|
118
119
|
//************************************************************************************ */
|
package/Layout.d.ts
CHANGED
@@ -4,6 +4,7 @@ import { TargetingFilterProperty } from "../sp";
|
|
4
4
|
import { ShapeDividerSettings } from "./ShapeDividerSettingsModel";
|
5
5
|
import { ClipboardLayoutItem } from "./Clipboard";
|
6
6
|
import { FilePickerStorageProviderContext } from "./FilePicker";
|
7
|
+
import { ComputedRef } from "vue";
|
7
8
|
export interface Layout {
|
8
9
|
definition: LayoutDefinition;
|
9
10
|
blockSettings: BlockSettings;
|
@@ -531,6 +532,7 @@ export interface LayoutRendererCanvasApi {
|
|
531
532
|
}
|
532
533
|
export interface Breakpoint {
|
533
534
|
xs: boolean;
|
535
|
+
mobile: ComputedRef<boolean>;
|
534
536
|
sm: boolean;
|
535
537
|
smAndDown: boolean;
|
536
538
|
smAndUp: boolean;
|
@@ -541,7 +543,7 @@ export interface Breakpoint {
|
|
541
543
|
lgAndDown: boolean;
|
542
544
|
lgAndUp: boolean;
|
543
545
|
xl: boolean;
|
544
|
-
name: ("xs" | "sm" | "md" | "lg" | "xl");
|
546
|
+
name: ("xs" | "sm" | "md" | "lg" | "xl" | "xxl");
|
545
547
|
width: number;
|
546
548
|
height: number;
|
547
549
|
thresholds: {
|
@@ -82,10 +82,11 @@ export interface IconBlueprints extends Blueprints {
|
|
82
82
|
l?: IconBlueprint;
|
83
83
|
xl?: IconBlueprint;
|
84
84
|
}
|
85
|
-
export
|
85
|
+
export declare const ButtonVariantsArray: string[];
|
86
|
+
export type ButtonVariant = typeof ButtonVariantsArray[number];
|
86
87
|
export type ButtonBlueprintType = "text" | "icon";
|
87
88
|
export interface ButtonBlueprintVariant {
|
88
|
-
type:
|
89
|
+
type: ButtonVariant;
|
89
90
|
category: ButtonBlueprintType;
|
90
91
|
}
|
91
92
|
export interface ButtonBlueprint extends Blueprint {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.VelcronBlueprintDefintionTypes = exports.WebBlueprintItemDefintionTypes = exports.BlueprintVariants = void 0;
|
3
|
+
exports.ButtonVariantsArray = exports.VelcronBlueprintDefintionTypes = exports.WebBlueprintItemDefintionTypes = exports.BlueprintVariants = void 0;
|
4
4
|
exports.BlueprintVariants = [
|
5
5
|
"variant1",
|
6
6
|
"variant2",
|
@@ -20,3 +20,6 @@ var VelcronBlueprintDefintionTypes;
|
|
20
20
|
(function (VelcronBlueprintDefintionTypes) {
|
21
21
|
VelcronBlueprintDefintionTypes["button"] = "button";
|
22
22
|
})(VelcronBlueprintDefintionTypes || (exports.VelcronBlueprintDefintionTypes = VelcronBlueprintDefintionTypes = {}));
|
23
|
+
exports.ButtonVariantsArray = [
|
24
|
+
"primary", "basic", "accent1", "warn", "link", "close", "variant1", "variant2", "variant3", "variant4", "variant5", "variant6", "variant7", "variant8"
|
25
|
+
];
|