@omnia/management-system 7.5.7-preview → 7.5.8-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.
@@ -241,11 +241,16 @@ export declare module Enums {
|
|
241
241
|
Heading6 = "f0b42e88-47e3-4b69-8d11-393683214810",
|
242
242
|
Custom = "00000000-0000-0000-0000-000000000000"
|
243
243
|
}
|
244
|
+
/**
|
245
|
+
* Only used in process rollup
|
246
|
+
*/
|
244
247
|
enum TaxonomyFilterType {
|
245
248
|
FixedValue = 1,
|
246
249
|
CurrentPage = 2,
|
247
250
|
User = 3,
|
248
|
-
CurrentProcess = 4
|
251
|
+
CurrentProcess = 4,
|
252
|
+
CurrentUser = 5,
|
253
|
+
SelectedUser = 6
|
249
254
|
}
|
250
255
|
enum OrderDirection {
|
251
256
|
Ascending = 1,
|
@@ -283,12 +283,17 @@ var Enums;
|
|
283
283
|
BuildInProcessTitleTextStyleFormatting["Heading6"] = "f0b42e88-47e3-4b69-8d11-393683214810";
|
284
284
|
BuildInProcessTitleTextStyleFormatting["Custom"] = "00000000-0000-0000-0000-000000000000";
|
285
285
|
})(BuildInProcessTitleTextStyleFormatting = ProcessViewEnums.BuildInProcessTitleTextStyleFormatting || (ProcessViewEnums.BuildInProcessTitleTextStyleFormatting = {}));
|
286
|
+
/**
|
287
|
+
* Only used in process rollup
|
288
|
+
*/
|
286
289
|
let TaxonomyFilterType;
|
287
290
|
(function (TaxonomyFilterType) {
|
288
291
|
TaxonomyFilterType[TaxonomyFilterType["FixedValue"] = 1] = "FixedValue";
|
289
292
|
TaxonomyFilterType[TaxonomyFilterType["CurrentPage"] = 2] = "CurrentPage";
|
290
293
|
TaxonomyFilterType[TaxonomyFilterType["User"] = 3] = "User";
|
291
294
|
TaxonomyFilterType[TaxonomyFilterType["CurrentProcess"] = 4] = "CurrentProcess";
|
295
|
+
TaxonomyFilterType[TaxonomyFilterType["CurrentUser"] = 5] = "CurrentUser";
|
296
|
+
TaxonomyFilterType[TaxonomyFilterType["SelectedUser"] = 6] = "SelectedUser";
|
292
297
|
})(TaxonomyFilterType = ProcessViewEnums.TaxonomyFilterType || (ProcessViewEnums.TaxonomyFilterType = {}));
|
293
298
|
let OrderDirection;
|
294
299
|
(function (OrderDirection) {
|