@skedulo/mex-types 1.33.1 → 1.34.0
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.
|
@@ -196,6 +196,9 @@ export interface TagModel {
|
|
|
196
196
|
items: TagItemModel[];
|
|
197
197
|
}
|
|
198
198
|
export interface TagItemModel {
|
|
199
|
+
/**
|
|
200
|
+
* @values: 'success' | 'primary' | 'danger' | 'warning' | 'focus' | 'default' | 'success_alt' | 'primary_alt' | 'danger_alt' | 'warning_alt' | 'focus_alt' | 'default_alt'
|
|
201
|
+
*/
|
|
199
202
|
themeValueExpression: ValueExpressionType;
|
|
200
203
|
text: LocalizedKey;
|
|
201
204
|
}
|
|
@@ -441,9 +444,9 @@ export interface BasePageHeaderModel {
|
|
|
441
444
|
title?: LocalizedKey;
|
|
442
445
|
description?: LocalizedKey;
|
|
443
446
|
/**
|
|
444
|
-
* @version: 1.10
|
|
447
|
+
* @version: 1.13.10
|
|
445
448
|
*/
|
|
446
|
-
|
|
449
|
+
messageBox?: MessageBoxModel;
|
|
447
450
|
}
|
|
448
451
|
export interface SublistOfFlatPageComponentModel {
|
|
449
452
|
/**
|
|
@@ -492,13 +495,13 @@ export interface FlatPageHeaderModel extends BasePageHeaderModel {
|
|
|
492
495
|
tags?: TagModel;
|
|
493
496
|
}
|
|
494
497
|
/**
|
|
495
|
-
* @version: 1.10
|
|
498
|
+
* @version: 1.13.10
|
|
496
499
|
*/
|
|
497
|
-
export interface
|
|
500
|
+
export interface MessageBoxModel {
|
|
498
501
|
text: LocalizedKey;
|
|
499
502
|
showIfExpression?: ValueExpressionType;
|
|
500
503
|
/**
|
|
501
|
-
* @values: '
|
|
504
|
+
* @values: 'success' | 'primary' | 'danger' | 'warning'
|
|
502
505
|
*/
|
|
503
506
|
theme: ValueExpressionType;
|
|
504
507
|
}
|