@skedulo/mex-types 1.33.0 → 1.33.1
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.
|
@@ -297,7 +297,7 @@ export interface ListPageAdvancedFilterModel extends WithAdvancedFilterUI {
|
|
|
297
297
|
};
|
|
298
298
|
}
|
|
299
299
|
export type ListPageAdvancedFilterUI = {
|
|
300
|
-
items: BaseFlatPageViewComponentModel[];
|
|
300
|
+
items: (BaseFlatPageViewComponentModel | DynamicContent)[];
|
|
301
301
|
description?: LocalizedKey;
|
|
302
302
|
submitText?: LocalizedKey;
|
|
303
303
|
};
|
|
@@ -371,7 +371,7 @@ export interface FlatPageComponentModel extends BasePageComponentModel {
|
|
|
371
371
|
* @hidden true
|
|
372
372
|
* @deprecated Use items in { FlatPageComponentModel.singleDef.flatComponents }
|
|
373
373
|
*/
|
|
374
|
-
items?: BaseFlatPageViewComponentModel[];
|
|
374
|
+
items?: (BaseFlatPageViewComponentModel | DynamicContent)[];
|
|
375
375
|
header?: FlatPageHeaderModel;
|
|
376
376
|
/**
|
|
377
377
|
* @label Description
|
|
@@ -429,7 +429,7 @@ export type FlatPageStepModel = {
|
|
|
429
429
|
stepRecognizedOnInitCondition?: DataExpressionType;
|
|
430
430
|
};
|
|
431
431
|
export type FlatPageStepUIModel = {
|
|
432
|
-
items: BaseFlatPageViewComponentModel[];
|
|
432
|
+
items: (BaseFlatPageViewComponentModel | DynamicContent)[];
|
|
433
433
|
validator?: ValidatorDefinitionModel;
|
|
434
434
|
};
|
|
435
435
|
export type FlatPageStepRoutingLogic = {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseComponentModel } from '../common/BaseComponentModel';
|
|
2
|
-
import { ButtonGroupItemComponentModel, DataExpressionType, FunctionExpressionType, GroupByFeatureModel, IconName, ListPageAddNewDefaultDataType, LocalizedKey, OneLevelBindingObject, OrderByModel, RoutingType, TimezoneType, ValueExpressionType } from '../common/CommonTypes';
|
|
2
|
+
import { ButtonGroupItemComponentModel, DataExpressionType, DynamicContent, FunctionExpressionType, GroupByFeatureModel, IconName, ListPageAddNewDefaultDataType, LocalizedKey, OneLevelBindingObject, OrderByModel, RoutingType, TimezoneType, ValueExpressionType } from '../common/CommonTypes';
|
|
3
3
|
import { SelectPageOnlineSource, SelectPageSearchBarConfig } from './SearchPage';
|
|
4
4
|
import { ValidatorDefinitionModel } from '../validator/ValidatorModel';
|
|
5
5
|
export interface BaseFlatPageViewComponentModel extends BaseComponentModel {
|
|
@@ -379,7 +379,7 @@ export interface SectionViewComponentModel extends BaseFlatPageViewComponentMode
|
|
|
379
379
|
/**
|
|
380
380
|
* @label items
|
|
381
381
|
*/
|
|
382
|
-
items: BaseFlatPageViewComponentModel[];
|
|
382
|
+
items: (BaseFlatPageViewComponentModel | DynamicContent)[];
|
|
383
383
|
}
|
|
384
384
|
/**
|
|
385
385
|
* @area Components
|