@omnia/fx-models 8.0.65-dev → 8.0.66-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/Constants.d.ts +2 -0
- package/Constants.js +3 -1
- package/Journey.d.ts +2 -6
- package/Layout.d.ts +2 -1
- package/Layout.js +1 -0
- package/package.json +1 -1
package/Constants.d.ts
CHANGED
package/Constants.js
CHANGED
@@ -189,7 +189,9 @@ exports.Constants = {
|
|
189
189
|
microsoftGraphUserProfile: new models_1.Guid("06922a46-7ff9-4b8f-8631-5431c7d789fe"),
|
190
190
|
profileCompleteness: new models_1.Guid("e7bfde1a-119b-4f60-98e4-0c4f56e007e6"),
|
191
191
|
brokenLinkDetection: new models_1.Guid("d1b958e2-8023-4324-a538-157b8f2c57b3"),
|
192
|
-
legacyUserProfileCard: new models_1.Guid("01586ffc-5987-40d2-bf06-f97ab955a965")
|
192
|
+
legacyUserProfileCard: new models_1.Guid("01586ffc-5987-40d2-bf06-f97ab955a965"),
|
193
|
+
legacyAppPermissions: new models_1.Guid("36c6fe6a-d79e-4f87-9349-cff9d3e1ab71"),
|
194
|
+
appOnlyReadAccessToSharePointTermstore: new models_1.Guid("8095f802-38f0-426c-8d81-22cb22a2a019")
|
193
195
|
},
|
194
196
|
app: {
|
195
197
|
tableName: "AppInstances",
|
package/Journey.d.ts
CHANGED
@@ -5,17 +5,13 @@ export interface JourneyMenuItem {
|
|
5
5
|
icon: IIcon;
|
6
6
|
element?: VNodeTypes | GuidValue;
|
7
7
|
title: string;
|
8
|
+
value?: boolean;
|
9
|
+
customText?: string;
|
8
10
|
}
|
9
11
|
export interface JourneySwitchMenuItem extends JourneyMenuItem {
|
10
12
|
type: "switch";
|
11
|
-
value: boolean;
|
12
13
|
onChange: (value: any) => void;
|
13
14
|
}
|
14
|
-
export interface JourneyValueMenuItem extends JourneyMenuItem {
|
15
|
-
type: "value";
|
16
|
-
value: boolean;
|
17
|
-
customText?: string;
|
18
|
-
}
|
19
15
|
export interface Blade {
|
20
16
|
id: string;
|
21
17
|
content: () => VNode;
|
package/Layout.d.ts
CHANGED
@@ -114,7 +114,8 @@ export declare enum SectionTypes {
|
|
114
114
|
Tab = 2,
|
115
115
|
Accordion = 3,
|
116
116
|
Stepper = 4,
|
117
|
-
PlaceHolder = 5
|
117
|
+
PlaceHolder = 5,
|
118
|
+
Slider = 6
|
118
119
|
}
|
119
120
|
export interface Section<T extends SectionSettings = SectionSettings> extends LayoutItem {
|
120
121
|
settings: T;
|
package/Layout.js
CHANGED
@@ -8,6 +8,7 @@ var SectionTypes;
|
|
8
8
|
SectionTypes[SectionTypes["Accordion"] = 3] = "Accordion";
|
9
9
|
SectionTypes[SectionTypes["Stepper"] = 4] = "Stepper";
|
10
10
|
SectionTypes[SectionTypes["PlaceHolder"] = 5] = "PlaceHolder";
|
11
|
+
SectionTypes[SectionTypes["Slider"] = 6] = "Slider";
|
11
12
|
})(SectionTypes || (exports.SectionTypes = SectionTypes = {}));
|
12
13
|
var JsonNullValueHandling;
|
13
14
|
(function (JsonNullValueHandling) {
|